Updated the CadQuery library for the removal of the hash function.

This commit is contained in:
Jeremy Mack Wright 2015-10-23 17:33:22 -04:00
parent 70d37e4e50
commit cbe50efeab

View File

@ -156,9 +156,6 @@ class Vector(object):
def projectToPlane(self):
raise NotImplementedError("Have not needed this yet, but FreeCAD supports it!")
def __hash__(self):
return self.wrapped.__hash__()
def __add__(self, v):
return self.add(v)