mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-23 22:53:43 +00:00
Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -9,16 +9,14 @@
|
||||
|
||||
namespace m2
|
||||
{
|
||||
using ClipTriangleByRectResultIt =
|
||||
std::function<void(m2::PointD const &, m2::PointD const &, m2::PointD const &)>;
|
||||
using ClipTriangleByRectResultIt = std::function<void(m2::PointD const &, m2::PointD const &, m2::PointD const &)>;
|
||||
|
||||
void ClipTriangleByRect(m2::RectD const & rect, m2::PointD const & p1, m2::PointD const & p2,
|
||||
m2::PointD const & p3, ClipTriangleByRectResultIt const & resultIterator);
|
||||
void ClipTriangleByRect(m2::RectD const & rect, m2::PointD const & p1, m2::PointD const & p2, m2::PointD const & p3,
|
||||
ClipTriangleByRectResultIt const & resultIterator);
|
||||
|
||||
void ClipPathByRect(m2::RectD const & rect, std::vector<m2::PointD> && path,
|
||||
std::function<void (m2::SharedSpline &&)> const & fn);
|
||||
std::vector<m2::SharedSpline> ClipSplineByRect(m2::RectD const & rect,
|
||||
m2::SharedSpline const & spline);
|
||||
std::function<void(m2::SharedSpline &&)> const & fn);
|
||||
std::vector<m2::SharedSpline> ClipSplineByRect(m2::RectD const & rect, m2::SharedSpline const & spline);
|
||||
|
||||
using GuidePointsForSmooth = std::vector<std::pair<m2::PointD, m2::PointD>>;
|
||||
void ClipPathByRectBeforeSmooth(m2::RectD const & rect, std::vector<m2::PointD> const & path,
|
||||
|
||||
Reference in New Issue
Block a user