CenteringD.dpr 411 B

123456789101112131415161718
  1. {: Illustrates the effects of AutoCentering for FreeForms.
  2. The same mesh is loaded three times and centered with different options
  3. (by default, the polyhedron is not centered in its mesh).
  4. }
  5. program CenteringD;
  6. uses
  7. Forms,
  8. fCenteringD in 'fCenteringD.pas' {FormCentering};
  9. {$R *.RES}
  10. begin
  11. Application.Initialize;
  12. Application.CreateForm(TFormCentering, FormCentering);
  13. Application.Run;
  14. end.