File: aiQuaternion.pas

package info (click to toggle)
assimp 3.2~dfsg-3~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 12,348 kB
  • sloc: cpp: 108,331; ansic: 4,704; java: 2,036; python: 1,941; pascal: 341; xml: 146; sh: 134; objc: 122; makefile: 47
file content (12 lines) | stat: -rw-r--r-- 165 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
unit aiQuaternion;

interface

type TaiQuaternion = packed record
   w, x, y, z: single;
end;
type PaiQuaternion = ^TaiQuaternion;

implementation

end.