Operator operator -
operator -(ContinuousFieldFunction, float)
Composes a function that subtracts, point-wise, a value from this function's field result across its extent.
Declaration
public static ContinuousFieldFunction operator -(ContinuousFieldFunction f, float v)
Parameters
| Type | Name | Description |
|---|---|---|
| ContinuousFieldFunction | f | |
| float | v |
Returns
| Type | Description |
|---|---|
| ContinuousFieldFunction | A function that subtracts a value from this function's field result. |
Remarks
The result has no value where this field has no value.
The result extent equals that of this field.
Applies to
Platforms and versions
| Target | Versions |
|---|---|
| .NET | 300 |
| .NET Windows | 300 |
| .NET Android | 300 |
| .NET iOS | 300 |
operator -(ContinuousFieldFunction, ContinuousFieldFunction)
Composes a function that subtracts, point-wise, another field from this function's field result across their spatial intersection.
Declaration
public static ContinuousFieldFunction operator -(ContinuousFieldFunction a, ContinuousFieldFunction b)
Parameters
| Type | Name | Description |
|---|---|---|
| ContinuousFieldFunction | a | |
| ContinuousFieldFunction | b |
Returns
| Type | Description |
|---|---|
| ContinuousFieldFunction | A function that subtracts another field from this function's field result. |
Remarks
The result has no value where either of the given fields has no value.
The result extent is the intersection of the extents of the given fields.
The spatial reference of both fields must be equivalent.
Applies to
Platforms and versions
| Target | Versions |
|---|---|
| .NET | 300 |
| .NET Windows | 300 |
| .NET Android | 300 |
| .NET iOS | 300 |