diff options
author | Kevin Rushforth <[email protected]> | 2006-09-29 18:05:22 +0000 |
---|---|---|
committer | Kevin Rushforth <[email protected]> | 2006-09-29 18:05:22 +0000 |
commit | ef52440ac08db7764adadcc11c9437ab67b98714 (patch) | |
tree | 31b86db859a1d0e6ed42a25695711e49e624d460 /src/javax/vecmath/Tuple2i.java | |
parent | ffc8b12fb945850394498a1f9fe1f04e5f2042de (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/Tuple2i.java')
-rw-r--r-- | src/javax/vecmath/Tuple2i.java | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/javax/vecmath/Tuple2i.java b/src/javax/vecmath/Tuple2i.java index 912d09d..3a402da 100644 --- a/src/javax/vecmath/Tuple2i.java +++ b/src/javax/vecmath/Tuple2i.java @@ -437,4 +437,51 @@ public abstract class Tuple2i implements java.io.Serializable, Cloneable { } } + + /** + * Get the <i>x</i> coordinate. + * + * @return the x coordinate. + * + * @since vecmath 1.5 + */ + public final int getX() { + return x; + } + + + /** + * Set the <i>x</i> coordinate. + * + * @param x value to <i>x</i> coordinate. + * + * @since vecmath 1.5 + */ + public final void setX(int x) { + this.x = x; + } + + + /** + * Get the <i>y</i> coordinate. + * + * @return the <i>y</i> coordinate. + * + * @since vecmath 1.5 + */ + public final int getY() { + return y; + } + + + /** + * Set the <i>y</i> coordinate. + * + * @param y value to <i>y</i> coordinate. + * + * @since vecmath 1.5 + */ + public final void setY(int y) { + this.y = y; + } } |