De/AngularImpulse: Difference between revisions

From Valve Developer Community
< De
Jump to navigation Jump to search
(Created page with '{{otherlang2 |en=AngularImpulse }} {{stub}} == AngularImpulse == Ein angular impulse ist eine typedef des Vector-Typen. Es wird in der Datei vector.h deklariert.…')
 
m (Multipage removal)
 
(9 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{otherlang2
{{LanguageBar}}
|en=AngularImpulse
 
{{Multiple issues|
{{Underlinked|date=January 2024}}
{{Orphan|date=January 2024}}
{{stub}}
}}
}}
{{stub}}


== AngularImpulse ==
== AngularImpulse ==


Ein angular impulse ist eine typedef des [[Vector:de|Vector]]-Typen. Es wird in der Datei vector.h deklariert. Es wird am meisten im mit der Physik zusammenhängenden Code verwendet.
Ein AngularImpulse ist eine typedef der {{L|Vector}} Klasse. Sie wird in der Datei vector.h deklariert. Weiterhin wird sie hauptsächlich in Code verwendet, der die Physiksimulation anspricht.
 
== Ein Beispiel: ==


== Definition ==


''\..\src\public\mathlib\vector.h''
''\..\src\public\mathlib\vector.h''
Line 17: Line 18:
// AngularImpulse
// AngularImpulse
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// AngularImpulse sind exponentielle Maps (eine Axe skaliert Winkel in Grad)
// AngularImpulse are exponetial maps (an axis scaled by a "twist" angle in degrees)
typedef Vector AngularImpulse;
typedef Vector AngularImpulse;
</source>
</source>


 
{{ACategory|Variables}}
[[Category:Variables:de]]
[[Category:Glossary:de]]
[[Category:German]]

Latest revision as of 04:33, 12 July 2024

English (en)Deutsch (de)Translate (Translate)
Wikipedia - Letter.png
This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these template messages)
Underlinked - Logo.png
This article needs more Wikipedia icon links to other articles to help Wikipedia icon integrate it into the encyclopedia. Please help improve this article by adding links Wikipedia icon that are relevant to the context within the existing text.
January 2024

Stub

This article or section is a stub. You can help by expanding it.

AngularImpulse

Ein AngularImpulse ist eine typedef der Vector(en) Klasse. Sie wird in der Datei vector.h deklariert. Weiterhin wird sie hauptsächlich in Code verwendet, der die Physiksimulation anspricht.

Definition

\..\src\public\mathlib\vector.h

//-----------------------------------------------------------------------------
// AngularImpulse
//-----------------------------------------------------------------------------
// AngularImpulse are exponetial maps (an axis scaled by a "twist" angle in degrees)
typedef Vector AngularImpulse;