plot.mesh.3D {fdaPDE} | R Documentation |
Plot a mesh.3D object
Description
Plot a mesh.3D
object, generated by create.mesh.3D
.
Usage
## S3 method for class 'mesh.3D'
plot(x, ...)
Arguments
x |
A |
... |
Arguments representing graphical options to be passed to par. |
Value
No return value
Examples
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)
[Package fdaPDE version 1.1-19 Index]