mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-20 23:31:13 -06:00
Replaced coincides_with(const Line &line) with operator==
This commit is contained in:
parent
9e7634b6e8
commit
ab60d8adb4
6 changed files with 5 additions and 4 deletions
|
@ -69,7 +69,7 @@ Line::coincides_with(line_sv)
|
|||
CODE:
|
||||
Line line;
|
||||
from_SV_check(line_sv, &line);
|
||||
RETVAL = THIS->coincides_with(line);
|
||||
RETVAL = (*THIS) == line;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue