MCPcopy Create free account
hub / github.com/NatLabRockies/OpenStudio / removeSpikes

Function removeSpikes

src/utilities/geometry/Intersection.cpp:222–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

220}
221
222BoostPolygon removeSpikes(const BoostPolygon& polygon) {
223 BoostPolygon temp(polygon);
224 boost::geometry::remove_spikes(temp);
225 return temp;
226}
227
228std::vector<BoostPolygon> removeSpikes(const std::vector<BoostPolygon>& polygons) {
229 std::vector<BoostPolygon> result;

Callers 4

joinFunction · 0.85
intersectFunction · 0.85
subtractFunction · 0.85
TEST_FFunction · 0.85

Calls 4

concat_helperFunction · 0.85
removeSpikesExFunction · 0.85
boostPolygonFromVerticesFunction · 0.85
verticesFromBoostPolygonFunction · 0.85

Tested by 1

TEST_FFunction · 0.68