GH_FieldSolveSteps Method |
Move a point through a succession of steps.
Namespace:
Grasshopper.Kernel.Types
Assembly:
Grasshopper (in Grasshopper.dll)
Syntax public Point3dList SolveSteps(
Point3d location,
double accuracy,
int count,
GH_DifferentialSolver method
)
Public Function SolveSteps (
location As Point3d,
accuracy As Double,
count As Integer,
method As GH_DifferentialSolver
) As Point3dList
Parameters
- location
- Type: Point3d
Point to move. - accuracy
- Type: SystemDouble
Rough accuracy. - count
- Type: SystemInt32
Number of samples to take. - method
- Type: Grasshopper.Kernel.TypesGH_DifferentialSolver
Estimator to use.
Return Value
Type:
Point3dListA track (including the original location) of all the samples.
See Also