Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
canvas.c File Reference

Go to the source code of this file.

Data Structures

class  Canvas

Typedefs

typedef bool PIXEL
 Simple debug painting canvas with 0/1 pixel representation.

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.