* first working interfaces.. * adding the rest. * updated all pyi files. * running black for formatting. * removing unused imports * removing empty comments * fixing typing declarations. * removing inline comments. * fixing pyObjectBase in CosmeticEdgePy * removing erroneous tags. * running black. * fixing CenterLinePy * fixing import issues. * Fixing tuple. * Enabling CosmeticEdge compilation. * fixing comments, removing unused imports. * fixing ordering
19 lines
430 B
Python
19 lines
430 B
Python
from Base.Metadata import export
|
|
|
|
from App.DocumentObject import DocumentObject
|
|
|
|
@export(
|
|
Father="DocumentObjectPy",
|
|
Name="DrawTilePy",
|
|
Twin="DrawTile",
|
|
TwinPointer="DrawTile",
|
|
Include="Mod/TechDraw/App/DrawTile.h",
|
|
Namespace="TechDraw",
|
|
FatherInclude="App/DocumentObjectPy.h",
|
|
FatherNamespace="App",
|
|
)
|
|
class DrawTilePy(DocumentObject):
|
|
"""
|
|
Feature for adding tiles to leader lines
|
|
"""
|