diff options
author | Sven Gothel <sgothel@jausoft.com> | 2023-09-23 03:11:57 +0200 |
---|---|---|
committer | Sven Gothel <sgothel@jausoft.com> | 2023-09-23 03:11:57 +0200 |
commit | 6c97c5fa201d221a37773db54994d27e34ba86c3 (patch) | |
tree | 04ead385f859fcf0d3f1d2117dd1dc20b87e7abe /src/graphui/classes/com/jogamp/graph/ui/layout/BoxLayout.java | |
parent | 0d89f1ebae1a790151551ad9b027105d91972877 (diff) |
Bug 1452: GraphUI Shape: Rename setMvTransform(..) -> setTransformMv(..), aligning w/ PMVMatrix4f naming ..
Original name was simply setTransform(..), so now let's keep using the suffix denominating the matrix
while keep the main subject/verb upfront. Was an off reading ..
Diffstat (limited to 'src/graphui/classes/com/jogamp/graph/ui/layout/BoxLayout.java')
-rw-r--r-- | src/graphui/classes/com/jogamp/graph/ui/layout/BoxLayout.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/layout/BoxLayout.java b/src/graphui/classes/com/jogamp/graph/ui/layout/BoxLayout.java index 16e3441a3..3bfa2b27f 100644 --- a/src/graphui/classes/com/jogamp/graph/ui/layout/BoxLayout.java +++ b/src/graphui/classes/com/jogamp/graph/ui/layout/BoxLayout.java @@ -185,7 +185,7 @@ public class BoxLayout implements Group.Layout { // measure size pmv.pushMv(); - s.setMvTransform(pmv); + s.setTransformMv(pmv); s.getBounds().transform(pmv.getMv(), sbox); pmv.popMv(); |