From cbe50efeab69589c715b0efa38e23a8390567598 Mon Sep 17 00:00:00 2001 From: Jeremy Mack Wright Date: Fri, 23 Oct 2015 17:33:22 -0400 Subject: [PATCH] Updated the CadQuery library for the removal of the hash function. --- CadQuery/Libs/cadquery/freecad_impl/geom.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/CadQuery/Libs/cadquery/freecad_impl/geom.py b/CadQuery/Libs/cadquery/freecad_impl/geom.py index f26f121..37ea922 100644 --- a/CadQuery/Libs/cadquery/freecad_impl/geom.py +++ b/CadQuery/Libs/cadquery/freecad_impl/geom.py @@ -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)