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