2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-05-26 03:42:49 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-05-26 03:42:49 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class RDeldir(RPackage):
|
|
|
|
"""Calculates the Delaunay triangulation and the Dirichlet or Voronoi
|
|
|
|
tessellation (with respect to the entire plane) of a planar point set.
|
|
|
|
Plots triangulations and tessellations in various ways. Clips
|
|
|
|
tessellations to sub-windows. Calculates perimeters of tessellations.
|
|
|
|
Summarises information about the tiles of the tessellation."""
|
|
|
|
|
|
|
|
homepage = "https://CRAN.R-project.org/package=deldir"
|
|
|
|
url = "https://cran.r-project.org/src/contrib/deldir_0.1-14.tar.gz"
|
2017-11-06 05:42:24 +08:00
|
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/deldir"
|
2017-05-26 03:42:49 +08:00
|
|
|
|
|
|
|
version('0.1-14', '6a22b13d962615cd9d51b6eae403409f')
|
|
|
|
|
|
|
|
depends_on('r@0.99:')
|