SurfaceGetNurbsFormParameterFromSurfaceParameter Method |
Translates a parameter from the current surface to the parameter space of the surface returned by
ToNurbsSurface.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax public bool GetNurbsFormParameterFromSurfaceParameter(
double surfaceS,
double surfaceT,
out double nurbsS,
out double nurbsT
)
Public Function GetNurbsFormParameterFromSurfaceParameter (
surfaceS As Double,
surfaceT As Double,
<OutAttribute> ByRef nurbsS As Double,
<OutAttribute> ByRef nurbsT As Double
) As Boolean
Parameters
- surfaceS
- Type: SystemDouble
The parameter in the S, or sometimes U, direction, of this surface. - surfaceT
- Type: SystemDouble
The parameter in the T, or sometimes V, direction of this surface. - nurbsS
- Type: SystemDouble
S on the NURBS form. - nurbsT
- Type: SystemDouble
T on the NURBS form.
Return Value
Type:
BooleanTrue if the operation succeeded; otherwise, false.
See Also