Triangle3d Constructor (Point3d) |
Creates a new instance of Triangle3d.
Namespace:
Gile.AutoCAD.R20.Geometry
Assembly:
GeometryExtensionsR20 (in GeometryExtensionsR20.dll) Version: 2.2.0.0 (2.2.0.0)
Syntaxpublic Triangle3d(
Point3d[] points
)
Public Sub New (
points As Point3d()
)
public:
Triangle3d(
array<Point3d>^ points
)
new :
points : Point3d[] -> Triangle3dParameters
- points
- Type: Point3d
Array of three Point3d.
Exceptions| Exception | Condition |
|---|
| ArgumentNullException | ArgumentException is thrown if points is null. |
| ArgumentOutOfRangeException | ArgumentOutOfRangeException is thrown if points length is different from 3. |
See Also