X-Git-Url: http://git.tomasm.cz/imago.git/blobdiff_plain/ecc0929cb0e011db2825e79d7495d7ef7b113e1e..0acee7985cbb654d6fa50cb845c7c03ce6bb8a1d:/imago_pack/geometry.py?ds=inline diff --git a/imago_pack/geometry.py b/imago_pack/geometry.py index 23f4095..60e679b 100644 --- a/imago_pack/geometry.py +++ b/imago_pack/geometry.py @@ -1,8 +1,10 @@ -"""Imago geometry module""" +"""Imago geometry module.""" 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