is_point_in_circle | R Documentation |
Checks if point D lies in the circumcenter of triangle ABC
is_point_in_circle(A, B, C, D)
A, B, C |
Points of the triangle. |
D |
Point whose position is to be checked. |
Returns TRUE if D lies in the triangle ABC, FALSE otherwise
is_point_in_circle(c(0,1), c(-1,-1), c(1,-1), c(0,0)) is_point_in_circle(c(0,1), c(-1,-1), c(1,-1), c(5,5))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.