spec/javascripts/src/math/point_spec.js in entityjs-0.3.1 vs spec/javascripts/src/math/point_spec.js in entityjs-0.3.2
- old
+ new
@@ -34,24 +34,24 @@
})
it('should be correct distance', function(){
e.posX = 12;
e.posY = 54;
- eq(e.distanceTo(23,74), 23)
+ eq(e.distance(23,74), 23)
})
it('should be correct distance with from', function(){
e.posX = 12;
e.posY = 54;
var o = {x:23, y:74}
- eq(e.distanceTo(o), 23)
+ eq(e.distance(o), 23)
o = {posX:23, posY:74}
- eq(e.distanceTo(o), 23)
+ eq(e.distance(o), 23)
})
});