PbGrid2DSetGeometry Method (Int32, Int32, Single, Single, Single) |
Defines a 3D surface mesh geometry.
Namespace: OIV.MeshViz.DataAssembly: 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
)
Public Sub SetGeometry (
num_x As Integer,
num_y As Integer,
x As Single(),
y As Single(),
z As Single()
)
public:
void SetGeometry(
int num_x,
int num_y,
array<float>^ x,
array<float>^ y,
array<float>^ z
)
member SetGeometry :
num_x : int *
num_y : int *
x : float32[] *
y : float32[] *
z : float32[] -> unit
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