diff options
Diffstat (limited to 'src/graphui/classes/com/jogamp/graph/ui/GraphShape.java')
-rw-r--r-- | src/graphui/classes/com/jogamp/graph/ui/GraphShape.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/GraphShape.java b/src/graphui/classes/com/jogamp/graph/ui/GraphShape.java index 6efd7f5f4..8b142210a 100644 --- a/src/graphui/classes/com/jogamp/graph/ui/GraphShape.java +++ b/src/graphui/classes/com/jogamp/graph/ui/GraphShape.java @@ -38,7 +38,6 @@ import com.jogamp.graph.geom.Vertex; import com.jogamp.graph.geom.Vertex.Factory; import com.jogamp.opengl.GL2ES2; import com.jogamp.opengl.GLProfile; -import com.jogamp.opengl.math.geom.AABBox; import com.jogamp.opengl.util.texture.TextureSequence; /** @@ -137,7 +136,7 @@ public abstract class GraphShape extends Shape { if( null != gl ) { clearDirtyRegions(gl); } - if( isShapeDirty() || null == region ) { + if( isShapeDirty() ) { if( null == region ) { region = createGLRegion(glp); } else if( null == gl ) { @@ -164,7 +163,7 @@ public abstract class GraphShape extends Shape { final float x2 = box.getMaxX(); final float y1 = box.getMinY(); final float y2 = box.getMaxY(); - final float z = box.getCenter()[2]; // 0; // box.getMinZ() + 0.025f; + final float z = box.getCenter().z(); // 0; // box.getMinZ() + 0.025f; { // Outer OutlineShape as Winding.CCW. shape.moveTo(x1, y1, z); |