Click or drag to resize

SurfaceGetSurfaceParameterFromNurbsFormParameter Method

Translates a parameter from a value on the surface returned by ToNurbsSurface to the current surface.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax
public bool GetSurfaceParameterFromNurbsFormParameter(
	double nurbsS,
	double nurbsT,
	out double surfaceS,
	out double surfaceT
)

Parameters

nurbsS
Type: SystemDouble
The parameter in the S, or sometimes U, direction of the NURBS form surface.
nurbsT
Type: SystemDouble
The parameter in the T, or sometimes V, direction of the NURBS form surface.
surfaceS
Type: SystemDouble
S on this surface.
surfaceT
Type: SystemDouble
T o n this surface.

Return Value

Type: Boolean
True if the operation succeeded; otherwise, false.
See Also