summaryrefslogtreecommitdiffstats
path: root/src/javax/vecmath/Tuple4b.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/javax/vecmath/Tuple4b.java')
-rw-r--r--src/javax/vecmath/Tuple4b.java94
1 files changed, 94 insertions, 0 deletions
diff --git a/src/javax/vecmath/Tuple4b.java b/src/javax/vecmath/Tuple4b.java
index 441b567..d8cc5b3 100644
--- a/src/javax/vecmath/Tuple4b.java
+++ b/src/javax/vecmath/Tuple4b.java
@@ -243,4 +243,98 @@ public abstract class Tuple4b implements java.io.Serializable, Cloneable {
}
}
+
+ /**
+ * Get <i>x</i>, the first value.
+ *
+ * @return Returns <i>x</i>, the first value.
+ *
+ * @since vecmath 1.5
+ */
+ public final byte getX() {
+ return x;
+ }
+
+
+ /**
+ * Set <i>x</i>, the first value.
+ *
+ * @param x the first value.
+ *
+ * @since vecmath 1.5
+ */
+ public final void setX(byte x) {
+ this.x = x;
+ }
+
+
+ /**
+ * Get <i>y</i>, the second value.
+ *
+ * @return Returns <i>y</i>, the second value.
+ *
+ * @since vecmath 1.5
+ */
+ public final byte getY() {
+ return y;
+ }
+
+
+ /**
+ * Set <i>y</i>, the second value.
+ *
+ * @param y the second value.
+ *
+ * @since vecmath 1.5
+ */
+ public final void setY(byte y) {
+ this.y = y;
+ }
+
+ /**
+ * Get <i>z</i>, the third value.
+ *
+ * @return Returns <i>z</i>, the third value.
+ *
+ * @since vecmath 1.5
+ */
+ public final byte getZ() {
+ return z;
+ }
+
+
+ /**
+ * Set <i>z</i>, the third value.
+ *
+ * @param z the third value.
+ *
+ * @since vecmath 1.5
+ */
+ public final void setZ(byte z) {
+ this.z = z;
+ }
+
+
+ /**
+ * Get <i>w</i>, the fourth value.
+ *
+ * @return Returns <i>w</i> - the fourth value.
+ *
+ * @since vecmath 1.5
+ */
+ public final byte getW() {
+ return w;
+ }
+
+
+ /**
+ * Set <i>w</i>, the fourth value.
+ *
+ * @param w the fourth value.
+ *
+ * @since vecmath 1.5
+ */
+ public final void setW(byte w) {
+ this.w = w;
+ }
}