Set Drawing hidden linewidth to half the normal linewidth

This commit is contained in:
Yorik van Havre 2012-04-18 10:02:15 -03:00
parent 8a70eca728
commit c3ab6afd86

View File

@ -153,7 +153,7 @@ std::string ProjectionAlgos::getSVG(SvgExtractionType type, float scale)
{
std::stringstream result;
SVGOutput output;
float hfactor = 0.15f / 0.35f;
float hfactor = 0.5f; // hidden line size factor, was 0.15f / 0.35f;
if (!H.IsNull() && (type & WithHidden)) {
float width = hfactor * scale;