Draft: Edit, Remove all the empty pass functions

Remove unused functions. Since GuiTools objects inherit from the GuiTools class, they do not need those placeholders.
This commit is contained in:
carlopav
2021-05-24 23:10:55 +02:00
parent 4050f3ff69
commit aa7dddeecc
4 changed files with 0 additions and 98 deletions

View File

@@ -57,12 +57,6 @@ class PartLineGuiTools(GuiTools):
obj.Y2 = v.y
obj.Z2 = v.z
def get_edit_point_context_menu(self, obj, node_idx):
pass
def evaluate_context_menu_action(self, edit_command, obj, node_idx, action):
pass
class PartBoxGuiTools(GuiTools):
@@ -90,12 +84,6 @@ class PartBoxGuiTools(GuiTools):
_vector = DraftVecUtils.project(v, App.Vector(0, 0, 1))
obj.Height = _vector.Length
def get_edit_point_context_menu(self, obj, node_idx):
pass
def evaluate_context_menu_action(self, edit_command, obj, node_idx, action):
pass
class PartCylinderGuiTools(GuiTools):
@@ -119,12 +107,6 @@ class PartCylinderGuiTools(GuiTools):
_vector = DraftVecUtils.project(v, App.Vector(0, 0, 1))
obj.Height = _vector.Length
def get_edit_point_context_menu(self, obj, node_idx):
pass
def evaluate_context_menu_action(self, edit_command, obj, node_idx, action):
pass
class PartConeGuiTools(GuiTools):
@@ -151,12 +133,6 @@ class PartConeGuiTools(GuiTools):
_vector = DraftVecUtils.project(v, App.Vector(0, 0, 1))
obj.Height = _vector.Length
def get_edit_point_context_menu(self, obj, node_idx):
pass
def evaluate_context_menu_action(self, edit_command, obj, node_idx, action):
pass
class PartSphereGuiTools(GuiTools):
@@ -176,10 +152,4 @@ class PartSphereGuiTools(GuiTools):
if v.Length > 0.0:
obj.Radius = v.Length # TODO: Perhaps better to project on the face?
def get_edit_point_context_menu(self, obj, node_idx):
pass
def evaluate_context_menu_action(self, edit_command, obj, node_idx, action):
pass
## @}