PointsD.dpr 705 B

12345678910111213141516171819202122232425
  1. (*
  2. Demo of the TGLPoints component.
  3. The component is specialized in rendering large numbers of points,
  4. with ability to adjust point style (from fast square point to smooth
  5. round points) and point parameters.
  6. The point parameters define how point size is adjusted with regard
  7. to eye-point distance (to make farther points smaller, see ARB_point_parameters
  8. for more details).
  9. The component is also suitable for particle systems, but offers less
  10. flexibility than the TGLParticleFX.
  11. *)
  12. program PointsD;
  13. uses
  14. Forms,
  15. fdPoints in 'fdPoints.pas' {FormPoints};
  16. {$R *.RES}
  17. begin
  18. Application.Initialize;
  19. Application.CreateForm(TFormPoints, FormPoints);
  20. Application.Run;
  21. end.