AngularImpulse: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
|de=AngularImpulse:de
|de=AngularImpulse:de
}}
}}
{{stub}}
== AngularImpulse ==
An angular impulse is a typedef of the [[Vector]] type. It's declared in the vector.h file. It is mostly used with physics-related code.
== An Explanation : ==
''\..\src\public\mathlib\vector.h''
<source lang=cpp>
//-----------------------------------------------------------------------------
// AngularImpulse
//-----------------------------------------------------------------------------
// AngularImpulse are exponetial maps (an axis scaled by a "twist" angle in degrees)
typedef Vector AngularImpulse;
</source>


'''<code>AngularImpulse</code>''' is a [[W:typedef|typedef]] of <code>[[Vector]]</code> used to represent torque (angular rotation force). It is most often seen in the context of [[VPhysics]].


[[Category:Variables]]
[[Category:Variables]]
[[Category:Glossary]]
[[Category:English]]

Revision as of 11:56, 30 June 2011

Template:Otherlang2

AngularImpulse is a typedef of Vector used to represent torque (angular rotation force). It is most often seen in the context of VPhysics.