MCPcopy Create free account
hub / github.com/AngusJohnson/Clipper2 / SimplifyPaths

Function SimplifyPaths

CPP/Clipper2Lib/include/clipper2/clipper.h:706–714  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

704
705 template <typename T>
706 inline Paths<T> SimplifyPaths(const Paths<T> &paths,
707 double epsilon, bool isClosedPath = true)
708 {
709 Paths<T> result;
710 result.reserve(paths.size());
711 for (const auto& path : paths)
712 result.emplace_back(std::move(SimplifyPath(path, epsilon, isClosedPath)));
713 return result;
714 }
715
716
717 template <typename T>

Callers 1

DoRabbitFunction · 0.85

Calls 1

SimplifyPathFunction · 0.85

Tested by

no test coverage detected