diff options
author | Sven Göthel <[email protected]> | 2024-01-31 12:15:27 +0100 |
---|---|---|
committer | Sven Göthel <[email protected]> | 2024-01-31 12:15:27 +0100 |
commit | bb32e88ca0e8fa95b7d8503f5881fa256bf95e59 (patch) | |
tree | 4c3649e9f24512571c84cc5be3fa3abbfd870e0a | |
parent | fe8f67563aa0bf2ff8f6e242c13f1d267c18b7f5 (diff) |
Bug 1495: GraphUI Shape: Fix updateMat() API doc
-rw-r--r-- | src/graphui/classes/com/jogamp/graph/ui/Shape.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/Shape.java b/src/graphui/classes/com/jogamp/graph/ui/Shape.java index d4db6d6e3..1527f0fd0 100644 --- a/src/graphui/classes/com/jogamp/graph/ui/Shape.java +++ b/src/graphui/classes/com/jogamp/graph/ui/Shape.java @@ -918,11 +918,10 @@ public abstract class Shape { * Sets {@link #isMatIdentity()} to {@code true} if neither position, scale or rotate is performed, otherwise to {@code false}. * </p> * <p> - * Called within {@link #applyMatToMv(PMVMatrix4f)} if internal matrix is dirty. + * Called by {@link #applyMatToMv(PMVMatrix4f)}, {@link #getMat()} and {@link #getMat(Matrix4f)} if internal matrix is dirty. * </p> * <p> - * After any mutating operation or borrowing values via {@link #getPosition()}, {@link #getScale()}, {@link #getRotation()} or {@link #getRotationPivot()}, - * the internal matrix is marked dirty. + * After any mutating operations, .e.g {@link #move(float, float, float)} etc, the internal matrix is marked dirty. * </p> * @see #isMatIdentity() * @see #getMat() |