summaryrefslogtreecommitdiff
path: root/src/main/scala/graphyx/graphics/GraphicalDistanceJoint.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/graphyx/graphics/GraphicalDistanceJoint.scala')
-rw-r--r--src/main/scala/graphyx/graphics/GraphicalDistanceJoint.scala19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main/scala/graphyx/graphics/GraphicalDistanceJoint.scala b/src/main/scala/graphyx/graphics/GraphicalDistanceJoint.scala
new file mode 100644
index 0000000..4a6e49d
--- /dev/null
+++ b/src/main/scala/graphyx/graphics/GraphicalDistanceJoint.scala
@@ -0,0 +1,19 @@
+/*
+ * Graphyx
+ * copyright (c) 2009 Jakob Odersky
+ * made available under the MIT License
+*/
+
+package graphyx.graphics
+
+import sims.dynamics.joints._
+
+case class GraphicalDistanceJoint(real: DistanceJoint) extends GraphicalJoint {
+ val connection1 = real.connection1
+ val connection2 = real.connection2
+
+ def draw() = {
+ g.setColor(java.awt.Color.BLACK)
+ drawLine(connection1, connection2)
+ }
+}