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