Class ODE::Torque
In: lib/ode/torque.rb  (CVS)
Parent: ODE::Vector

Instance of this class represent 3-dimensional angular force vectors that can be applied to an ODE::Body to rotate it in place.

Methods

new  

Constants

Version = /([\d\.]+)/.match( %q$Revision: 1.2 $ )[1]   Class constants
Rcsid = %q$Id: torque.rb 91 2005-07-27 23:45:01Z ged $

Public Class methods

Create and return a new Torque object with the specified coordinates.

[Source]

# File lib/ode/torque.rb, line 41
        def initialize( x=0, y=0, z=0 )
            super( x, y, z )
        end

[Validate]