Click or drag to resize

Triangle3d Structure

Describes a triangle within the 3D space. It can be seen as a structure of three Point3d.

Namespace:  Gile.AutoCAD.Geometry
Assembly:  GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
public struct Triangle3d : IFormattable

The Triangle3d type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyArea
Gets the area of the triangle.
Public propertyCentroid
Gets the centroid.
Public propertyCircumscribedCircle
Gets the circumscribed circle.
Public propertyElevation
Gets the elevation of the plane the triangle lies on.
Public propertyGreatestSlope
Gets the unit vector of the greatest slope of the plane the triangle lies on.
Public propertyHorizontal
Gets the unit vector of the horizontal of the plane the triangle lies on.
Public propertyInscribedCircle
Gets the inscribed circle.
Public propertyIsHorizontal
Get a value indicating if the plane the triangle lies on is horizontal.
Public propertyItem
Gets the point at specified index.
Public propertyNormal
Gets the Normal of the plane the triangle lies on.
Public propertySlopePerCent
Gets the slope of the triangle expressed in percent.
Public propertySlopeUCS
Gets the coordinate system of the triangle (origin = Centroid, X axis = Horizontal, Z axis = Normal).
Top
Methods
  NameDescription
Public methodConvert2d
Converts the current instance into a Triangle2d.
Public methodEquals
Evaluates if the object is equal to the current instance of Triangle3d.
(Overrides ValueTypeEquals(Object).)
Public methodFlatten
Projects the current instance onto the XY plane.
Public methodGetAngleAt
Gets the angle between two sides at the specified index.
Public methodGetBoundedPlane
Gets the bounded plane defined by the current triangle.
Public methodGetHashCode
Serves as the Triangle3d hash function.
(Overrides ValueTypeGetHashCode.)
Public methodGetPlane
Gets the unbounded plane defined by the current triangle.
Public methodGetSegmentAt
Gets the LineSegement3d at specified index.
Public methodGetType (Inherited from Object.)
Public methodInverse
Reverse the order of points without changing the origin.
Public methodIsEqualTo(Triangle3d)
Evaluates if the current instance is equal to another Triangle2d using Tolerance.Global.
Public methodIsEqualTo(Triangle3d, Tolerance)
Evaluates if the current instance is equal to another Triangle3d using the specified Tolerance.
Public methodIsPointInside
Gets a value indicating if the the Point2d is strictly inside the current triangle.
Public methodIsPointOn
Gets a value indicating if the the Point3d is on an segment of the current triangle.
Public methodToArray
Converts the triangle into a Point2d array.
Public methodToString
Returns a string representing the current instance of Triangle3d.
(Overrides ValueTypeToString.)
Public methodToString(String)
Returns a string representing the current instance of Triangle3d.
Public methodToString(String, IFormatProvider)
Returns a string representing the current instance of Triangle3d.
Public methodTransformby
Transforms the triangle using transformation matrix.
Top
See Also