Poll

What are your artistic skills?

Visual Arts (painting, drawing)
56 (29.8%)
Musical Arts (writing songs, playing an instrument)
44 (23.4%)
Literature Arts (creative writing, stories)
28 (14.9%)
Digital Arts (programming, assembly)
41 (21.8%)
I have no artistic skills because I play Blockland
19 (10.1%)

Total Members Voted: 125

Author Topic: What are your artistic skills?  (Read 5616 times)

sketching is one of my few better arts

unlike computer art: http://imgur.com/AJD52eP


im also aiming to be a Computer Programmer

Literature. I can literally make up a better story than all of the EA games if they actually put good writers on it. Well, besides maybe Mass Effect.

I suck at everything motor-skills related. I can't really draw a good picture, I usually just end up doing something with stick figures.

I've been working on a few simple programs to pass the time.  Nothing much.

One of them is a 2D circle art generator.  Generates a circle in a random location, size, and color.  Here are some pictures.




Makes a really cool glitchy thing too when you resize the window (as I didn't update the frame) :)


Code for curious

Quote
import java.awt.Color;
import java.awt.Graphics;
import javax.swing.JFrame;


public class Main extends JFrame{
   
   int drawAmount = 0;

   public Main(){
      setSize(1000,1000);
      setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      setLocationRelativeTo(null);
      setVisible(true);
   }

   public static void main(String args[]){
      new Main();
   }

   public void paint(Graphics g){
      
      while(drawAmount <= 2000){

         System.out.println("Generating");
         
         int randX = (int) ((Math.random() * (1000 - -100)) + -100);
         int randY = (int) ((Math.random() * (1000 - -100)) + -100);
         int size = (int) ((Math.random() * (200 - 100)) + 100);
         
         int red = (int) ((Math.random() * (255 - 0)) + 0);
         int green = (int) ((Math.random() * (255 - 0)) + 0);
         int blue = (int) ((Math.random() * (255 - 0)) + 0);

         Color color = new Color(red,green,blue);

         
         g.setColor(color);
         g.fillOval(randX, randY, size, size);
         
         
         drawAmount ++;
      }
   }
}


I'd like to say lit and digital but I have no exceptional experiences in either

Photography, drawing, sculpting (and others related, like kitbashing/engraving/etc), painting"

Sculpture


Sketching/sculpting comparison

Sketching


Painting/minor kitbashing


I feel like this should be in creativity.  I feel like this is an attention whore post but whatever, thought I'd make sure I include everything I do.

I love to do model aircraft. I havent done it in a while. Its tricky to paint them then glue them together just right... I mean the whole time you are breathing in the fumes of containers with skulls and crossbones on them...


I love to do model aircraft. I havent done it in a while. Its tricky to paint them then glue them together just right... I mean the whole time you are breathing in the fumes of containers with skulls and crossbones on them...
do you also do ships in a bottle

I love playing the violin, but it sucks to be a 2nd violin in orchestra sometimes