17 lines
383 B
Python
17 lines
383 B
Python
from Base.Metadata import export
|
|
from Gui.ViewProviderGeometryObject import ViewProviderGeometryObject
|
|
|
|
|
|
@export(
|
|
Include="Mod/Part/Gui/ViewProviderExt.h",
|
|
Namespace="PartGui",
|
|
)
|
|
class ViewProviderPartExt(ViewProviderGeometryObject):
|
|
"""
|
|
This is the ViewProvider geometry class
|
|
|
|
Author: David Carter (dcarter@davidcarter.ca)
|
|
Licence: LGPL
|
|
"""
|
|
...
|
|
|