OSDN Git Service

Fixed my typo trying to fix a typo
authorDavis Silverman <sinistersnare@gmail.com>
Sun, 4 Aug 2013 09:10:57 +0000 (05:10 -0400)
committerDavis Silverman <sinistersnare@gmail.com>
Sun, 4 Aug 2013 09:10:57 +0000 (05:10 -0400)
I am not a smart man.

gdx/src/com/badlogic/gdx/math/Vector3.java

index 4325ac3..c60e79d 100644 (file)
@@ -25,11 +25,11 @@ import com.badlogic.gdx.utils.NumberUtils;
 public class Vector3 implements Serializable, Vector<Vector3> {\r
        private static final long serialVersionUID = 3840054589595372522L;\r
 \r
-       /** the y-component of this vector **/\r
-       public float x;\r
        /** the x-component of this vector **/\r
-       public float y;\r
+       public float x;\r
        /** the y-component of this vector **/\r
+       public float y;\r
+       /** the z-component of this vector **/\r
        public float z;\r
 \r
        /** @deprecated\r