timedata-org / old-timedata

Time arts data - high-performance color processing in C++ and Python.
7 stars 3 forks source link

A `Color` with one or more negative components displays as its positive color. #11

Closed rec closed 8 years ago

rec commented 8 years ago
>>> tdsp.Color(1.0, -1.0, 0), tdsp.Color(1.0, 1.0, 0)
(tdsp.Color(yellow), tdsp.Color(yellow))

>>> tdsp.Color(1.0, -1.0, 0) == tdsp.Color(1.0, 1.0, 0)
False

Gotta figure out a clever way to handle that.... :-D

rec commented 8 years ago

Done!