Part: Convert XML bindings to Python API bindings model.

This commit is contained in:
tritao
2025-02-11 16:45:25 +00:00
committed by Chris Hennes
parent e0836d1e4c
commit 8a83c1b87a
56 changed files with 7102 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
from Base.Metadata import export
from GeometryExtension import GeometryExtension
@export(
PythonName="Part.GeometryStringExtension",
Include="Mod/Part/App/GeometryDefaultExtension.h",
FatherInclude="Mod/Part/App/GeometryExtensionPy.h",
Constructor=True,
)
class GeometryStringExtension(GeometryExtension):
"""
A GeometryExtension extending geometry objects with a string.
Author: Abdullah Tahiri (abdullah.tahiri.yo@gmail.com)
Licence: LGPL
"""
Value: str = ...
"""returns the value of the GeometryStringExtension."""