Renamed MeshClipper.cpp/.hpp to MeshUtils.cpp/.hpp

More helper classes like the MeshClipper could live here
Moved ClippingPlane class in here to start
This commit is contained in:
Lukas Matena 2019-09-13 11:30:50 +02:00
parent 9782701dd4
commit 70c0c87598
8 changed files with 116 additions and 94 deletions

View file

@ -2,7 +2,10 @@
#define slic3r_GLGizmos_hpp_
// this describes events being passed from GLCanvas3D to SlaSupport gizmo
enum class SLAGizmoEventType {
namespace Slic3r {
namespace GUI {
enum class SLAGizmoEventType : unsigned char {
LeftDown = 1,
LeftUp,
RightDown,
@ -20,6 +23,9 @@ enum class SLAGizmoEventType {
ResetClippingPlane
};
} // namespace GUI
} // namespace Slic3r
#include "slic3r/GUI/Gizmos/GLGizmoMove.hpp"
#include "slic3r/GUI/Gizmos/GLGizmoScale.hpp"
#include "slic3r/GUI/Gizmos/GLGizmoRotate.hpp"