From adf65dc99413a50359d43427565be90d040864de Mon Sep 17 00:00:00 2001 From: jonas-hurst Date: Mon, 6 Sep 2021 00:14:23 +0200 Subject: [PATCH] updated documentation --- R/tissot.R | 2 +- man/tissot.Rd | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/R/tissot.R b/R/tissot.R index a41d9ce..b8a64ff 100644 --- a/R/tissot.R +++ b/R/tissot.R @@ -14,7 +14,7 @@ #' @import sf #' @param geom input geometry for which tissot should be generated #' @param circles_den Specifies the number of indicatrix circles that are generated. -#' Default is c(-1) which corresponds to automatic density. +#' Default is c(-1, -1) which corresponds to automatic density. #' Manually, number of circles in x and y direction can be #' specified through an array, e.g. c(20, 10). #' @param circle_size Specifies the size of each indicatrix circle. Default it is diff --git a/man/tissot.Rd b/man/tissot.Rd index 9aaa494..fdc2ec0 100644 --- a/man/tissot.Rd +++ b/man/tissot.Rd @@ -4,13 +4,13 @@ \alias{tissot} \title{This function generates Tissot's indicatrix} \usage{ -tissot(geom, circles_den = c(-1), circle_size = "auto") +tissot(geom, circles_den = c(-1, -1), circle_size = "auto") } \arguments{ \item{geom}{input geometry for which tissot should be generated} \item{circles_den}{Specifies the number of indicatrix circles that are generated. -Default is c(-1) which corresponds to automatic density. +Default is c(-1, -1) which corresponds to automatic density. Manually, number of circles in x and y direction can be specified through an array, e.g. c(20, 10).}