using proper static access

This commit is contained in:
Brian Matzon 2004-01-28 19:44:26 +00:00
parent 470eb88ecd
commit ac9fd4f7dd
1 changed files with 3 additions and 3 deletions

View File

@ -22,10 +22,10 @@ public class Quadric implements GLUConstants {
public Quadric() { public Quadric() {
super(); super();
drawStyle = this.GLU_FILL; drawStyle = GLUConstants.GLU_FILL;
orientation = this.GLU_OUTSIDE; orientation = GLUConstants.GLU_OUTSIDE;
textureFlag = false; textureFlag = false;
normals = this.GLU_SMOOTH; normals = GLUConstants.GLU_SMOOTH;
} }
/** /**