 | CVOXWindowPLY Method |
Window a VOX to a PLY file and Z.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void WindowPLY(
CPLY pply,
int mask,
double min_z,
double max_z,
string output_vox,
int clip_dummies
)
public void WindowPLY(
CPLY pply,
int mask,
double min_z,
double max_z,
string output_vox,
int clip_dummies
)
Public Sub WindowPLY (
pply As CPLY,
mask As Integer,
min_z As Double,
max_z As Double,
output_vox As String,
clip_dummies As Integer
)
Public Sub WindowPLY (
pply As CPLY,
mask As Integer,
min_z As Double,
max_z As Double,
output_vox As String,
clip_dummies As Integer
)
public:
void WindowPLY(
CPLY^ pply,
int mask,
double min_z,
double max_z,
String^ output_vox,
int clip_dummies
)
public:
void WindowPLY(
CPLY^ pply,
int mask,
double min_z,
double max_z,
String^ output_vox,
int clip_dummies
)
member WindowPLY :
pply : CPLY *
mask : int *
min_z : float *
max_z : float *
output_vox : string *
clip_dummies : int -> unit
member WindowPLY :
pply : CPLY *
mask : int *
min_z : float *
max_z : float *
output_vox : string *
clip_dummies : int -> unit
Parameters
- pply
- Type: GeoEngine.Core.GXNetXCPLY
PLY object - mask
- Type: SystemInt32
Mask (0: inside PLY, 1: outside PLY) - min_z
- Type: SystemDouble
Minimum Z (optional, <define>rDUMMY</define> for no minimum) - max_z
- Type: SystemDouble
Maximum Z (optional, <define>rDUMMY</define> for no maximun) - output_vox
- Type: SystemString
Output voxel file name. - clip_dummies
- Type: SystemInt32
Clip extents to remove dummies (0: no (same size), 1: yes (smaller))
Remarks
The voxel is windowed horizontally to the input PLY file.
Optionally, it will be windowed to the input Z range as well.
The output can be clipped to the non-dummied cells.
See Also