plane static method

dynamic Function(double u, double v, Vector3 target) plane(
  1. double width,
  2. double height
)

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 );
	};
}