Digital Art Competition #3: Football

  • 613flavah
  • battlestar
  • Web Master
  • User avatar
  • Joined: Sep 08, 2004
  • Posts: 3291
  • Loc: Hurricane...
  • Status: Offline

Post March 28th, 2006, 6:43 am

Howdy!

It's time for the next found of this newly started competition. Last comp's winner picked the topic and his choice is set to FOOTBALL (the european version aka soccer for our north american counterparts).

Rules: This is strictly a digital art contest! Only one submission per user will be allowed.

You MUST have made the image yourself.

Max size dimension: 640px (including border)
Max file size: 150kb
File name: Please name your entry the same as your username (or as close to as possible)
(Please ensure your entry meets the above before entering your image)

Length: Competition closes Tuesday April 11, 2006 at 9:00 AM EST. Voting lasts five days after close of competition.

The winner needs to PM me the topic for the next competition (please try to think up topics while voting goes on, in case you win).
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post March 28th, 2006, 6:43 am

  • grinch2171
  • Moderator
  • Genius
  • User avatar
  • Joined: Feb 11, 2004
  • Posts: 6744
  • Loc: Martinsburg, WV
  • Status: Offline

Post March 28th, 2006, 6:44 am

I've got MSPaint all fired up for this one :p
‎"Be polite, be professional, but have a plan to kill everybody you meet." Maj. Gen. James Mattis
  • SB
  • Moderator
  • Genius
  • User avatar
  • Joined: Nov 16, 2004
  • Posts: 8685
  • Loc: Aberdeen, Scotland
  • Status: Offline

Post March 28th, 2006, 8:00 am

:lol:

I am going to have a go at doing something later on today. Great topic choice though!
  • musik
  • Legend
  • Super Moderator
  • User avatar
  • Joined: Aug 06, 2003
  • Posts: 6892
  • Loc: up a tree
  • Status: Offline

Post March 28th, 2006, 9:12 am

Can the word football be interpreted? Australian rules is football too :D
Opportunity To Do - Changing the lives of children around the world.
Rose.id.au - Doing Life.
  • SB
  • Moderator
  • Genius
  • User avatar
  • Joined: Nov 16, 2004
  • Posts: 8685
  • Loc: Aberdeen, Scotland
  • Status: Offline

Post March 28th, 2006, 9:15 am

Heres my entry. Just a couple minute job...

Image
  • 613flavah
  • battlestar
  • Web Master
  • User avatar
  • Joined: Sep 08, 2004
  • Posts: 3291
  • Loc: Hurricane...
  • Status: Offline

Post March 28th, 2006, 9:42 am

musik - I don't see why not. Give it a go!

Nice one SB! you're always so quick :D
"bless us and love us so we can dance and truly be free"
- Anonymous
  • SB
  • Moderator
  • Genius
  • User avatar
  • Joined: Nov 16, 2004
  • Posts: 8685
  • Loc: Aberdeen, Scotland
  • Status: Offline

Post March 28th, 2006, 10:49 am

I didn't break any rules this time did i? :lol:

My entry still looks scrappy. Is it ok if i make some changes to make it look tidier until 9am EST on April 11th?
  • 613flavah
  • battlestar
  • Web Master
  • User avatar
  • Joined: Sep 08, 2004
  • Posts: 3291
  • Loc: Hurricane...
  • Status: Offline

Post March 28th, 2006, 12:15 pm

yup, just use the same image path and overwrite the one you already have.
"bless us and love us so we can dance and truly be free"
- Anonymous
  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • User avatar
  • Joined: May 28, 2003
  • Posts: 23407
  • Loc: Woodbridge VA
  • Status: Offline

Post March 28th, 2006, 7:26 pm

I got kind of excited today when I saw this, because for the last couple of weeks I've been playing around with POVRay tutorials and learning how to use it. I figured this would be perfect for it. I already knew what I wanted to do. So I spent over half the day trying to figure out how to put the typical hexigon texture you normally find on a soccer ball. I came close, but not quite perfect, however a quick run through Google images of soccer balls seeing the variety of designs and colors out there, I decided mine was just as unique as the best of them.

