We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 035a289 commit b622b0eCopy full SHA for b622b0e
pyzed/mesh.pxd
@@ -106,7 +106,6 @@ cdef extern from "sl/Mesh.hpp" namespace "sl":
106
cdef cppclass Plane 'sl::Plane':
107
Plane()
108
PLANE_TYPE type
109
- void clear()
110
types.Vector3[float] getNormal()
111
types.Vector3[float] getCenter()
112
core.Transform getPose()
pyzed/mesh.pyx
@@ -266,9 +266,6 @@ cdef class PyPlane:
266
def type(self):
267
return self.plane.type
268
269
- def clear(self):
270
- return self.plane.clear()
271
-
272
def get_normal(self):
273
normal = self.plane.getNormal()
274
cdef np.ndarray arr = np.zeros(3)
0 commit comments