plot.mesh.3D {fdaPDE} | R Documentation |
Plot a mesh.3D
object, generated by create.mesh.3D
.
## S3 method for class 'mesh.3D'
plot(x, ...)
x |
A |
... |
Arguments representing graphical options to be passed to par. |
No return value
library(fdaPDE)
##Load the matrix nodes and tetrahedrons
data(sphere3Ddata)
nodes = sphere3Ddata$nodes
tetrahedrons = sphere3Ddata$tetrahedrons
##Create the triangulated mesh from the connectivity matrix and nodes locations
mesh = create.mesh.3D(nodes,tetrahedrons)
##Plot the triangulation of the object
plot(mesh)