GH_PointCreateFromSurfaceParam Method |
Create new point geometry instance based on a curve distance parameter
Namespace:
Grasshopper.Kernel.Types
Assembly:
Grasshopper (in Grasshopper.dll)
Syntax public void CreateFromSurfaceParam(
Guid brp_id,
int f_index,
Surface srf,
double u,
double v
)
Public Sub CreateFromSurfaceParam (
brp_id As Guid,
f_index As Integer,
srf As Surface,
u As Double,
v As Double
)
Parameters
- brp_id
- Type: SystemGuid
ID of the curve this object references - f_index
- Type: SystemInt32
Index of edge to reference - srf
- Type: Surface
Surface to work on - u
- Type: SystemDouble
Parameter in surface U direction - v
- Type: SystemDouble
Parameter in surface V direction
Remarks This 'constructor' merely sets fields, it doesn't load the geometry and it doesn't perform validity checking.
See Also