sims.dynamics.joints

class SpringJoint

[source: sims/dynamics/joints/SpringJoint.scala]

case class SpringJoint(val node1 : Body, val anchor1 : Vector2D, val node2 : Body, val anchor2 : Vector2D, val springConstant : Double, val initialLength : Double)
extends Joint with ForceJoint with scala.Product
Eine Hooksche Feder.
Parameters
node1 - erster Koerper der Verbindung
anchor1 - Bindungspunkt auf Koerper eins
node2 - zweiter Koerper der Verbindung
anchor2 - Bindungspunkt auf Koerper zwei
springConstant - Federkonstante
initialLength - Initiallaenge
Additional Constructor Summary
def this (node1 : Body, node2 : Body, springConstant : Double) : SpringJoint
def this (node1 : Body, node2 : Body, springConstant : Double, initialLength : Double) : SpringJoint
def this (node1 : Body, anchor1 : Vector2D, node2 : Body, anchor2 : Vector2D, springConstant : Double) : SpringJoint
Value Summary
var damping : Double
Daempfung.
Method Summary
def applyForce : Unit
Uebt die Federkraft auf die Bindungspunkte aus.
def connection1 : Vector2D
Ergibt den Bindungspunkt auf Koerper eins.
def connection2 : Vector2D
Ergibt den Bindungspunkt auf Koerper zwei.
def correctPosition (h : Double) : Unit
Korrigiert die Position der Koerper damit diese den Randbedingungen der Verbindung entsprechen.
def correctVelocity (h : Double) : Unit
Korrigiert die Geschwindigkeit der Koerper damit diese den Randbedingungen der Verbindung entsprechen.
override def equals (arg0 : Any) : Boolean
This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.
def force : Double
Ergibt die Federkraft nach dem Hookschen Gesetz.
override def hashCode : Int
Returns a hash code value for the object.
override def productArity : Int
override def productElement (arg0 : Int) : Any
override def productPrefix : java.lang.String
override def toString : java.lang.String
Returns a string representation of the object.
def x : Vector2D
Relative Position der Bindungspunkte.
Methods inherited from AnyRef
getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Additional Constructor Details
def this(node1 : Body, anchor1 : Vector2D, node2 : Body, anchor2 : Vector2D, springConstant : Double) : SpringJoint

def this(node1 : Body, node2 : Body, springConstant : Double, initialLength : Double) : SpringJoint

def this(node1 : Body, node2 : Body, springConstant : Double) : SpringJoint

Value Details
var damping : Double
Daempfung.

Method Details
def connection1 : Vector2D
Ergibt den Bindungspunkt auf Koerper eins.

def connection2 : Vector2D
Ergibt den Bindungspunkt auf Koerper zwei.

def x : Vector2D
Relative Position der Bindungspunkte.

def force : Double
Ergibt die Federkraft nach dem Hookschen Gesetz.

def applyForce : Unit
Uebt die Federkraft auf die Bindungspunkte aus.
Overrides
ForceJoint.applyForce

def correctPosition(h : Double) : Unit
Korrigiert die Position der Koerper damit diese den Randbedingungen der Verbindung entsprechen.
Overrides
Joint.correctPosition

def correctVelocity(h : Double) : Unit
Korrigiert die Geschwindigkeit der Koerper damit diese den Randbedingungen der Verbindung entsprechen.
Overrides
Joint.correctVelocity

override def hashCode : Int
Returns a hash code value for the object.

The default hashing algorithm is platform dependent. Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

Returns
the hash code value for the object.


override def toString : java.lang.String
Returns a string representation of the object.

The default representation is platform dependent.

Returns
a string representation of the object.


override def equals(arg0 : Any) : Boolean
This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

The default implementations of this method is an equivalence relation:

  • It is reflexive: for any instance x of type Any, x.equals(x) should return true.
  • It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true.
  • It is transitive: for any instances x, y, and z of type AnyRef if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is often necessary to override hashCode to ensure that objects that are "equal" (o1.equals(o2) returns true) hash to the same Int (o1.hashCode.equals(o2.hashCode)).

Parameters
arg0 - the object to compare against this object for equality.
Returns
true if the receiver object is equivalent to the argument; false otherwise.


override def productPrefix : java.lang.String
Overrides
scala.Product.scala.Product.productPrefix

override def productArity : Int
Overrides
scala.Product.scala.Product.productArity

override def productElement(arg0 : Int) : Any
Overrides
scala.Product.scala.Product.productElement