Creates an new instance of Point3dTree.
            
 
    Namespace: 
   Gile.AutoCAD.R20.Geometry
    Assembly:
   GeometryExtensionsR20 (in GeometryExtensionsR20.dll) Version: 2.2.0.0 (2.2.0.0)
 Syntax
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
*)
-> Point3dTreeParameters
- 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).
 Exceptions
Exceptions| Exception | Condition | 
|---|
| ArgumentNullException | ArgumentException is thrown if points is null. | 
 See Also
See Also