diff options
Diffstat (limited to 'src/javax/vecmath/Point4d.java')
-rw-r--r-- | src/javax/vecmath/Point4d.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/javax/vecmath/Point4d.java b/src/javax/vecmath/Point4d.java index 1b8e667..2983e4b 100644 --- a/src/javax/vecmath/Point4d.java +++ b/src/javax/vecmath/Point4d.java @@ -95,7 +95,7 @@ public class Point4d extends Tuple4d implements java.io.Serializable { * is set to 1. * @param t1 the tuple to be copied * - * @since Java 3D 1.2 + * @since vecmath 1.2 */ public Point4d(Tuple3d t1) { super(t1.x, t1.y, t1.z, 1.0); @@ -117,7 +117,7 @@ public class Point4d extends Tuple4d implements java.io.Serializable { * is set to 1. * @param t1 the tuple to be copied * - * @since Java 3D 1.2 + * @since vecmath 1.2 */ public final void set(Tuple3d t1) { this.x = t1.x; |