Py5Shape.set_shininess()#
Sets the amount of gloss a Py5Shape
object’s surface has.
Examples#
def setup():
py5.size(100, 100, py5.P3D)
py5.background(0)
py5.ambient_light(102, 102, 102)
py5.light_specular(204, 204, 204)
py5.directional_light(150, 150, 150, .5, 0, -1)
py5.no_stroke()
s = py5.create_shape(py5.SPHERE, 20)
s.set_shininess(0.2)
py5.shape(s, 50, 25)
s.set_shininess(5)
py5.shape(s, 50, 75)
Description#
Sets the amount of gloss a Py5Shape
object’s surface has. This is part of the material properties of a Py5Shape
object.
The shine
parameter can be applied to the entire Py5Shape
object or to a single vertex.
This method can only be used for a complete Py5Shape
object, and never within a Py5Shape.begin_shape() and Py5Shape.end_shape() pair.
Underlying Processing method: PShape.setShininess
Signatures#
set_shininess(
index: int, # vertex index
shine: float, # degree of shininess
/,
) -> None
set_shininess(
shine: float, # degree of shininess
/,
) -> None
Updated on March 06, 2023 02:49:26am UTC