Triangle2d Constructor (Point2d, Vector2d, Vector2d) |
Creates a new instance of Triangle2d.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic Triangle2d(
Point2d org,
Vector2d v1,
Vector2d v2
)
Public Sub New (
org As Point2d,
v1 As Vector2d,
v2 As Vector2d
)
public:
Triangle2d(
Point2d org,
Vector2d v1,
Vector2d v2
)
new :
org : Point2d *
v1 : Vector2d *
v2 : Vector2d -> Triangle2d
Parameters
- org
- Type: Point2d
Origin of the Triangle2d (first point). - v1
- Type: Vector2d
Vector from origin to second point. - v2
- Type: Vector2d
Vector from origin to third point.
See Also