Documentation issue to fix..
Opened this issue · 0 comments
krs-world commented
On this page:
https://bridgesuncc.github.io/doc/python-api/current/html/classbridges_1_1color_1_1_color.html
The examples for creating Color objects display like this:
Examples
>>> my_color = Color("red") >>> my_color.rgba (255, 0, 0, 1.0) >>> my_color = Color(r=255) >>> my_color.rgba (255, 0, 0, 1.0) >>> my_color = Color(255, 0, 0) >>> my_color.rgba (255, 0, 0, 1.0) >>> my_color = Color() >>> my_color.red = 255 >>> my_color.rgba (255, 0, 0, 1.0)