DayZ 1.24
Loading...
Searching...
No Matches
Canvas.c File Reference

Go to the source code of this file.

Classes

class  Canvas
 

Typedefs

typedef bool PIXEL
 

Typedef Documentation

◆ PIXEL

Simple debug painting canvas with 0/1 pixel representation. Usage: Canvas c = new Canvas(100,100); for(int i = 0; i < 100;i++) { float val = i/100; float y = Easing.EaseInOutExpo(val); c.DrawPixel(i,y*100); } c.SaveToFile("output");

Definition at line 14 of file Canvas.c.