is_point_in_circle: Point position checker

View source: R/geometry.R

is_point_in_circleR Documentation

Point position checker

Description

Checks if point D lies in the circumcenter of triangle ABC

Usage

is_point_in_circle(A, B, C, D)

Arguments

A, B, C

Points of the triangle.

D

Point whose position is to be checked.

Value

Returns TRUE if D lies in the triangle ABC, FALSE otherwise

Examples

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))

ZeroDawn0D/trianglegsoc documentation built on April 1, 2022, 12:18 a.m.