diff options
author | Sven Göthel <[email protected]> | 2024-01-26 02:06:58 +0100 |
---|---|---|
committer | Sven Göthel <[email protected]> | 2024-01-26 02:06:58 +0100 |
commit | ab29e3b34ea29d35b04ad2771ca20e49f1a59351 (patch) | |
tree | 9e15ca328507bac9133fa8bbdb40b3957cc1082f /src/graphui/classes/com/jogamp/graph/ui/Shape.java | |
parent | 09c256e2f26938cc2015176e259164bd7421dbdd (diff) |
GraphUI Layout: Emphasize whether a value/parameter is scaled or unscaled in API doc to ease usage
Diffstat (limited to 'src/graphui/classes/com/jogamp/graph/ui/Shape.java')
-rw-r--r-- | src/graphui/classes/com/jogamp/graph/ui/Shape.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/Shape.java b/src/graphui/classes/com/jogamp/graph/ui/Shape.java index 05d562363..3ef55c1f6 100644 --- a/src/graphui/classes/com/jogamp/graph/ui/Shape.java +++ b/src/graphui/classes/com/jogamp/graph/ui/Shape.java @@ -330,10 +330,10 @@ public abstract class Shape { public final Shape setVisible(final boolean v) { return setIO(IO_VISIBLE, v); } /** - * Sets the padding for this shape, which is included in {@link #getBounds()} and also includes the border. Default is zero. - * + * Sets the unscaled padding for this shape, which is included in unscaled {@link #getBounds()} and also includes the border. Default is zero. + * <p> * Method issues {@link #markShapeDirty()}. - * + * </p> * @param padding distance of shape to the border, i.e. padding * @return this shape for chaining * @see #getPadding() @@ -346,7 +346,7 @@ public abstract class Shape { } /** - * Returns {@link Padding} of this shape, which is included in {@link #getBounds()B} and also includes the border. Default is zero. + * Returns unscaled {@link Padding} of this shape, which is included in unscaled {@link #getBounds()} and also includes the border. Default is zero. * @see #setPaddding(Padding) * @see #hasPadding() */ |