aboutsummaryrefslogtreecommitdiffstats
path: root/src/graphui/classes/com/jogamp/graph/ui/gl/Shape.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-03-21 09:33:06 +0100
committerSven Gothel <[email protected]>2023-03-21 09:33:06 +0100
commit59a7fdeb4ed36f0014ba1fdcc0ec144c04aaa2d5 (patch)
treeecd36c5dc7e3af7aa6c42795566640c9d49d11ab /src/graphui/classes/com/jogamp/graph/ui/gl/Shape.java
parent8abe939c5132e4a58c4b9a6b31f0b1fd10734516 (diff)
Graph: Cleanup Vertex.Factory referencing: Only bind to OutlineShape and use its default. GraphUI: Always use default.
Graph RegionRenderer, its RenderState as well as GraphUI's Scene don't need to have knowledge of Vertex.Factory, which is only used within OutlineShape and its 'inner geom workings'.
Diffstat (limited to 'src/graphui/classes/com/jogamp/graph/ui/gl/Shape.java')
-rw-r--r--src/graphui/classes/com/jogamp/graph/ui/gl/Shape.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/gl/Shape.java b/src/graphui/classes/com/jogamp/graph/ui/gl/Shape.java
index 1876b8057..52a17f49a 100644
--- a/src/graphui/classes/com/jogamp/graph/ui/gl/Shape.java
+++ b/src/graphui/classes/com/jogamp/graph/ui/gl/Shape.java
@@ -121,8 +121,8 @@ public abstract class Shape {
private Listener onMoveListener = null;
- public Shape(final Factory<? extends Vertex> factory, final int renderModes) {
- this.vertexFactory = factory;
+ public Shape(final int renderModes) {
+ this.vertexFactory = OutlineShape.getDefaultVertexFactory();
this.renderModes = renderModes;
this.box = new AABBox();
}
@@ -132,8 +132,6 @@ public abstract class Shape {
/** Return the optional symbolic name for this shape. */
public final int getName() { return this.name; }
- public final Vertex.Factory<? extends Vertex> getVertexFactory() { return vertexFactory; }
-
/** Returns true if this shape is enabled and hence visible, otherwise false. */
public final boolean isEnabled() { return enabled; }
/** Enable or disable this shape, i.e. its visibility. */