diff options
Diffstat (limited to 'src/javax/vecmath/Vector4f.java')
-rw-r--r-- | src/javax/vecmath/Vector4f.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/javax/vecmath/Vector4f.java b/src/javax/vecmath/Vector4f.java index 5c0e885..7feb3f0 100644 --- a/src/javax/vecmath/Vector4f.java +++ b/src/javax/vecmath/Vector4f.java @@ -94,7 +94,7 @@ public class Vector4f extends Tuple4f implements java.io.Serializable { * is set to 0. * @param t1 the tuple to be copied * - * @since Java 3D 1.2 + * @since vecmath 1.2 */ public Vector4f(Tuple3f t1) { super(t1.x, t1.y, t1.z, 0.0f); @@ -116,7 +116,7 @@ public class Vector4f extends Tuple4f implements java.io.Serializable { * is set to 0. * @param t1 the tuple to be copied * - * @since Java 3D 1.2 + * @since vecmath 1.2 */ public final void set(Tuple3f t1) { this.x = t1.x; |