Extend a passmark length to 50% of seam allowance width.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2017-04-05 08:43:16 +03:00
parent 1ecbfaa873
commit 4cd09e54e4

View file

@ -991,7 +991,7 @@ QVector<QLineF> VPiece::CreatePassmark(const QVector<VPieceNode> &path, int prev
QVector<QLineF> passmarksLines;
const qreal passmarkLength = VAbstractPiece::MaxLocalSA(passmarkSAPoint, width) * 0.25;
const qreal passmarkLength = VAbstractPiece::MaxLocalSA(passmarkSAPoint, width) * 0.5;
const VPieceNode &node = path.at(passmarkIndex);
if (node.GetPassmarkAngleType() == PassmarkAngleType::Straightforward)
{