Skip to content

Commit a5520ba

Browse files
authored
Update Vector3.java
1 parent 6dc6437 commit a5520ba

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Vector3.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
1-
package trrt.rendering3d.primitives;
2-
3-
import java.io.Serializable;
4-
51
/**
62
* An object which represents 3d points or directions, and includes many static methods for 3d math. */
7-
public class Vector3 implements Serializable
3+
public class Vector3
84
{
9-
private static final long serialVersionUID = 1;
10-
115
public static final Vector3 UP = new Vector3(0, 1, 0);
126
public static final Vector3 RIGHT = new Vector3(1, 0, 0);
137
public static final Vector3 FORWARD = new Vector3(0, 0, 1);

0 commit comments

Comments
 (0)