So OZZU gets to view my first ever POVRay render titled: "Spotlight on Football"

Image

I made wallpapers if any soccer fans like it well enough to want them
1280x1024
1024x768
800x600


For those unfamiliar with ray tracing, what so cool about that image is there isn't an image in it. POVRay works by writing code, and the code generates the image. The spolight lighting effect was added afterwards in Photoshop. For those interested in learning more, POVRay (Persistance of vision ray tracing) can be downloaded for free at http://www.povray.org

You can copy the code below and run the render and generate exactly the same image (minus the post lighting edit)

Code: [ Select ]
// POV-Ray version 3.6 Football "atno.pov"
// Created by ATNO 2006




#version 3.6;
global_settings { assumed_gamma 1.0 }

#include "colors.inc"
#include "textures.inc"
// camera
#declare Cam0 = camera {angle 120
            location <0.0 , 1.0 ,-3.0>
            look_at  <0.0 , 2.0 , 0.0>}
camera{Cam0}
// sun
light_source{<1500,2500,-2500> color White}

// sky
plane{<0,1,0>,1 hollow
    texture{
    pigment{ bozo turbulence 1
     color_map {
      [0.00 rgb <0.2, 0.2, 2>*0.2]
      [0.50 rgb <0.2, 0.2, 2>*0.6]
      [0.90 rgb <1,1,1>]           
      [0.45 rgb <0.25,0.25,0.25>]
      [1.0 rgb <0.5,0.5,0.5>]}
     scale<1,1,1.5>*2.5
     translate<4.0,0,-1>
     }// end of pigment
    finish {ambient 1 diffuse 0}
    }// end of texture
    scale 5000
   }// end of plane

// fog
  fog { fog_type  2
   distance  50
   color   White 
   fog_offset 0.1
   fog_alt  1.5
   turbulence 1.8
  }
 
  
// ground
plane { <0,2,0>, 0
    texture{ pigment{color rgb<0.35,0.65,0.0>*0.8}
         normal {bumps 0.75 scale 0.015}
         finish {ambient 0.1 diffuse 0.8}
        } // end of texture
   } // end of plane


// Soccer Ball
sphere {<0,.3,.5>,0.4 scale <1.5,1.5,1.5> rotate<0,0,0> translate<0,1,0>
  pigment  
 { hexagon rgb <0,0,0>, rgb <1,1,1>, rgb <1,0.8,0>
  scale .09
 }
 finish {phong .3 diffuse .5 ambient .4 reflection 0}
 //translate <0,0,0>
 }
    
