Skip to content

Commit

Permalink
add missing help for inclination
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti committed Aug 1, 2017
1 parent c373c8b commit d88a7f4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions resources/function_help/json/inclination
@@ -0,0 +1,16 @@
{
"name": "inclination",
"type": "function",
"description": "Returns the inclination measured from the zenith (0) to the nadir (180) on point_a to point_b.",
"arguments": [
{"arg":"point_a","description":"point geometry"},
{"arg":"point_b","description":"point geometry"}
],
"examples": [
{ "expression":"inclination( make_point( 5, 10, 0 ), make_point( 5, 10, 5 ) )", "returns":"0.0"},
{ "expression":"inclination( make_point( 5, 10, 0 ), make_point( 5, 10, 0 ) )", "returns":"90.0"},
{ "expression":"inclination( make_point( 5, 10, 0 ), make_point( 50, 100, 0 ) )", "returns":"90.0"},
{ "expression":"inclination( make_point( 5, 10, 0 ), make_point( 5, 10, -5 ) )", "returns":"180.0"}

]
}

0 comments on commit d88a7f4

Please sign in to comment.