summaryrefslogtreecommitdiffstats
path: root/src/javax/vecmath/Point4f.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/javax/vecmath/Point4f.java')
-rw-r--r--src/javax/vecmath/Point4f.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/javax/vecmath/Point4f.java b/src/javax/vecmath/Point4f.java
index 7d6f193..f990886 100644
--- a/src/javax/vecmath/Point4f.java
+++ b/src/javax/vecmath/Point4f.java
@@ -95,7 +95,7 @@ public class Point4f extends Tuple4f 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 Point4f(Tuple3f t1) {
super(t1.x, t1.y, t1.z, 1.0f);
@@ -117,7 +117,7 @@ public class Point4f extends Tuple4f 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(Tuple3f t1) {
this.x = t1.x;