ScalarField3D Delegate

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

Parameters

x
float

X coordinate value

y
float

Y coordinate value

z
float

Z coordinate value

Return Value

float

The scalar field value.

.NET Framework

Supported in: 4.8

In this article

Definition