BoxSphereD.dpr 319 B

123456789101112131415161718
  1. {
  2. SphereBoxIntersect Demo
  3. History:
  4. 29/01/07 - DaStr - Initial version (created by dikoe Kenguru)
  5. }
  6. program BoxSphereD;
  7. uses
  8. Forms,
  9. fBoxSphereD in 'fBoxSphereD.pas' {FormBoxSphere};
  10. {$R *.RES}
  11. begin
  12. Application.Initialize;
  13. Application.CreateForm(TFormBoxSphere, FormBoxSphere);
  14. Application.Run;
  15. end.