diff --git a/src/ifcopenshell-python/ifcopenshell/ifcopenshell_wrapper.pyi b/src/ifcopenshell-python/ifcopenshell/ifcopenshell_wrapper.pyi index 323200b9fb..8d77d4dd33 100644 --- a/src/ifcopenshell-python/ifcopenshell/ifcopenshell_wrapper.pyi +++ b/src/ifcopenshell-python/ifcopenshell/ifcopenshell_wrapper.pyi @@ -484,6 +484,26 @@ class Settings: def set_(self, *args): ... def setting_names(self): ... +class SvgEmitFlushEdges: + defaultvalue: Any + description: Any + name: Any + +class SvgRenderCreaseEdges: + defaultvalue: Any + description: Any + name: Any + +class SvgRenderSharpEdges: + defaultvalue: Any + description: Any + name: Any + +class SvgRidgeAngleMinDegrees: + defaultvalue: Any + description: Any + name: Any + class SvgSerializer(WriteOnlyGeometrySerializer): def __init__(self, out_filename, geometry_settings, settings, logger=None): ... SH_NONE: Any @@ -548,6 +568,16 @@ class SvgSerializer(WriteOnlyGeometrySerializer): def write(self, *args): ... def writeHeader(self): ... +class SvgUseEdgeClassification: + defaultvalue: Any + description: Any + name: Any + +class SvgValleyAngleMinDegrees: + defaultvalue: Any + description: Any + name: Any + class SwigPyIterator: def __init__(self, *args, **kwargs): ... def advance(self, n): ... diff --git a/src/ifcwrap/IfcGeomWrapper.i b/src/ifcwrap/IfcGeomWrapper.i index b6dffb3b6e..b77d8467b1 100644 --- a/src/ifcwrap/IfcGeomWrapper.i +++ b/src/ifcwrap/IfcGeomWrapper.i @@ -794,11 +794,11 @@ struct ShapeRTTI : public boost::static_visitor %pythoncode %{ # Hide the getters with read-only property implementations # Keep the owning element alive while its geometry is referenced (#1124). - def _geometry_with_backref(self, _f=geometry): + def geometry_with_backref_(self, _f=geometry): result = _f(self) result._parent = self return result - geometry = property(_geometry_with_backref) + geometry = property(geometry_with_backref_) %} }; @@ -806,11 +806,11 @@ struct ShapeRTTI : public boost::static_visitor %pythoncode %{ # Hide the getters with read-only property implementations # Keep the owning element alive while its geometry is referenced (#1124). - def _geometry_with_backref(self, _f=geometry): + def geometry_with_backref_(self, _f=geometry): result = _f(self) result._parent = self return result - geometry = property(_geometry_with_backref) + geometry = property(geometry_with_backref_) %} }; @@ -836,11 +836,11 @@ struct ShapeRTTI : public boost::static_visitor %pythoncode %{ # Hide the getters with read-only property implementations # Keep the owning element alive while its geometry is referenced (#1124). - def _geometry_with_backref(self, _f=geometry): + def geometry_with_backref_(self, _f=geometry): result = _f(self) result._parent = self return result - geometry = property(_geometry_with_backref) + geometry = property(geometry_with_backref_) volume = property(calc_volume_) surface_area = property(calc_surface_area_) %}