File: aiVector2D.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 (13 lines) | stat: -rw-r--r-- 153 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
unit aiVector2D;

interface

type TaiVector2D = packed record
   x, y: single;
end;
type PaiVector2D = ^TaiVector2D;


implementation

end.