CurveCreateRevisionCloud Method (IEnumerablePoint3d, Double, Boolean) |
Creates a revision cloud curve from points that make up a planar polyline.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 8.4
Syntaxpublic static Curve CreateRevisionCloud(
IEnumerable<Point3d> points,
double angle,
bool flip
)
Public Shared Function CreateRevisionCloud (
points As IEnumerable(Of Point3d),
angle As Double,
flip As Boolean
) As Curve
Parameters
- points
- Type: System.Collections.GenericIEnumerablePoint3d
The input points. - angle
- Type: SystemDouble
The angle in radians, between PI/2.0 and PI radians (90 and 180 degrees).
This angle indicates the amount of bulge in the segments.
- flip
- Type: SystemBoolean
The arc segments in output revision cloud curve will be in the opposite direction to the input curve.
Return Value
Type:
CurveA revision cloud curve is successful, false otherwise.
See Also