12345678910111213141516171819202122 |
- {: Demo for using the Outline and the Hiddenline shaders.
- The HiddenLine shader provides some kind of 'technical drawing' rendering
- styles. You can change the settings for front lines and back lines to get
- various looks.
- The Outline shader is useful for displaying objects as 'selected' or for
- toon-style shading.
- }
- program LiningShaders;
- uses
- Forms,
- fLiningShader in 'fLiningShader.pas' {FormLiningShader};
- {$R *.res}
- begin
- Application.Initialize;
- Application.CreateForm(TFormLiningShader, FormLiningShader);
- Application.Run;
- end.
|