Thema
:
Delphi
Vignette effect
Einzelnen Beitrag anzeigen
sx2008
Registriert seit: 16. Feb 2008
Ort: Baden-Württemberg
2.332 Beiträge
Delphi 2007 Professional
#
13
AW: Vignette effect
19. Sep 2010, 00:28
zusammenfalten
·
markieren
Delphi-Quellcode:
function
CalcVignetteBrightness(X, Y: Single): Single;
var
distance : Single;
inner_radius, outer_radius, : Single;
begin
inner_radius := 50;
outer_radius := 150;
x := x * 0.75;
// <= try this
// calculate the distance from the origin (center of the image)
distance := SQRT(SQR(x) + SQR(Y));
Zitat
sx2008
Öffentliches Profil ansehen
Mehr Beiträge von sx2008 finden