BrepFace.TrimAwareIsoCurve Method

BrepFaceTrimAwareIsoCurve Method

Similar to IsoCurve function, except this function pays attention to trims on faces and may return multiple curves.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public Curve[] TrimAwareIsoCurve(
	int direction,
	double constantParameter
)
Public Function TrimAwareIsoCurve ( 
	direction As Integer,
	constantParameter As Double
) As Curve()

Parameters

direction
Type: SystemInt32
Direction of isocurve.

0 = Isocurve connects all points with a constant U value.

1 = Isocurve connects all points with a constant V value.

constantParameter
Type: SystemDouble
Surface parameter that remains identical along the isocurves.

Return Value

Type: Curve
Isoparametric curves connecting all points with the constantParameter value.
Remarks
In this function "direction" indicates which direction the resulting curve runs. 0: horizontal, 1: vertical In the other Surface functions that take a "direction" argument, "direction" indicates if "constantParameter" is a "u" or "v" parameter.
Version Information

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.14
See Also