* The width of the allowed area
* @param height
* The height of the allowed area
*/
public void setWorldClip(float x, float y, float width, float height) {
worldClipRecord = new Rectangle(x, y, width, height);
GL.glEnable(SGL.GL_CLIP_PLANE0);
worldClip.put(1).put(0).put(0).put(-x).flip();
GL.glClipPlane(SGL.GL_CLIP_PLANE0, worldClip);
GL.glEnable(SGL.GL_CLIP_PLANE1);
worldClip.put(-1).put(0).put(0).put(x + width).flip();