 | CMVUPlotVoxelSurface3 Method |
Note: This API is now obsolete.
Extract an iso-surface from a voxel and plot it to a 2D or 3D view.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2025.1.0.25
Syntax[ObsoleteAttribute("Deprecated since unknown, ")]
public static void PlotVoxelSurface3(
CGXNETCore gxNetShared,
CMVIEW mview,
CVOX vox,
double value,
int col,
double line_thick,
double transparency,
string surface_name,
int create_closed_geosurface_around_voxel,
int enclose_cells_less_than_surface_value,
double exclude_objects_with_volume_less_than_this_value
)
[ObsoleteAttribute("Deprecated since unknown, ")]
public static void PlotVoxelSurface3(
CGXNETCore gxNetShared,
CMVIEW mview,
CVOX vox,
double value,
int col,
double line_thick,
double transparency,
string surface_name,
int create_closed_geosurface_around_voxel,
int enclose_cells_less_than_surface_value,
double exclude_objects_with_volume_less_than_this_value
)
<ObsoleteAttribute("Deprecated since unknown, ")>
Public Shared Sub PlotVoxelSurface3 (
gxNetShared As CGXNETCore,
mview As CMVIEW,
vox As CVOX,
value As Double,
col As Integer,
line_thick As Double,
transparency As Double,
surface_name As String,
create_closed_geosurface_around_voxel As Integer,
enclose_cells_less_than_surface_value As Integer,
exclude_objects_with_volume_less_than_this_value As Double
)
<ObsoleteAttribute("Deprecated since unknown, ")>
Public Shared Sub PlotVoxelSurface3 (
gxNetShared As CGXNETCore,
mview As CMVIEW,
vox As CVOX,
value As Double,
col As Integer,
line_thick As Double,
transparency As Double,
surface_name As String,
create_closed_geosurface_around_voxel As Integer,
enclose_cells_less_than_surface_value As Integer,
exclude_objects_with_volume_less_than_this_value As Double
)
public:
[ObsoleteAttribute(L"Deprecated since unknown, ")]
static void PlotVoxelSurface3(
CGXNETCore^ gxNetShared,
CMVIEW^ mview,
CVOX^ vox,
double value,
int col,
double line_thick,
double transparency,
String^ surface_name,
int create_closed_geosurface_around_voxel,
int enclose_cells_less_than_surface_value,
double exclude_objects_with_volume_less_than_this_value
)
public:
[ObsoleteAttribute(L"Deprecated since unknown, ")]
static void PlotVoxelSurface3(
CGXNETCore^ gxNetShared,
CMVIEW^ mview,
CVOX^ vox,
double value,
int col,
double line_thick,
double transparency,
String^ surface_name,
int create_closed_geosurface_around_voxel,
int enclose_cells_less_than_surface_value,
double exclude_objects_with_volume_less_than_this_value
)
[<ObsoleteAttribute("Deprecated since unknown, ")>]
static member PlotVoxelSurface3 :
gxNetShared : CGXNETCore *
mview : CMVIEW *
vox : CVOX *
value : float *
col : int *
line_thick : float *
transparency : float *
surface_name : string *
create_closed_geosurface_around_voxel : int *
enclose_cells_less_than_surface_value : int *
exclude_objects_with_volume_less_than_this_value : float -> unit
[<ObsoleteAttribute("Deprecated since unknown, ")>]
static member PlotVoxelSurface3 :
gxNetShared : CGXNETCore *
mview : CMVIEW *
vox : CVOX *
value : float *
col : int *
line_thick : float *
transparency : float *
surface_name : string *
create_closed_geosurface_around_voxel : int *
enclose_cells_less_than_surface_value : int *
exclude_objects_with_volume_less_than_this_value : float -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - mview
- Type: GeoEngine.Core.GXNetXCMVIEW
View - vox
- Type: GeoEngine.Core.GXNetXCVOX
Voxel model - value
- Type: SystemDouble
Iso-surface value - col
- Type: SystemInt32
Drawing color - line_thick
- Type: SystemDouble
Line thickness for line drawing, and 2D views. - transparency
- Type: SystemDouble
Transparency (0 - transparent, 1 - opaque). - surface_name
- Type: SystemString
Iso-surface name - create_closed_geosurface_around_voxel
- Type: SystemInt32
Create closed geosurface around voxel? - enclose_cells_less_than_surface_value
- Type: SystemInt32
Closed geosurface should enclose cells LESS than surface value? - exclude_objects_with_volume_less_than_this_value
- Type: SystemDouble
Exclude objects with volume less than this value
RemarksSame as PlotVoxelSurface2_MVU but with a couple more options.
See Also