Part: [skip ci] split classes of Shapes.py file into files for feature, view provider and command classes
This commit is contained in:
46
src/Mod/Part/BasicShapes/ViewProviderShapes.py
Normal file
46
src/Mod/Part/BasicShapes/ViewProviderShapes.py
Normal file
@@ -0,0 +1,46 @@
|
||||
# ***************************************************************************
|
||||
# * *
|
||||
# * Copyright (c) 2020 Werner Mayer <wmayer[at]users.sourceforge.net> *
|
||||
# * *
|
||||
# * This program is free software; you can redistribute it and/or modify *
|
||||
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
||||
# * as published by the Free Software Foundation; either version 2 of *
|
||||
# * the License, or (at your option) any later version. *
|
||||
# * for detail see the LICENCE text file. *
|
||||
# * *
|
||||
# * This program is distributed in the hope that it will be useful, *
|
||||
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
# * GNU Library General Public License for more details. *
|
||||
# * *
|
||||
# * You should have received a copy of the GNU Library General Public *
|
||||
# * License along with this program; if not, write to the Free Software *
|
||||
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
||||
# * USA *
|
||||
# * *
|
||||
# ***************************************************************************
|
||||
|
||||
__title__ = "BasicShapes.ViewProviderShapes"
|
||||
__author__ = "Werner Mayer"
|
||||
__url__ = "http://www.freecadweb.org"
|
||||
__doc__ = "Basic shapes"
|
||||
|
||||
|
||||
|
||||
class ViewProviderTube:
|
||||
def __init__(self, obj):
|
||||
''' Set this object to the proxy object of the actual view provider '''
|
||||
obj.Proxy = self
|
||||
|
||||
def attach(self, obj):
|
||||
''' Setup the scene sub-graph of the view provider, this method is mandatory '''
|
||||
return
|
||||
|
||||
def getIcon(self):
|
||||
return ":/icons/parametric/Part_Tube_Parametric.svg"
|
||||
|
||||
def __getstate__(self):
|
||||
return None
|
||||
|
||||
def __setstate__(self,state):
|
||||
return None
|
||||
Reference in New Issue
Block a user