fix bug in color conversion
[imago.git] / imago_pack / geometry.py
index 23f4095..60e679b 100644 (file)
@@ -1,8 +1,10 @@
-"""Imago geometry module"""
+"""Imago geometry module."""
 
 from math import sin, cos, atan, pi
 
 class V(object):
 
 from math import sin, cos, atan, pi
 
 class V(object):
+    """Class for vector manipulation."""
+
     def __init__(self, x, y):
         self.x = x
         self.y = y
     def __init__(self, x, y):
         self.x = x
         self.y = y