Click or drag to resize

RhinoSurfaceEvaluate Method

Evaluates a surface mathematically.

Namespace:  Karamba.GHopper.Geometry
Assembly:  Karamba3D (in Karamba3D.dll) Version: 2.2.0.5 (2.2.0.5)
Syntax
public bool Evaluate(
	double u,
	double v,
	int numberDerivatives,
	out Point3 point,
	out Vector3[] derivatives
)

Parameters

u
Type: SystemDouble
A U parameter.
v
Type: SystemDouble
A V parameter.
numberDerivatives
Type: SystemInt32
The number of derivatives.
point
Type: Karamba.GeometryPoint3
A point. This out parameter will be assigned during this call.
derivatives
Type: Karamba.GeometryVector3
A vector array. This out parameter will be assigned during this call. This can be null.

Return Value

Type: Boolean
true if the operation succeeded; false otherwise.

Implements

ISurfaceEvaluate(Double, Double, Int32, Point3, Vector3)
See Also