plotlens: Plot the line joining lens ends, and return the angle

Description Usage Arguments Examples

View source: R/plotlens.R

Description

Plot the line joining lens ends, and return the angle

Usage

1
plotlens(m1, m2)

Arguments

m1
m2

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (m1, m2) 
{
    endoflens <- findtilt(m1, m2)
    lensslope <- lm(y ~ x, data = endoflens)
    abline(lensslope, col = "blue", lty = 3)
    points(endoflens, pch = 3, col = "blue")
    return(anglefinder(lensslope))
  }

phewson/PhilsAngle documentation built on May 25, 2019, 2:54 a.m.