Skip to content

Commit b622b0e

Browse files
committed
fix Plane
1 parent 035a289 commit b622b0e

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

pyzed/mesh.pxd

-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ cdef extern from "sl/Mesh.hpp" namespace "sl":
106106
cdef cppclass Plane 'sl::Plane':
107107
Plane()
108108
PLANE_TYPE type
109-
void clear()
110109
types.Vector3[float] getNormal()
111110
types.Vector3[float] getCenter()
112111
core.Transform getPose()

pyzed/mesh.pyx

-3
Original file line numberDiff line numberDiff line change
@@ -266,9 +266,6 @@ cdef class PyPlane:
266266
def type(self):
267267
return self.plane.type
268268

269-
def clear(self):
270-
return self.plane.clear()
271-
272269
def get_normal(self):
273270
normal = self.plane.getNormal()
274271
cdef np.ndarray arr = np.zeros(3)

0 commit comments

Comments
 (0)