Click or drag to resize
PbGrid2DSetGeometry Method (Int32, Int32, Single, Single, Single)

Defines a 3D surface mesh geometry.

Namespace: OIV.MeshViz.Data
Assembly: OIV.MeshViz (in OIV.MeshViz.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax
public void SetGeometry(
	int num_x,
	int num_y,
	float[] x,
	float[] y,
	float[] z
)

Parameters

num_x
Type: SystemInt32
num_y
Type: SystemInt32
x
Type: SystemSingle
y
Type: SystemSingle
z
Type: SystemSingle
Remarks

The size of the x array depends on the derived class that calls this method. It is either num_x or num_x * num_y. Idem for y array. The size of z array is always num_x * num_y.

See Also