forum

Post your Artwork!

posted
Total Posts
2,353
show more
Kei
still wip and i think i won't finish it at all as i always do with every damn drawing

ryukuxu
Here.
She's Ruelly with Primo's resonance fusion from Summon Night5
Birdy
Akbar47

[ NAO ] wrote:

Akbar47 wrote:

Well, this is my first art~ アヤノ。。 XD
It looks super kawaii ヽ( ̄д ̄;)ノ
Is she from the Kagerou Project? She looks familiar somehow
Thank you 'w')/
Yes! she is Ayano from kagerou project.. XD
JMC
Bweh
That's pretty nice ^

Timorisu
meyling6
A little draw' for the night :3
tyrael6192
Kireii
Since I got inspired by you guys I decided to
dump my art here as well if you don't mind ;___;



also, yay first post!
tyrael6192
Birdy

tyrael6192 wrote:

kaua-e
Miyu
Wow can't even quote everyone's work is looking so good.
keep the good work guys~
Kunieda
Nonon Jakuzure(in nudist beach outfit)
done with one layer ;3;
DeletedUser_4041880
Because why not
Birdy
Primula_old
Pwahh, lots of good drawings here >w<

I should quit osu and go back to drawing.
This is the only recent thing I've done (and by recent I mean like.. 6 months ago >x <)

(I cropped out the head because it looked bad T^T)
Jlastino
I recently made a witchcraft works vector wp
Eve-Chan
Reunilu
I should just stop with this stuff because I'm too addicted to drawing these "gears". I don't even have experience in drawing seriously, so...

mathexpert
just feel like showing this off, because I'm so proud of it *sniff sniff*

It's basically some GUI I made in java with recursion and a bunch of math, for a school project:

the code, if you're interested
import java.awt.*;
public class Ribbons extends GameDriver {
public Ribbons(){
}
public void draw(Graphics2D win){
win.setColor(Color.BLACK);
win.fill(new Rectangle(1,1,3000,3000));
win.setColor(Color.MAGENTA);
recursion2(win,new Rectangle(50, 50, 300, 1),3*Math.PI,1);
win.setColor(Color.gray);
recursion1(win,new Rectangle(50, 50, 300, 1),4*Math.PI,1);
}
public void recursion1(Graphics2D win, Rectangle a, double z, int k){
win.draw(a);
int side = (int)Math.abs((Math.sin(z)*250));
if(z>0&&k<500){
Rectangle c = new Rectangle(k*5-side,(int)k*5+side-500,(int)Math.pow(side,.5),(int)(z*50));
recursion1(win, c,z-.05,k+1);
}
}
public void recursion2(Graphics2D win, Rectangle a, double z, int k){
win.draw(a);
int side = (int)Math.abs((Math.sin(z)*250));
if(z>0&&k<500){
Rectangle b = new Rectangle(k*5+side,k*5-side-130,(int)Math.pow(side,.5),(int)(z*50));
recursion2(win, b,z-.05,k+1);
}
}
}
Nub1
Flanster
Jlastino
Powerlevel wallpaper

SpajdeR
First post here. \o/ My Lelouch fan art. :3
DestinySonata
So I tried to challenge myself with these rules:
  1. Paint only
  2. Use of Pencil to draw only
I can't draw the faces well using Paint, so they have blank faces. They are colored though (didn't bother with the shadowing because screw doing that with paint).

H i s t o i r e
piruchan
My first post here.

Made this during exam out of boredom. I edit it a bit to make it more visible.

Here's the original.
HTTkeion
that's cute..
Jlastino
Uh...made this one using Assembly Language (.asm) for 8086



SPOILER
CURSOR MACRO X,Y
MOV AH,02
MOV BH,00
MOV DL,X
MOV DH,Y
INT 10H
ENDM

PAINT MACRO AMOUNT,COLOR

MOV AX,09dbH
MOV CX,AMOUNT
MOV BL,COLOR
INT 10H
ENDM

.MODEL SMALL
.STACK 64
.DATA
message1 db 'FLAPPY BIRD!$'
.CODE
main proc far
mov ax,@data
mov ds,ax
mov es,ax

MOV AH,00
MOV AL,03H
INT 10H

