aboutsummaryrefslogtreecommitdiffstats
path: root/src/graphui/classes/com/jogamp/graph/ui/layout/Gap.java
diff options
context:
space:
mode:
authorSven Göthel <[email protected]>2024-01-26 02:06:58 +0100
committerSven Göthel <[email protected]>2024-01-26 02:06:58 +0100
commitab29e3b34ea29d35b04ad2771ca20e49f1a59351 (patch)
tree9e15ca328507bac9133fa8bbdb40b3957cc1082f /src/graphui/classes/com/jogamp/graph/ui/layout/Gap.java
parent09c256e2f26938cc2015176e259164bd7421dbdd (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/layout/Gap.java')
-rw-r--r--src/graphui/classes/com/jogamp/graph/ui/layout/Gap.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/layout/Gap.java b/src/graphui/classes/com/jogamp/graph/ui/layout/Gap.java
index 9d832092d..7e3484cf9 100644
--- a/src/graphui/classes/com/jogamp/graph/ui/layout/Gap.java
+++ b/src/graphui/classes/com/jogamp/graph/ui/layout/Gap.java
@@ -30,7 +30,7 @@ package com.jogamp.graph.ui.layout;
import com.jogamp.math.FloatUtil;
/**
- * GraphUI CSS property Gap, spacing between (grid) cells not belonging to the element.
+ * GraphUI CSS property Gap, scaled spacing between (grid) cells not belonging to the cell element.
* <p>
* The CSS gap property defines the size of the gap between the rows and columns in a grid layout.
* </p>
@@ -39,9 +39,9 @@ public class Gap {
/** Zero gap constant. */
public static final Gap None = new Gap();
- /** Row gap value, vertical spacing. */
+ /** Scaled row gap value, vertical spacing. */
public final float row;
- /** Column gap value, horizontal spacing. */
+ /** Scaled column gap value, horizontal spacing. */
public final float column;
private Gap() {
@@ -50,8 +50,8 @@ public class Gap {
/**
* Ctor
- * @param row vertical row value
- * @param column horizontal column value
+ * @param row scaled vertical row value
+ * @param column scaled horizontal column value
*/
public Gap(final float row, final float column) {
this.row = row; this.column = column;
@@ -59,16 +59,16 @@ public class Gap {
/**
* Ctor
- * @param rc vertical row and horizontal column value
+ * @param rc scaled vertical row and horizontal column value
*/
public Gap(final float rc) {
this.row = rc; this.column = rc;
}
- /** Return width of horizontal value, i.e. 1 * column. */
+ /** Return scaled width of horizontal value, i.e. 1 * column. */
public float width() { return column; }
- /** Return height of vertical value, i.e. 1 * row. */
+ /** Return scaled height of vertical value, i.e. 1 * row. */
public float height() { return row; }
public boolean zeroSumWidth() { return FloatUtil.isZero( width() ); };