-
-
Notifications
You must be signed in to change notification settings - Fork 806
Description
In BlenderBIM when we convert ifc to svg to print the drawing there is a bit an of issue that all 2d representations of elements are presentes as bunch of paths inside single <g>
tag with class="projection"
. So we can't specify any separate styles with css for all those representations - for example, we can't add some class to display this element demolished with red dashed line.
Ifc project example for tests - demolish.zip
In the printed svg walls, window without 2d representation have separate <g>
tags.
Door and window with 2d representations (Plan/Body/PLAN_VIEW Curve2d) have all their paths under the same tag. Also some parts of the wall and the window without 2d repr is also under this tag.
Any way around it? Maybe I'm missing some feature we already have or some option in SvgSerializer
?