Author Topic: How do you make a checkerboard??  (Read 332 times)

Offline F4UDOA

  • Silver Member
  • ****
  • Posts: 1731
      • http://mywebpages.comcast.net/markw4/index.html
How do you make a checkerboard??
« on: October 09, 2002, 12:05:37 PM »
Trying to do a F4U-1D with a chekerboard cowl and rudder.

What software should I use and how to you make a checkerboard?

I have no clue.

Offline BenDover

  • Platinum Member
  • ******
  • Posts: 5803
How do you make a checkerboard??
« Reply #1 on: October 09, 2002, 12:47:25 PM »
just draw a checker board?

Offline Voss

  • Silver Member
  • ****
  • Posts: 1261
      • http://www.bombardieraerospace.com
How do you make a checkerboard??
« Reply #2 on: October 09, 2002, 02:40:27 PM »
You can get Pov-Ray at http://www.povray.org

Checker is a standard texture for pov, and to create it is very easy. The following code will create a plane in front of the camera that is black and white checker board.

Note: I used a high diffuse setting so the white color would appear very white.

plane { z,5 texture { pigment { checker color rgb 1, color rgb 0 }
   finish { ambient 0 diffuse 3 } } }

camera { location <0,0,-5> direction z look_at 0 }
light_source { <-350,350,-350> color rgb 1 shadowless }
« Last Edit: October 09, 2002, 02:43:10 PM by Voss »

Offline Voss

  • Silver Member
  • ****
  • Posts: 1261
      • http://www.bombardieraerospace.com
How do you make a checkerboard??
« Reply #3 on: October 09, 2002, 04:44:15 PM »
And, red and yellow checkers with a simple change of code... (note smaller diffuse value).

plane { z,5 texture { pigment { checker color rgb <1,0,0>, color rgb <1,1,0> }
   finish { ambient 0 diffuse 2 } } }

camera { location <0,0,-5> direction z look_at 0 }
light_source { <-350,350,-350> color rgb 1 shadowless }

Offline F4UDOA

  • Silver Member
  • ****
  • Posts: 1731
      • http://mywebpages.comcast.net/markw4/index.html
How do you make a checkerboard??
« Reply #4 on: October 10, 2002, 02:43:05 PM »
Voss,

I have no idea what your talking about.

However That is a very nice checker board. I am using software called Gimp. Maybe i can cut and paste it.

Frankly I should try "Graphics for Dummies" or something. I am a computer proffessional but not a Graphics person by any means.

If any of what you just said translates into english that would be great.

Thanks Agin.

Offline pokie

  • Silver Member
  • ****
  • Posts: 841
      • http://s7.eastlink.ca/~tscott
How do you make a checkerboard??
« Reply #5 on: October 10, 2002, 03:51:29 PM »
ROTFLOL :) :) :)

Quote
Originally posted by F4UDOA
Voss,

I have no idea what your talking about. .........

If any of what you just said translates into english that would be great.

Thanks Agin.


Sorry F4UDOA, I just split my side when I was reading this.

Pokie

Offline Voss

  • Silver Member
  • ****
  • Posts: 1261
      • http://www.bombardieraerospace.com
How do you make a checkerboard??
« Reply #6 on: October 10, 2002, 04:06:19 PM »
Hmm, then I suppose we won't be talking about perturbations of random turbulence in an iso-surface for tiling purposes, then?

Seriously, though, if you download Pov-Ray it has a very good help file that is included. I've been using this software for too long, and it can do anything. It takes some learning, but it's worth it.