Base: refactor InventorBuilder

This commit is contained in:
wmayer
2022-12-02 19:06:27 +01:00
parent 663a9e665b
commit 4dc1fc8f01
3 changed files with 8 additions and 8 deletions

View File

@@ -480,9 +480,9 @@ void MaterialBindingItem::write(InventorOutput& out) const
// -----------------------------------------------------------------------------
DrawStyleItem::DrawStyleItem(DrawStyle style) : style(style)
void DrawStyleItem::setValue(DrawStyle value)
{
style = value;
}
void DrawStyleItem::write(InventorOutput& out) const
@@ -511,9 +511,9 @@ void ShapeHintsItem::write(InventorOutput& out) const
// -----------------------------------------------------------------------------
PolygonOffsetItem::PolygonOffsetItem(PolygonOffset offset) : offset(offset)
void PolygonOffsetItem::setValue(PolygonOffset value)
{
offset = value;
}
void PolygonOffsetItem::write(InventorOutput& out) const