Incenter {LearnGeom} | R Documentation |
Computes the incenter of a given triangle
Description
Incenter
computes the center of a triangle
Usage
Incenter(Tri, lines = F)
Arguments
Tri |
Triangle object, previously created with function |
lines |
Boolean. When |
Value
Vector which contains the xy-coordinates of the incenter of the triangle
References
http://mathworld.wolfram.com/Incenter.html
Examples
P1 <- c(0,0)
P2 <- c(1,1)
P3 <- c(2,0)
Tri <- CreatePolygon(P1, P2, P3)
x_min <- -5
x_max <- 5
y_min <- -5
y_max <- 5
CoordinatePlane(x_min, x_max, y_min, y_max)
Draw(Tri, "transparent")
I <- Incenter(Tri, lines = TRUE)
Draw(I, "red")
[Package LearnGeom version 1.5 Index]