Lights

Lighting is very important in a 3D world; it could range from simple general lighting (as used in our example) to multiple lights angled from different directions providing different strengths and colors. How lights interact with objects and the effects they produce will be determined by the textures and shaders used to render them.

Lights are defined by their direction, their color and brightness, and also by an ambient light to define the background (non-directional) light. The Light class is defined as follows:

class pi3d.Light (lightpos=(10, -10, 20), 
                       lightcol=(1.0, 1.0, 1.0), 
                       lightamb=(0.1, 0.1, 0.2)) 
By default, the display will define a light that has the following properties:
  • lightpos=(10, -10, 20)This is a light that shines ...

Get Raspberry Pi 3 Cookbook for Python Programmers - Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.