mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06:00
Replaced Point3 with Eigen Vec3crd, removed Point3 from the Perl binding.
This commit is contained in:
parent
0b5b02e002
commit
ac72cd779f
19 changed files with 68 additions and 118 deletions
|
@ -196,7 +196,7 @@ MultiPoint::_douglas_peucker(const Points &points, const double tolerance)
|
|||
|
||||
void MultiPoint3::translate(double x, double y)
|
||||
{
|
||||
for (Point3 &p : points) {
|
||||
for (Vec3crd &p : points) {
|
||||
p(0) += x;
|
||||
p(1) += y;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue