Creates an new instance of Point3dTree.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic Point3dTree(
IEnumerable<Point3d> points,
bool ignoreZ = false
)
Public Sub New (
points As IEnumerable(Of Point3d),
Optional ignoreZ As Boolean = false
)
public:
Point3dTree(
IEnumerable<Point3d>^ points,
bool ignoreZ = false
)
new :
points : IEnumerable<Point3d> *
?ignoreZ : bool
(* Defaults:
let _ignoreZ = defaultArg ignoreZ false
*)
-> Point3dTree
Parameters
- points
- Type: System.Collections.GenericIEnumerablePoint3d
The Point3d collection to fill the tree. - ignoreZ (Optional)
- Type: SystemBoolean
A value indicating if the Z coordinate of points is ignored
(as if all points were projected to the XY plane).
See Also