1% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/crc.R
3\name{crc}
4\alias{crc}
5\alias{as_crc}
6\alias{as_crc.wk_crc}
7\alias{as_crc.matrix}
8\alias{as_crc.data.frame}
9\title{2D Circle Vectors}
10\usage{
11crc(x = double(), y = double(), r = double(), crs = wk_crs_auto())
12
13as_crc(x, ...)
14
15\method{as_crc}{wk_crc}(x, ...)
16
17\method{as_crc}{matrix}(x, ..., crs = NULL)
18
19\method{as_crc}{data.frame}(x, ..., crs = NULL)
20}
21\arguments{
22\item{x, y}{Coordinates of the center}
23
24\item{r}{Circle radius}
25
26\item{crs}{A value to be propagated as the CRS for this vector.}
27
28\item{...}{Extra arguments passed to \code{as_crc()}.}
29}
30\value{
31A vector along the recycled length of bounds.
32}
33\description{
342D Circle Vectors
35}
36\examples{
37crc(1, 2, 3)
38
39}
40