|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public static interface ParametricSurfaceFactory.Immersion
Represents a map of two variables into n--dimensional space.
Method Summary | |
---|---|
void |
evaluate(double u,
double v,
double[] xyz,
int index)
The implementation of the formula. |
int |
getDimensionOfAmbientSpace()
The dimension of the target space. |
boolean |
isImmutable()
Mutable immersions are always recalculated when the update method is called;
immutable immersions are only recalculated when the parameter domain changes. |
Method Detail |
---|
boolean isImmutable()
update
method is called;
immutable immersions are only recalculated when the parameter domain changes.
int getDimensionOfAmbientSpace()
void evaluate(double u, double v, double[] xyz, int index)
evaluate
should read
xyz[3*index]=f1(u,v);
xyz[3*index+1]=f2(u,v);
...
xyz[3*index+n-1]=fn(u,v);
u
- coordinate of the requested valuev
- coordinate of the requested valuexyz
- an array to put the result of the evaluation intoindex
- at which to put the result into xyz
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |