Skip to content

Commit

Permalink
Export move()
Browse files Browse the repository at this point in the history
  • Loading branch information
hsonne committed Feb 19, 2024
1 parent 7a52e17 commit e2d27c8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ S3method(plot,rects)
S3method(separate,rects)
S3method(stack,rects)
export("%>%")
export(move)
importFrom(kwb.utils,defaultIfNULL)
importFrom(kwb.utils,removeColumns)
importFrom(kwb.utils,selectColumns)
Expand Down
6 changes: 6 additions & 0 deletions R/rectangles.R
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ init_plot <- function(
}

# move -------------------------------------------------------------------------

#' Generic Function to Move Objects
#'
#' @param x objects to be moved
#' @param \dots arguments passed to class methods
#' @export
move <- function(x, ...)
{
UseMethod("move")
Expand Down
16 changes: 16 additions & 0 deletions man/move.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e2d27c8

Please sign in to comment.