Lines Matching refs:colour
58 def __init__(self, pos, colour, casts_shadows): argument
60 self.colour = colour
65 def __init__(self, diffuse, specular, spec_idx, reflect, transp, colour): argument
71 self.colour = colour
74 def dull(colour): argument
75 return Surface(0.7, 0.0, 1, 0.0, 0.0, colour * 0.6)
78 def shiny(colour): argument
79 return Surface(0.2, 0.9, 32, 0.8, 0.0, colour * 0.3)
82 def transparent(colour): argument
83 return Surface(0.2, 0.9, 32, 0.0, 0.8, colour * 0.3)
169 col = surf.colour * scene.ambient
197 col = scene.light.colour