mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-28 15:45:30 +00:00
Refactored signatures of many C++ methods for more efficient and safer style. Includes a bugfix for Point::nearest_point() which was returning a pointer to freed memory. #1961
This commit is contained in:
@@ -56,7 +56,7 @@ Line::coincides_with(line_sv)
|
||||
CODE:
|
||||
Line line;
|
||||
line.from_SV_check(line_sv);
|
||||
RETVAL = THIS->coincides_with(&line);
|
||||
RETVAL = THIS->coincides_with(line);
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
|
||||
Reference in New Issue
Block a user