Files
create/src/Mod/TechDraw/App/DrawGeomHatchPy.pyi
Ian Abreu 3ecb701959 Core: Generation of python bindings for Techdraw (#22565)
* 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
2025-08-04 10:36:32 -05:00

27 lines
755 B
Python

from typing import Any
from Base.Metadata import export
from App.DocumentObject import DocumentObject
@export(
Father="DocumentObjectPy",
Name="DrawGeomHatchPy",
Twin="DrawGeomHatch",
TwinPointer="DrawGeomHatch",
Include="Mod/TechDraw/App/DrawGeomHatch.h",
Namespace="TechDraw",
FatherInclude="App/DocumentObjectPy.h",
FatherNamespace="App",
)
class DrawGeomHatchPy(DocumentObject):
"""
Feature for creating and manipulating Technical Drawing GeomHatch areas
"""
def translateLabel(self) -> Any:
"""
translateLabel(translationContext, objectBaseName, objectUniqueName).
No return value. Replace the current label with a translated version where possible.
"""
...