commandWindow method

EasyClip commandWindow(
  1. double left,
  2. double bottom,
  3. double right,
  4. double top,
)

Implementation

EasyClip commandWindow( double left, double bottom, double right, double top ){
	_setEnv();
	ClipProc.doCommandWindow( left, bottom, right, top );
	ClipProc.procGWorld().setWindowIndirect( left, bottom, right, top );
	return this;
}