mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06:00
Cleanup of some method signatures and of XS return types
This commit is contained in:
parent
c9cdae1a96
commit
8791f5a493
39 changed files with 252 additions and 339 deletions
|
@ -83,10 +83,10 @@ MultiPoint::has_boundary_point(const Point &point) const
|
|||
return dist < SCALED_EPSILON;
|
||||
}
|
||||
|
||||
void
|
||||
MultiPoint::bounding_box(BoundingBox* bb) const
|
||||
BoundingBox
|
||||
MultiPoint::bounding_box() const
|
||||
{
|
||||
*bb = BoundingBox(this->points);
|
||||
return BoundingBox(this->points);
|
||||
}
|
||||
|
||||
Points
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue