Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
canvas.c File Reference

Go to the source code of this file.

Data Structures

class  Canvas
 

Typedefs

typedef bool PIXEL
 

Typedef Documentation

◆ PIXEL

typedef bool 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.