Skip to content

Commit

Permalink
fix Plane
Browse files Browse the repository at this point in the history
  • Loading branch information
adujardin committed Nov 23, 2018
1 parent 035a289 commit b622b0e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion pyzed/mesh.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ cdef extern from "sl/Mesh.hpp" namespace "sl":
cdef cppclass Plane 'sl::Plane':
Plane()
PLANE_TYPE type
void clear()
types.Vector3[float] getNormal()
types.Vector3[float] getCenter()
core.Transform getPose()
Expand Down
3 changes: 0 additions & 3 deletions pyzed/mesh.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,6 @@ cdef class PyPlane:
def type(self):
return self.plane.type

def clear(self):
return self.plane.clear()

def get_normal(self):
normal = self.plane.getNormal()
cdef np.ndarray arr = np.zeros(3)
Expand Down

0 comments on commit b622b0e

Please sign in to comment.