mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-21 07:41:09 -06:00
More work to avoid working with vertices outside XS
This commit is contained in:
parent
11e18f681d
commit
a821eb7f3c
9 changed files with 61 additions and 35 deletions
|
@ -126,6 +126,18 @@ TriangleMesh::slice(z)
|
|||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
std::vector<double>
|
||||
TriangleMesh::bb3()
|
||||
CODE:
|
||||
RETVAL.push_back(THIS->stl.stats.min.x);
|
||||
RETVAL.push_back(THIS->stl.stats.min.y);
|
||||
RETVAL.push_back(THIS->stl.stats.max.x);
|
||||
RETVAL.push_back(THIS->stl.stats.max.y);
|
||||
RETVAL.push_back(THIS->stl.stats.min.z);
|
||||
RETVAL.push_back(THIS->stl.stats.max.z);
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
%}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue