triangleArea {OSMscale}R Documentation

Area of a triangle

Description

calculate Area of a planar triangle

Usage

triangleArea(x, y, digits = 3)

Arguments

x

Vector with 3 values (x coordinates of triangle corners)

y

Ditto for y.

digits

Number of digits the result is rounded to. DEFAULT: 3)

Value

Numeric

Author(s)

Berry Boessenkool, berry-b@gmx.de, 2011

See Also

berryFunctions::distance

Examples


a <- c(1,5.387965,9); b <- c(1,1,5)
plot(a[c(1:3,1)], b[c(1:3,1)], type="l", asp=1)#; grid()

triangleArea(a,b)
#triangleArea(a,b[1:2])


[Package OSMscale version 0.5.20 Index]