more minor changes

This commit is contained in:
minjaesong
2017-06-11 18:01:03 +09:00
parent 8a3c4fd65e
commit 980c92f213
20 changed files with 115 additions and 22 deletions

View File

@@ -66,10 +66,10 @@ import org.dyn4j.Epsilon
class Vector2 {
/** The magnitude of the x component of this [Vector2] */
@Volatile var x: Double = 0.0
var x: Double = 0.0
/** The magnitude of the y component of this [Vector2] */
@Volatile var y: Double = 0.0
var y: Double = 0.0
/** Default constructor. */
constructor() {