plot.mesh.3D: Plot a mesh.3D object

View source: R/plot.R

plot.mesh.3DR 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 mesh.3D object generated by create.mesh.3D.

...

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)

fdaPDE documentation built on March 7, 2023, 5:28 p.m.