summaryrefslogtreecommitdiff
path: root/src/sims/dynamics/joints/ForceJoint.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/sims/dynamics/joints/ForceJoint.scala')
-rw-r--r--src/sims/dynamics/joints/ForceJoint.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sims/dynamics/joints/ForceJoint.scala b/src/sims/dynamics/joints/ForceJoint.scala
index fa17eac..1eed850 100644
--- a/src/sims/dynamics/joints/ForceJoint.scala
+++ b/src/sims/dynamics/joints/ForceJoint.scala
@@ -6,9 +6,9 @@
package sims.dynamics.joints
-/**Eine Verbindung die Kraft auf ihre Bindungskoerper ausueben kann.*/
+/**A joint which can apply a force to its anchor bodies, thus adding or removing energy to the system.*/
trait ForceJoint {
- /**Uebt eine Kraft auf die Bindungskoerper aus.*/
+ /**Applies a force on the achor bodies.*/
def applyForce(): Unit
}