as.triangles3d.fm_mesh_3d | R Documentation |
Extracts a matrix of coordinates of triangles, suitable for
passing to rgl::triangles3d()
.
## S3 method for class 'fm_mesh_3d'
as.triangles3d(obj, subset = NULL, ...)
obj |
An |
subset |
Character string specifying which triangles to extract. Either "all" (default) or "boundary". |
... |
Currently unused |
A 3-column matrix of coordinates of triangles, suitable for
passing to rgl::triangles3d()
.
if (requireNamespace("geometry", quietly = TRUE) &&
requireNamespace("rgl", quietly = TRUE)) {
(m <- fm_delaunay_3d(matrix(rnorm(30), 10, 3)))
rgl::open3d()
rgl::triangles3d(as.triangles3d(m, "boundary"), col = "blue")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.