File: origin.R

package info (click to toggle)
r-cran-calibrate 1.7.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 628 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
"origin" <-
function (m = c(0, 0), ...) 
{
   vx <- c(par("usr")[1],par("usr")[2])
   vy <- c(m[2],m[2])
   lines(vx,vy,...)
   vy <- c(par("usr")[3],par("usr")[4])
   vx <- c(m[1],m[1])
   lines(vx,vy,...)   
}