summaryrefslogtreecommitdiffstats
path: root/src/javax/vecmath/Vector4d.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/javax/vecmath/Vector4d.java')
-rw-r--r--src/javax/vecmath/Vector4d.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/javax/vecmath/Vector4d.java b/src/javax/vecmath/Vector4d.java
index 255d81e..1f17751 100644
--- a/src/javax/vecmath/Vector4d.java
+++ b/src/javax/vecmath/Vector4d.java
@@ -90,7 +90,7 @@ public class Vector4d extends Tuple4d 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 Vector4d(Tuple3d t1) {
super(t1.x, t1.y, t1.z, 0.0);
@@ -112,7 +112,7 @@ public class Vector4d extends Tuple4d 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(Tuple3d t1) {
this.x = t1.x;