SpatialFilterDefinition Constructor
|
Constructor for the SpatialFilterDefinition
class.
Namespace: Teigha.DatabaseServices.Filters
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public SpatialFilterDefinition(
Point2dCollection pts,
Vector3d normal,
double elevation,
double frontClip,
double backClip,
bool enabled
)
Public Sub New (
pts As Point2dCollection,
normal As Vector3d,
elevation As Double,
frontClip As Double,
backClip As Double,
enabled As Boolean
)
public:
SpatialFilterDefinition(
Point2dCollection^ pts,
Vector3d normal,
double elevation,
double frontClip,
double backClip,
bool enabled
)
new :
pts : Point2dCollection *
normal : Vector3d *
elevation : float *
frontClip : float *
backClip : float *
enabled : bool -> SpatialFilterDefinition
Parameters
- pts Point2dCollection
- [in] Collection of 2D points defining a 2D boundary definition.
If it contains only 2 points - these points are opposite corners of
a rectangle. If more than 2 points, a polygon is defined.
- normal Vector3d
- [in] Positive extrusion direction.
- elevation Double
- [in] Elevation that together with normal defines ECS in which
the boundary is defined.
- frontClip Double
- [in] Front clip distance.
- backClip Double
- [in] Back clip distance.
- enabled Boolean
- [in] Flag that indicates whether to make clipping effective, or
alternatively, be all of 3D space.
See Also