Rectangle3dCreateFromPolyline Method (IEnumerablePoint3d) |
Attempts to create a rectangle from a polyline. This method only works well for
polylines that already closely resemble rectangles. If the polyline contains
more than four vertices, the least significant ones will be ignored. If the
polylines is non-orthogonal, the discrepancies will be averaged away.
This method should not be used as a Rectangle fitter.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public static Rectangle3d CreateFromPolyline(
IEnumerable<Point3d> polyline
)
Public Shared Function CreateFromPolyline (
polyline As IEnumerable(Of Point3d)
) As Rectangle3d
Parameters
- polyline
- Type: System.Collections.GenericIEnumerablePoint3d
Polyline to parse.
Return Value
Type:
Rectangle3dA rectangle that is shaped similarly to the polyline or Rectangle3d.Unset
if the polyline does not represent a rectangle.
See Also