|
ISurfaceEvaluate Method
|
Evaluates a surface mathematically.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxbool Evaluate(
double u,
double v,
int numberDerivatives,
out Point3 point,
out Vector3[] derivatives
)
Function Evaluate (
u As Double,
v As Double,
numberDerivatives As Integer,
<OutAttribute> ByRef point As Point3,
<OutAttribute> ByRef derivatives As Vector3()
) As Boolean
bool Evaluate(
double u,
double v,
int numberDerivatives,
[OutAttribute] Point3% point,
[OutAttribute] array<Vector3>^% derivatives
)
abstract Evaluate :
u : float *
v : float *
numberDerivatives : int *
point : Point3 byref *
derivatives : Vector3[] byref -> bool
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:
Booleantrue if the operation succeeded; false otherwise.
See Also