summaryrefslogtreecommitdiff
path: root/src/main/scala/graphyx/tests/Joints1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/graphyx/tests/Joints1.scala')
-rw-r--r--src/main/scala/graphyx/tests/Joints1.scala24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/scala/graphyx/tests/Joints1.scala b/src/main/scala/graphyx/tests/Joints1.scala
new file mode 100644
index 0000000..ad143ec
--- /dev/null
+++ b/src/main/scala/graphyx/tests/Joints1.scala
@@ -0,0 +1,24 @@
+/*
+ * Graphyx
+ * copyright (c) 2009 Jakob Odersky
+ * made available under the MIT License
+*/
+
+package graphyx.tests
+
+import sims.dynamics._
+import sims.dynamics.joints._
+import sims.geometry._
+
+object Joints1 extends Test{
+ override val title = "Joints1"
+ val world = new World
+ def init = {
+ val anchor = new Body(new Circle(0.03, 1) {pos = Vector2D(1,5)}) {fixed = true}
+ val weight = (new Rectangle(0.1, 0.5, 1) {pos = Vector2D(1,0)}).asBody
+ val joint = new DistanceJoint(anchor, anchor.pos, weight, weight.pos + Vector2D(0.1,0.2))
+ world += anchor
+ world += weight
+ world += joint
+ }
+}