19 lines
499 B
C++
19 lines
499 B
C++
//Copyright (c) 2020 Ultimaker B.V.
|
|
//CuraEngine is released under the terms of the AGPLv3 or higher.
|
|
|
|
#include "ExtrusionJunction.hpp"
|
|
|
|
namespace Slic3r::Arachne
|
|
{
|
|
|
|
bool ExtrusionJunction::operator ==(const ExtrusionJunction& other) const
|
|
{
|
|
return p == other.p
|
|
&& w == other.w
|
|
&& perimeter_index == other.perimeter_index;
|
|
}
|
|
|
|
ExtrusionJunction::ExtrusionJunction(const Point p, const coord_t w, const coord_t perimeter_index) : p(p), w(w), perimeter_index(perimeter_index) {}
|
|
|
|
}
|