mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-02 06:40:40 +08:00

* 1. Remove all global include_directories. * 2. Move 3d party dependencies from src to budled deps if possible. * Unify and enforce one way of including headers: e.g. #include "libslic3r/GCode.hpp" vs #include "GCode.hpp" (always use the "libslic3r/GCode.hpp" option). * Make all dependencies (also header only) a cmake target.
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
///|/ Copyright (c) Prusa Research 2017 - 2019 Lukáš Matěna @lukasmatena, Vojtěch Bubník @bubnikv
|
|
///|/ Copyright (c) 2019 Thomas Moore
|
|
///|/
|
|
///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher
|
|
///|/
|
|
// Measure extents of the planned extrusions.
|
|
// To be used for collision reporting.
|
|
|
|
#ifndef slic3r_PrintExtents_hpp_
|
|
#define slic3r_PrintExtents_hpp_
|
|
|
|
#include "libslic3r/libslic3r.h"
|
|
|
|
namespace Slic3r {
|
|
|
|
class Print;
|
|
class PrintObject;
|
|
class BoundingBoxf;
|
|
|
|
// Returns a bounding box of a projection of the brim and skirt.
|
|
BoundingBoxf get_print_extrusions_extents(const Print &print);
|
|
|
|
// Returns a bounding box of a projection of the object extrusions at z <= max_print_z.
|
|
BoundingBoxf get_print_object_extrusions_extents(const PrintObject &print_object, const coordf_t max_print_z);
|
|
|
|
// Returns a bounding box of a projection of the wipe tower for the layers <= max_print_z.
|
|
// The projection does not contain the priming regions.
|
|
BoundingBoxf get_wipe_tower_extrusions_extents(const Print &print, const coordf_t max_print_z);
|
|
|
|
// Returns a bounding box of the wipe tower priming extrusions.
|
|
BoundingBoxf get_wipe_tower_priming_extrusions_extents(const Print &print);
|
|
|
|
};
|
|
|
|
#endif /* slic3r_PrintExtents_hpp_ */
|