mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-29 06:02:00 +08:00
17 lines
384 B
C++
17 lines
384 B
C++
///|/ Copyright (c) Prusa Research 2022 Pavel Mikuš @Godrak
|
|
///|/
|
|
///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher
|
|
///|/
|
|
#ifndef libslic3r_Subdivide_hpp_
|
|
#define libslic3r_Subdivide_hpp_
|
|
|
|
#include "TriangleMesh.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
indexed_triangle_set its_subdivide(const indexed_triangle_set &its, float max_length);
|
|
|
|
}
|
|
|
|
#endif //libslic3r_Subdivide_hpp_
|