mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-02 20:10:32 +00:00
12 lines
153 B
ObjectPascal
12 lines
153 B
ObjectPascal
unit aiQuaternion;
|
|
|
|
interface
|
|
|
|
type TaiQuaternion = packed record
|
|
w, x, y, z: single;
|
|
end;
|
|
type PaiQuaternion = ^TaiQuaternion;
|
|
|
|
implementation
|
|
|
|
end.
|