diff options
| author | Raymond Hogenson <rayhogenson@openmailbox.org> | 2016-09-27 23:38:09 -0400 |
|---|---|---|
| committer | Raymond Hogenson <rayhogenson@openmailbox.org> | 2016-09-27 23:38:09 -0400 |
| commit | 7d0c89c9b7fd9789b3331dee7c785da6b37ccd85 (patch) | |
| tree | d88e6345673ea8da9c3b1281c0948fdb8ea0fd35 /color.py | |
| parent | ed0c631003b556e2e84f21bf4ebbf03891763641 (diff) | |
| download | bridge-7d0c89c9b7fd9789b3331dee7c785da6b37ccd85.tar.zst | |
Fix many syntax errors and typos
Diffstat (limited to 'color.py')
| -rw-r--r-- | color.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -37,6 +37,9 @@ class Vector(object): """Return self * 1 / scalar.""" return self * (1 / scalar) + def __eq__(self, other): + return self.components == other.components + class HSV(Vector): """HSV 3-vector.""" |
