We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dc6437 commit a5520baCopy full SHA for a5520ba
Vector3.java
@@ -1,13 +1,7 @@
1
-package trrt.rendering3d.primitives;
2
-
3
-import java.io.Serializable;
4
5
/**
6
* An object which represents 3d points or directions, and includes many static methods for 3d math. */
7
-public class Vector3 implements Serializable
+public class Vector3
8
{
9
- private static final long serialVersionUID = 1;
10
11
public static final Vector3 UP = new Vector3(0, 1, 0);
12
public static final Vector3 RIGHT = new Vector3(1, 0, 0);
13
public static final Vector3 FORWARD = new Vector3(0, 0, 1);
0 commit comments