Fix issue with a passmark.
--HG-- branch : develop
This commit is contained in:
parent
7e1c096fa1
commit
3212fc6136
|
@ -903,7 +903,8 @@ bool VPiece::GetPassmarkPreviousSAPoints(const QVector<VPieceNode> &path, int in
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
const VSAPoint previous = points.at(nodeIndex);
|
const VSAPoint previous = points.at(nodeIndex);
|
||||||
if (not VFuzzyComparePoints(passmarkSAPoint, previous))
|
QLineF line(passmarkSAPoint, previous);
|
||||||
|
if (line.length() >= ToPixel(1, Unit::Mm))
|
||||||
{
|
{
|
||||||
point = previous;
|
point = previous;
|
||||||
found = true;
|
found = true;
|
||||||
|
@ -940,7 +941,8 @@ bool VPiece::GetPassmarkNextSAPoints(const QVector<VPieceNode> &path, int index,
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
const VSAPoint next = points.at(nodeIndex);
|
const VSAPoint next = points.at(nodeIndex);
|
||||||
if (not VFuzzyComparePoints(passmarkSAPoint, next))
|
QLineF line(passmarkSAPoint, next);
|
||||||
|
if (line.length() >= ToPixel(1, Unit::Mm))
|
||||||
{
|
{
|
||||||
point = next;
|
point = next;
|
||||||
found = true;
|
found = true;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user