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
)
Public Function GetSurfaceParameterFromNurbsFormParameter (
nurbsS As Double,
nurbsT As Double,
<OutAttribute> ByRef surfaceS As Double,
<OutAttribute> ByRef surfaceT As Double
) As Boolean
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:
BooleanTrue if the operation succeeded; otherwise, false.
See Also