summaryrefslogtreecommitdiffstats
path: root/src/javax/vecmath/Tuple4b.java
diff options
context:
space:
mode:
authorKevin Rushforth <[email protected]>2006-09-29 18:05:22 +0000
committerKevin Rushforth <[email protected]>2006-09-29 18:05:22 +0000
commitef52440ac08db7764adadcc11c9437ab67b98714 (patch)
tree31b86db859a1d0e6ed42a25695711e49e624d460 /src/javax/vecmath/Tuple4b.java
parentffc8b12fb945850394498a1f9fe1f04e5f2042de (diff)
Merged dev-1_5 branch back to MAIN trunk
git-svn-id: https://svn.java.net/svn/vecmath~svn/trunk@106 dd45e54d-f42e-c781-df72-dca083a658b1
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;
+ }
}