pascalabcnet/InstallerSamples/Graphics/GraphWPF/DrawPixels.pas

9 lines
209 B
ObjectPascal
Raw Permalink Normal View History

2019-05-16 15:42:16 +03:00
uses GraphWPF;
begin
Window.SetSize(640, 480);
var m := MatrGen(640,480,(x,y)->RGB(2 * x - y, x - 3 * y, x + y));
MillisecondsDelta.Println;
DrawPixels(0,0,m);
MillisecondsDelta.Println;
end.