Simple canvas commands

Game Editor comments and discussion.

Simple canvas commands

Postby Hblade » Tue Dec 20, 2011 4:12 am

These commands could probably help you do things a tad bit faster. very simple stuff :3
Code: Select all
void makeline(int X, int Y, int Width, int Height){moveto(X, Y);lineto(Width, Height);}
void erasepixel(int X, int Y) {setpen(0, 0, 0, 1, 1);putpixel(X, Y);}
void eraseline(int X, int Y, int Width, int Height){setpen(0, 0, 0, 1, 1);moveto(X,Y);lineto(Width,Height);}


makeline(x, y, width height); will draw a line at a location you pick without typing more commands to move it and draw it
erasepixel(x, y); will erase a pixel in your told-spot.
eraseline(X, Y, Width, Height); will erase a line, almost like erase pixel but uses lineto instead.
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Simple canvas commands

Postby SuperSonic » Tue Dec 20, 2011 4:32 am

Ooooh, neat :P
A tree never hits an automobile except in self-defence.

Want to use your joystick or controller with Game Editor? Check out my controller engine =D
User avatar
SuperSonic
 
Posts: 1443
Joined: Fri Sep 24, 2010 9:24 pm
Location: Anywhere
Score: 72 Give a positive score

Re: Simple canvas commands

Postby Hblade » Tue Dec 20, 2011 3:01 pm

ty xD
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Simple canvas commands

Postby SuperSonic » Tue Dec 20, 2011 3:04 pm

I was actually thinking about how to make an erase pixel function not long ago but I was just too lazy to do it XD
A tree never hits an automobile except in self-defence.

Want to use your joystick or controller with Game Editor? Check out my controller engine =D
User avatar
SuperSonic
 
Posts: 1443
Joined: Fri Sep 24, 2010 9:24 pm
Location: Anywhere
Score: 72 Give a positive score

Re: Simple canvas commands

Postby Hblade » Tue Dec 20, 2011 3:09 pm

xDD
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score


Return to GE - General

Who is online

Users browsing this forum: No registered users and 1 guest