Cleaning up startEditing/finishEditing/isEditing

This commit is contained in:
Markus Lampert
2018-10-04 20:57:59 -07:00
committed by wmayer
parent a68bc0612d
commit 4e62302aa3
5 changed files with 4 additions and 15 deletions

View File

@@ -194,15 +194,6 @@ class ViewProvider(object):
def toString(self):
"returns a string representation of the coin node of this object"
return self.__vobject__.toString()
def startEditing(self,mode=0):
"sets this object in edit mode"
return self.__vobject__.startEditing(mode)
def finishEditing(self):
"leaves edit mode for this object"
self.__vobject__.finishEditing()
def isEditing(self):
"shows whether this object is in edit mode"
self.__vobject__.isEditing()
def setTransformation(self,trsf):
"defines a transformation for this object"
return self.__vobject__.setTransformation(trsf)