13 lines
165 B
Plaintext
13 lines
165 B
Plaintext
|
unit aiQuaternion;
|
||
|
|
||
|
interface
|
||
|
|
||
|
type TaiQuaternion = packed record
|
||
|
w, x, y, z: single;
|
||
|
end;
|
||
|
type PaiQuaternion = ^TaiQuaternion;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
end.
|