more minor changes

This commit is contained in:
minjaesong
2017-06-11 18:01:03 +09:00
parent 687a7f901e
commit 2ca8c2c263
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() {