File: circle.Rd

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 (24 lines) | stat: -rw-r--r-- 472 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
\name{circle}
\alias{circle}
\title{Draw a circle}
\description{
   \code{circle} draws a circle in an existing plot.
}
\usage{
circle(radius,origin)
}
\arguments{
  \item{radius}{ the radius of the circle }
  \item{origin}{ the origin of the circle }
}
\value{
  NULL
}
\author{ Jan Graffelman \email{jan.graffelman@upc.edu} }
\examples{
   set.seed(123)
   X <- matrix(rnorm(20),ncol=2)
   plot(X[,1],X[,2])
   circle(1,c(0,0))
}
\keyword{aplot}