From 1303328b476570d94e56c9d2fc061e3b09cf538a Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Mon, 9 May 2011 14:25:59 +0200 Subject: Loop: Fix invert; GlyphString/createRegion: Remove unnecessary on-the-fly object creation --- .../classes/com/jogamp/graph/curve/Region.java | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'src/jogl/classes/com/jogamp/graph') diff --git a/src/jogl/classes/com/jogamp/graph/curve/Region.java b/src/jogl/classes/com/jogamp/graph/curve/Region.java index 320483d8d..46bdedee4 100644 --- a/src/jogl/classes/com/jogamp/graph/curve/Region.java +++ b/src/jogl/classes/com/jogamp/graph/curve/Region.java @@ -83,6 +83,18 @@ public abstract class Region { return numVertices; } + /** Adds a {@link Triangle} object to the Region + * This triangle will be bound to OGL objects + * on the next call to {@code update} + * @param tri a triangle object + * + * @see update(GL2ES2) + */ + public void addTriangle(Triangle tri) { + triangles.add(tri); + setDirty(true); + } + /** Adds a list of {@link Triangle} objects to the Region * These triangles are to be binded to OGL objects * on the next call to {@code update} @@ -95,6 +107,19 @@ public abstract class Region { setDirty(true); } + /** Adds a {@link Vertex} object to the Region + * This vertex will be bound to OGL objects + * on the next call to {@code update} + * @param vert a vertex objects + * + * @see update(GL2ES2) + */ + public void addVertex(Vertex vert) { + vertices.add(vert); + numVertices++; + setDirty(true); + } + /** Adds a list of {@link Vertex} objects to the Region * These vertices are to be binded to OGL objects * on the next call to {@code update} -- cgit v1.2.3