ISurfaceEvaluate Method

Evaluates a surface mathematically.

Definition

Namespace: Karamba.Geometry
Assembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
C#
bool Evaluate(
	double u,
	double v,
	int numberDerivatives,
	out Point3 point,
	out Vector3[] derivatives
)

Parameters

u  Double
A U parameter.
v  Double
A V parameter.
numberDerivatives  Int32
The number of derivatives.
point  Point3
A point. This out parameter will be assigned during this call.
derivatives  Vector3
A vector array. This out parameter will be assigned during this call. This can be null.

Return Value

Boolean
true if the operation succeeded; false otherwise.

See Also