Thread: Colors
View Single Post
  #4  
Old 07-31-2007, 02:31 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

Vizard defines some common color values. Here are the names and values:
Code:
WHITE	= (1,1,1)
BLACK	= (0,0,0)
GRAY	= (0.5,0.5,0.5)
RED		= (1,0,0)
GREEN	= (0,1,0)
BLUE	= (0,0,1)
YELLOW	= (1,1,0)
ORANGE	= (1,0.5,0)
PURPLE	= (0.5,0,0.5)
SKYBLUE	= (0.5,0.5,1)
If you need another color then you will need to define it yourself.
Reply With Quote