Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Romain committed Aug 25, 2024
1 parent 3182ca2 commit 9fec781
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Description: A simple point cloud viewer for R which enable to display million o
points in a fluid way and using few memory. This package aims to replace rgl
in lidR when the point cloud is to big to be held by rgl.
Depends: R (>= 3.1.0)
Imports: Rcpp,lidR
Imports: Rcpp,lidR,methods
License: GPL-3
Encoding: UTF-8
LazyData: true
Expand Down
7 changes: 1 addition & 6 deletions R/plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#'
#' @param x a point cloud with minimally 3 columns named X,Y,Z
#' @param y Unused (inherited from R base)
#' @param ... unused
#' @export
#' @method plot LAS
#' @importClassesFrom lidR LAS
Expand All @@ -25,12 +26,6 @@ setMethod("plot", signature(x = "LAS", y = "missing"), function(x, y, ...)
viewer(x@data)
})

#' @rdname plot
setMethod("plot", signature(x = "data.frame", y = "missing"), function(x, y, ...)
{
viewer(x)
})

#' Deprecated backward compatible function
#'
#' @param x,y,z numeric vector
Expand Down
2 changes: 2 additions & 0 deletions man/plot-LAS-missing-method.Rd

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

0 comments on commit 9fec781

Please sign in to comment.