MOV AH,09
MOV BH,00
MOV AL,20H
MOV CX,2000
MOV BL,022H
INT 10H

CURSOR 36,4
PAINT 12,00H

CURSOR 32,5
PAINT 4 , 00H

CURSOR 36,5
PAINT 6, 0FH

CURSOR 42,5
PAINT 2,0

CURSOR 44,5
PAINT 4,0FH

CURSOR 48,5
PAINT 2, 00H

CURSOR 30,6
PAINT 2,00

CURSOR 32,6
PAINT 4,0FH

CURSOR 36,6
PAINT 4,0EH

CURSOR 40,6
PAINT 2,00H

CURSOR 42,6
PAINT 8,0FH

CURSOR 50,6
PAINT 2,00

CURSOR 26,7
PAINT 8,00

CURSOR 34,7
PAINT 6,0EH

CURSOR 40,7
PAINT 2,00H

CURSOR 42,7
PAINT 6,0FH

CURSOR 48,7
PAINT 2,0

CURSOR 50,7
PAINT 2,0FH

CURSOR 52,7
PAINT 2,00H

CURSOR 24,8
PAINT 2,00H

CURSOR 26,8
PAINT 8,0FH

CURSOR 34,8
PAINT 2,00H

CURSOR 36,8
PAINT 4,0EH

CURSOR 40,8
PAINT 2,00H

CURSOR 42,8
PAINT 6,0FH

CURSOR 48,8
PAINT 2,00H

CURSOR 50,8
PAINT 2,0FH

CURSOR 52,8
PAINT 2,00

CURSOR 24,9
PAINT 2,00H

CURSOR 26,9
PAINT 10,0FH

CURSOR 36,9
PAINT 2,00H

CURSOR 38,9
PAINT 4,0EH

CURSOR 42,9
PAINT 2,00H

CURSOR 44,9
PAINT 8,0FH

CURSOR 52,9
PAINT 2,00

CURSOR 24,10
PAINT 2,00

CURSOR 26,10
PAINT 2,0EH

CURSOR 28,10
PAINT 8,0FH

CURSOR 36,10
PAINT 2,0EH

CURSOR 38,10
PAINT 2,00

CURSOR 40,10
PAINT 6,0EH

CURSOR 46,10
PAINT 12,00H


CURSOR 26,11
PAINT 2,00

CURSOR 28,11
PAINT 6,0EH

CURSOR 34,11
PAINT 2,00H

CURSOR 36,11
PAINT 6,0EH

CURSOR 42,11
PAINT 2,00H

CURSOR 44,11
PAINT 12,0CH

CURSOR 56,11
PAINT 2,00H


CURSOR 28,12
PAINT 6,00

CURSOR 34,12
PAINT 6,06H

CURSOR 40,12
PAINT 2,0

CURSOR 42,12
PAINT 2,0CH

CURSOR 44,12
PAINT 12,0

CURSOR 28,13
PAINT 2,0

CURSOR 30,13
PAINT 12,06H

CURSOR 42,13
PAINT 2,0

CURSOR 44,13
PAINT 10,0CH

CURSOR 54,13
PAINT 2,0

CURSOR 30,14
PAINT 4,0


CURSOR 34,14
PAINT 10,06H

CURSOR 44,14
PAINT 10,00

CURSOR 34,15
PAINT 10,00



mov ah,10h
int 16h
cmp al,1bh
je quit
quit:
mov ah,4ch
int 21h

main endp
end main
Tsu chan
my artwork~ (i know its only one but i'm just back from my drawing haitus )
things i use ~
bamboo tablet and manga studio 5 EX
Birdy
Pilot S10
My Stuff



Now what if I changed the clocks to Osu! Circles and made the girl Pippi... =w=
Jlastino
RBRat3
Dont think I ever posted in here... what the hell why not :D

E14

MrSpajdeR wrote:

First post here. \o/ My Lelouch fan art. :3

Holy Shiiiiiiiiiii~~t!
the best fan art i ever saw :shock:
Indeed_old_1
Any LoL fans?
Jazz
Bandwagoning
and because there is a lack of 'Objection' fanarts for Ms. Natalia

Bweh
[ Pingu ]
hue, i can't draw. it's a random drawing, no specific person.

show more
Please sign in to reply.

New reply