def __init__(self, pnt, other_shapes): pnt = CheckGeom.to_point(pnt) if not pnt: raise TypeError('Invalid point type provided.') v = Vertex.by_point(pnt) super(DistancePointToShapes, self).__init__(v, other_shapes)
def __init__(self, pnt): self._v = Vertex.by_point(pnt)