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 0aa8dbe891
commit 145ef52566

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;