You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
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.