fm_mesh_3d | R Documentation |
Constructs a 3D tetrahedralisation object.
fm_mesh_3d(loc = NULL, tv = NULL, ...)
fm_delaunay_3d(loc, ...)
loc |
Input coordinates that should be part of the mesh. Can be a
matrix, |
tv |
Tetrahedron indices, as a N-by-4 index vector into |
... |
Currently unused. |
An fm_mesh_3d
object
fm_delaunay_3d()
: Construct a plain Delaunay triangulation in 3D.
Requires the geometry
package.
(m <- fm_mesh_3d(
matrix(c(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0), 4, 3, byrow = TRUE),
matrix(c(1, 2, 3, 4), 1, 4, byrow = TRUE)
))
(m <- fm_delaunay_3d(matrix(rnorm(30), 10, 3)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.