Skip to content

Commit

Permalink
Add missing make_triangle function help. Fix #16406
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti authored and nyalldawson committed Mar 12, 2018
1 parent 0343162 commit d68107e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions resources/function_help/json/make_triangle
@@ -0,0 +1,13 @@
{
"name": "make_triangle",
"type": "function",
"description": "Creates a triangle polygon.",
"variableLenArguments": false,
"arguments": [
{"arg":"point 1", "description": "first point of the triangle"},
{"arg":"point 2", "description": "second point of the triangle"},
{"arg":"point 3", "description": "third point of the triangle"}],
"examples": [ { "expression":"geom_to_wkt(make_triangle(make_point(0,0), make_point(5,5), make_point(0,10)))", "returns":"'Triangle ((0 0, 5 5, 0 10, 0 0))'"},
{ "expression":"geom_to_wkt(boundary(make_triangle(make_point(0,0), make_point(5,5), make_point(0,10))))", "returns":"'LineString (0 0, 5 5, 0 10, 0 0)'"}
]
}

0 comments on commit d68107e

Please sign in to comment.