//------------------------------------------------------------------------
  1. // POV-Ray version 3.6 Football "atno.pov"
  2. // Created by ATNO 2006
  3. #version 3.6;
  4. global_settings { assumed_gamma 1.0 }
  5. #include "colors.inc"
  6. #include "textures.inc"
  7. // camera
  8. #declare Cam0 = camera {angle 120
  9.             location <0.0 , 1.0 ,-3.0>
  10.             look_at  <0.0 , 2.0 , 0.0>}
  11. camera{Cam0}
  12. // sun
  13. light_source{<1500,2500,-2500> color White}
  14. // sky
  15. plane{<0,1,0>,1 hollow
  16.     texture{
  17.     pigment{ bozo turbulence 1
  18.      color_map {
  19.       [0.00 rgb <0.2, 0.2, 2>*0.2]
  20.       [0.50 rgb <0.2, 0.2, 2>*0.6]
  21.       [0.90 rgb <1,1,1>]           
  22.       [0.45 rgb <0.25,0.25,0.25>]
  23.       [1.0 rgb <0.5,0.5,0.5>]}
  24.      scale<1,1,1.5>*2.5
  25.      translate<4.0,0,-1>
  26.      }// end of pigment
  27.     finish {ambient 1 diffuse 0}
  28.     }// end of texture
  29.     scale 5000
  30.    }// end of plane
  31. // fog
  32.   fog { fog_type  2
  33.    distance  50
  34.    color   White 
  35.    fog_offset 0.1
  36.    fog_alt  1.5
  37.    turbulence 1.8
  38.   }
  39.  
  40.   
  41. // ground
  42. plane { <0,2,0>, 0
  43.     texture{ pigment{color rgb<0.35,0.65,0.0>*0.8}
  44.          normal {bumps 0.75 scale 0.015}
  45.          finish {ambient 0.1 diffuse 0.8}
  46.         } // end of texture
  47.    } // end of plane
  48. // Soccer Ball
  49. sphere {<0,.3,.5>,0.4 scale <1.5,1.5,1.5> rotate<0,0,0> translate<0,1,0>
  50.   pigment  
  51.  { hexagon rgb <0,0,0>, rgb <1,1,1>, rgb <1,0.8,0>
  52.   scale .09
  53.  }
  54.  finish {phong .3 diffuse .5 ambient .4 reflection 0}
  55.  //translate <0,0,0>
  56.  }
  57.     
  58. //------------------------------------------------------------------------
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.
  • SpooF
  • ٩๏̯͡๏۶
  • Bronze Member
  • User avatar
  • Joined: May 22, 2004
  • Posts: 3415
  • Loc: Richland, WA
  • Status: Offline

Post March 28th, 2006, 8:57 pm

Image

Its a tad bit wild lol :twisted:
#define NULL (::rand() % 2)
  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • User avatar
  • Joined: May 28, 2003
  • Posts: 23407
  • Loc: Woodbridge VA
  • Status: Offline

Post March 29th, 2006, 6:34 am

Definitely wild, but what a hot concept!
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.
  • 613flavah
  • battlestar
  • Web Master
  • User avatar
  • Joined: Sep 08, 2004
  • Posts: 3291
  • Loc: Hurricane...
  • Status: Offline

Post March 29th, 2006, 6:42 am

Wow this theme is really burning up with awesome entries!
"bless us and love us so we can dance and truly be free"
- Anonymous
  • Tom the Great
  • Expert
  • Expert
  • User avatar
  • Joined: Feb 20, 2004
  • Posts: 727
  • Loc: B.C., Canada
  • Status: Offline

Post March 31st, 2006, 11:30 am

So are you allowed to use stock photos for creating the image?
  • musik
  • Legend
  • Super Moderator
  • User avatar
  • Joined: Aug 06, 2003
  • Posts: 6892
  • Loc: up a tree
  • Status: Offline

Post March 31st, 2006, 12:56 pm

Here is my entry! Good ole' Aussie Rules Football Image

Image
Opportunity To Do - Changing the lives of children around the world.
Rose.id.au - Doing Life.
  • musik
  • Legend
  • Super Moderator
  • User avatar
  • Joined: Aug 06, 2003
  • Posts: 6892
  • Loc: up a tree
  • Status: Offline

Post March 31st, 2006, 1:00 pm

SB wrote:
I didn't break any rules this time did i? :lol:

My entry still looks scrappy. Is it ok if i make some changes to make it look tidier until 9am EST on April 11th?



It would be good if you can just post your entry and leave it like it is. I am uploading the images as they are entered so we don't miss any out again. So if you want to make any changes this weekend would be a good time to do it and I will change your link over in a few days.
Opportunity To Do - Changing the lives of children around the world.
Rose.id.au - Doing Life.
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post March 31st, 2006, 1:00 pm

Post Information

  • Total Posts in this topic: 36 posts
  • Users browsing this forum: No registered users and 19 guests
  • You cannot post new topics in this forum
  • You cannot reply to topics in this forum
  • You cannot edit your posts in this forum
  • You cannot delete your posts in this forum
  • You cannot post attachments in this forum
 
cron
 

© 2011 Unmelted, LLC. Ozzu® is a registered trademark of Unmelted, LLC.