We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9687512 commit f94b913Copy full SHA for f94b913
util/geosop/GeometryOp.cpp
@@ -296,6 +296,13 @@ std::vector<GeometryOpCreator> opRegistry {
296
return new Result( geom->buffer( d ) );
297
});
298
}},
299
+{"bufferQuadSegs", [](std::string name) { return GeometryOp::create(name,
300
+ catConst,
301
+ "compute the buffer of geometry by a distance with quadrant segments",
302
+ [](const std::unique_ptr<Geometry>& geom, double d, int quadrantSegments) {
303
+ return new Result( geom->buffer( d, quadrantSegments ) );
304
+ });
305
+ }},
306
{"offsetCurve", [](std::string name) { return GeometryOp::create(name,
307
catConst,
308
"compute the offset curve of geometry by a distance",
0 commit comments