Remove excess parentheses

This commit is contained in:
Harrissou Sant-anna 2022-09-01 11:07:37 +02:00 committed by GitHub
parent fb97c10d00
commit 744203324f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,10 +19,10 @@
"description": "An optional argument to construct the rectangle. By default this value is 0. Value can be 0 (distance) or 1 (projected). Option distance: Second distance is equal to the distance between 2nd and 3rd point. Option projected: Second distance is equal to the distance of the perpendicular projection of the 3rd point on the segment or its extension." "description": "An optional argument to construct the rectangle. By default this value is 0. Value can be 0 (distance) or 1 (projected). Option distance: Second distance is equal to the distance between 2nd and 3rd point. Option projected: Second distance is equal to the distance of the perpendicular projection of the 3rd point on the segment or its extension."
}], }],
"examples": [{ "examples": [{
"expression": "geom_to_wkt(make_rectangle_3points(make_point(0, 0), make_point(0,5), make_point(5, 5), 0)))", "expression": "geom_to_wkt(make_rectangle_3points(make_point(0, 0), make_point(0,5), make_point(5, 5), 0))",
"returns": "'Polygon ((0 0, 0 5, 5 5, 5 0, 0 0))'" "returns": "'Polygon ((0 0, 0 5, 5 5, 5 0, 0 0))'"
}, { }, {
"expression": "geom_to_wkt(make_rectangle_3points(make_point(0, 0), make_point(0,5), make_point(5, 3), 1)))", "expression": "geom_to_wkt(make_rectangle_3points(make_point(0, 0), make_point(0,5), make_point(5, 3), 1))",
"returns": "'Polygon ((0 0, 0 5, 5 5, 5 0, 0 0))'" "returns": "'Polygon ((0 0, 0 5, 5 5, 5 0, 0 0))'"
}], }],
"tags": ["rectangle", "points"] "tags": ["rectangle", "points"]