QCAD Bugtracker

  • Status Closed
  • Percent Complete
    100%
  • Task Type Bug Report
  • Category QCAD (main)
  • Assigned To
    Andrew
  • Operating System All
  • Severity Low
  • Priority Very Low
  • Reported Version Development
  • Due in Version Undecided
  • Due Date Undecided
  • Votes
  • Private
Attached to Project: QCAD Bugtracker
Opened by Peter - 26.06.2011
Last edited by Andrew - 26.06.2011

FS#122 - SVG of hatch with "hole"

A hatch my have “holes”, if it eg. is made of two forms, an inner form, and and outer form, where the outer form is filled while the inner form appears like a window inside of the fill, that lets the background be seen.

QCAD exports such hatches as two SVG paths in one single entity. But the “hole” is lost in the process. I know of two workarounds, that preserve the original intention of the QCAD drawing, both get the same result most of the time, the second one looking more robust and easier to implement:

# draw the outer form clockwise, draw the inner form counterclockwise
# set the “fill-rule:evenodd” attribute on the fill definition of the entity

Drawing a star like in the SVG spec in QCAD actually produces the same picture – so that should be the way to go.

http://www.w3.org/TR/SVG/painting.html#FillRuleProperty

Closed by  Andrew
26.06.2011 12:25
Reason for closing:  Fixed
Admin
Andrew commented on 26.06.2011 12:25

Fixed for next release. To fix it for QCAD 3.0 TP1, please apply the following changes:

file: scripts/File/SvgExport/SvgExporter.js:
line: 294:

change:
this.stream.writeAttribute("style", "fill:%1;".arg(color));

to:
this.stream.writeAttribute("style", "fill:%1;fill-rule:evenodd".arg(color));

Loading...

Available keyboard shortcuts

Tasklist

Task Details

Task Editing