Click or drag to resize

ISurfaceEvaluate Method

Evaluates a surface mathematically.

Namespace:  Karamba.Geometry
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntax
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.
See Also