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 regels
230 B

  1. unit aiMatrix4x4;
  2. interface
  3. type TaiMatrix4x4 = packed record
  4. a1, a2, a3, a4: single;
  5. b1, b2, b3, b4: single;
  6. c1, c2, c3, c4: single;
  7. d1, d2, d3, d4: single;
  8. end;
  9. PaiMatrix4x4 = ^TaiMatrix4x4;
  10. implementation
  11. end.