plane static method
Implementation
static Function(double u,double v, Vector3 target) plane(double width,double height ) {
return(double u,double v, Vector3 target ) {
final x = u * width;
final y = 0.0;
final z = v * height;
target.setValues( x, y, z );
};
}