fm_lattice_Nd | R Documentation |
Construct an N-dimensional lattice grid
fm_lattice_Nd(x = NULL, ...)
## S3 method for class 'matrix'
fm_lattice_Nd(x = NULL, dims = NULL, values = NULL, ...)
## S3 method for class 'data.frame'
fm_lattice_Nd(x = NULL, ...)
## S3 method for class 'list'
fm_lattice_Nd(x = NULL, dims = NULL, ...)
## S3 method for class 'fm_bbox'
fm_lattice_Nd(x = NULL, dims = NULL, ...)
## S3 method for class ''NULL''
fm_lattice_Nd(x = NULL, ..., dims = NULL)
x |
|
... |
Passed on to submethods |
dims |
numeric; the size of the grid of dimension |
values |
list of grid axis values |
An fm_lattice_Nd
object with elements
integer vector
the grid coordinate axis values
matrix of constructed grid coordinates
fm_lattice_Nd(`NULL`)
: Ignores the NULL
x
and creates a lattice
based on values
(if non-NULL) and dims
unit hypercube
lattice grid with dims
dimensions.
Finn Lindgren finn.lindgren@gmail.com
fm_mesh_3d()
Other object creation and conversion:
fm_as_fm()
,
fm_as_lattice_2d()
,
fm_as_lattice_Nd()
,
fm_as_mesh_1d()
,
fm_as_mesh_2d()
,
fm_as_mesh_3d()
,
fm_as_segm()
,
fm_as_sfc()
,
fm_as_tensor()
,
fm_lattice_2d()
,
fm_mesh_1d()
,
fm_mesh_2d()
,
fm_segm()
,
fm_simplify()
,
fm_tensor()
(lattice <- fm_lattice_Nd(
list(
seq(0, 1, length.out = 3),
seq(0, 1, length.out = 4),
seq(0, 1, length.out = 2)
)
))
if (requireNamespace("geometry", quietly = TRUE)) {
(mesh <- fm_delaunay_3d(lattice$loc))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.