Method Pow
Pow(float)
Composes a function that returns this function's field result raised to a power across its extent.
Declaration
public ContinuousFieldFunction Pow(float power)
Parameters
| Type | Name | Description |
|---|---|---|
| float | power | The power to raise by. |
Returns
| Type | Description |
|---|---|
| ContinuousFieldFunction | A function that returns this function's field result raised to a power across its extent. |
Remarks
The function result has no data where this function's field result has no data.
The function result has no data where this function's field result is less than or equal to 0.
The function result extent equals that of this function's field result.
Applies to
Platforms and versions
| Target | Versions |
|---|---|
| .NET | 300.1 |
| .NET Windows | 300.1 |
| .NET Android | 300.1 |
| .NET iOS | 300.1 |
Pow(ContinuousFieldFunction)
Composes a function that returns this function's field result raised to powers drawn from another field, point-wise, across their spatial intersection.
Declaration
public ContinuousFieldFunction Pow(ContinuousFieldFunction otherField)
Parameters
| Type | Name | Description |
|---|---|---|
| ContinuousFieldFunction | otherField | The continuous field function to draw powers from. |
Returns
| Type | Description |
|---|---|
| ContinuousFieldFunction | A function that returns this function's field result raised to powers drawn from another field, point-wise, across their spatial intersection. |
Remarks
The function result has no data where either of the fields have no data.
The function result has no data where this function's field result is less than or equal to 0.
The function result extent is the intersection of the extents of the given fields.
Applies to
Platforms and versions
| Target | Versions |
|---|---|
| .NET | 300.1 |
| .NET Windows | 300.1 |
| .NET Android | 300.1 |
| .NET iOS | 300.1 |