Materials
This example simplifies the Getting Started cube by using the Square class.
We can also use the Material class to set different materials for the part.
The Material class allows us to set the color and properties of the part. We can
set the color using the mat.set_diffuse_color
function, which accepts a color
name or using RGB values (e.g. mat.set_diffuse_colorRGB(255, 255, 255)
).
Actually, if you just want to change the color of a part you can also use
cube.paint('blue')
.