you are right. I am doing a java paint program for uni at the moment and need to add ann airbrush but its hard. and the thing with programming is you will have to find out what the code does for yourself. BUt i totally agree with you. Coz by coying code all you doing is deceiving yourself and when it comes to getting a programming job u screwed coz uve used other peoples code all your life.
good tutorial, but ill tell you its far from a real paint.... i gave my final work at college yesterday and it was about 2000 lines of code. Its big and looks like a real paint almost.
Works like a charm here. Thanks.
Cultuz 2 weeks ago
I can't open the compile one. :( Help!
TheClubPenguinlvr 1 year ago
michael jackson - billie jean
aleksis0 2 years ago
can someone send me the code if they have it working?
moderndrummer717 2 years ago
You need to explain what is going on. It doesn't help anyone learn Java to just throw a code at them and tell them to compile it.
SAGEmovieproductions 2 years ago
you are right. I am doing a java paint program for uni at the moment and need to add ann airbrush but its hard. and the thing with programming is you will have to find out what the code does for yourself. BUt i totally agree with you. Coz by coying code all you doing is deceiving yourself and when it comes to getting a programming job u screwed coz uve used other peoples code all your life.
Peace = )
karnobatliataa 1 year ago 2
lol
Flurry315 2 years ago
WHOS SINGING THIS SONG? OMG IT ROCKS
Doggolainen 2 years ago
michael jackson who else?
coolsro2 2 years ago
Awesome idk if its gonna work hope so LOL
edivt 2 years ago
pathetic
dysisti 2 years ago
rip mj
ToeShooters 2 years ago
aww crap i got compile errors now it gonna take some time to sort out lol oh well i suppose it would be good
iia33ii 2 years ago
good tutorial, but ill tell you its far from a real paint.... i gave my final work at college yesterday and it was about 2000 lines of code. Its big and looks like a real paint almost.
shibii 2 years ago
nice music
Persianlife 2 years ago
Thanks for the tutorial
Chriseclarke 3 years ago
wheres the method definition for createimage() you call it but the method is not defined anywhere?
stedav 3 years ago
cant see a class file... o.0
xXZarlachXx 3 years ago
couldnt you just paste the codes in description!
xXZarlachXx 3 years ago 4
for me it doesn't create the "Brush1.class"
C0nc3pt94 3 years ago
me niver
MachinemaRocks 2 years ago
Good times! I did this in my Java class when I was in the 11th grade.
DJBrokenHigh 3 years ago
Could you post the whole sourcecode? Would make it easier
thenicelordj 3 years ago
Are you sure than you did the alow part
cheesycheesenugget
JavaAntiOne 3 years ago
i know i posted it a while ago but my problem was that i didnt have a compiler
cheesycheesenugget 3 years ago
Hmmmmm,i think you have made something wrong i will see what i can do.
JavaAntiOne 3 years ago
all i get when i open the html is a box with a paper and an x in the top left corner
cheesycheesenugget 3 years ago
Are you sure than you have make the alow part.cheesycheesenugget
JavaAntiOne 3 years ago
yey
IcetoMaker 3 years ago
that is not a comment im sorry, but i will remove that
JavaAntiOne 3 years ago
? ,
JavaAntiOne 3 years ago
public void update( Graphics g ){ g.drawImage( backbuffer, 0, 0, this); }
fighterlegend 3 years ago
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class Brush1 extends Applet implements MouseMotionListener{ int width, height; Image backbufferl Graphics backg; public void init(){ width = getSize().width; height = getSize().height; backbuffer = createImage( width, height);
fighterlegend 3 years ago