summaryrefslogtreecommitdiff
path: root/src/graphyx/tests/Friction2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphyx/tests/Friction2.scala')
-rw-r--r--src/graphyx/tests/Friction2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphyx/tests/Friction2.scala b/src/graphyx/tests/Friction2.scala
index 6eb445b..f6731e2 100644
--- a/src/graphyx/tests/Friction2.scala
+++ b/src/graphyx/tests/Friction2.scala
@@ -26,7 +26,7 @@ object Friction2 extends Test{
ground.rotation = -0.2
world += ground
- val b: Body = (new Circle(0.1,10)) ^ (new Circle(0.1,10) {pos = Vector2D(0.2,0)}) ^ (new Circle(0.1,10) {pos = Vector2D(0.4,0)})
+ val b: Body = (new Circle(0.1,10)) ~ (new Circle(0.1,10) {pos = Vector2D(0.2,0)}) ~ (new Circle(0.1,10) {pos = Vector2D(0.4,0)})
b.pos = Vector2D(0.1,0.1)
world += b
}