summaryrefslogtreecommitdiffstats
path: root/src/javax/vecmath/Point4f.java
diff options
context:
space:
mode:
authorKevin Rushforth <[email protected]>2005-10-17 23:09:50 +0000
committerKevin Rushforth <[email protected]>2005-10-17 23:09:50 +0000
commitbbbd3f78002273305ea08e3b5b151e4203759a36 (patch)
treeb9554a90f634be9148b490ac79e5939c10743115 /src/javax/vecmath/Point4f.java
parent61ffc4dc377385a64aacb8070876bbae4c0bd348 (diff)
Merged changes from dev-1_4 branch into the main trunk.
NOTE: all 1.4 development will now proceed on the main trunk. The dev-1_4 branch is closed. git-svn-id: https://svn.java.net/svn/vecmath~svn/trunk@55 dd45e54d-f42e-c781-df72-dca083a658b1
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;