ScalarField2D Delegate

The function used by the marching squares algorithm to evaluate the 2D scalar field.
Public Delegate Function ScalarField2D( _ 
ByVal x As Single, _ 
ByVal y As Single
) As Single
This language is not supported or no code example is available.
public delegate float ScalarField2D( 
float x
float y 
)
This language is not supported or no code example is available.

Parameters

x
float

X coordinate value

y
float

Y coordinate value

Return Value

float

The scalar field value.

.NET Framework

Supported in: 4.8

In this article

Definition