Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

17 řádky
292 B

  1. unit aiVector3D;
  2. interface
  3. type TaiVector3D = packed record
  4. x, y, z: single;
  5. end;
  6. type PaiVector3D = ^TaiVector3D;
  7. type PaiVector3DArray = array [0..0] of PaiVector3D;
  8. type TaiVector3DArray = array[0..0] of TaiVector3D;
  9. type PTaiVector3DArray = ^TaiVector3DArray;
  10. implementation
  11. end.