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

View source: R/plot.R

plot.mesh.2.5DR Documentation

Plot a mesh.2.5D object

Description

Plot the triangulation of a mesh.2.5D object, generated by create.mesh.2.5D

Usage

## S3 method for class 'mesh.2.5D'
plot(x, ...)

Arguments

x

A mesh.2.5D object generated by create.mesh.2.5D.

...

Arguments representing graphical options to be passed to par.

Value

No return value

Examples

library(fdaPDE)

## Upload the hub2.5D the data
data(hub2.5D)
hub2.5D.nodes = hub2.5D$hub2.5D.nodes
hub2.5D.triangles = hub2.5D$hub2.5D.triangles

## Create mesh
mesh = create.mesh.2.5D(nodes = hub2.5D.nodes, triangles = hub2.5D.triangles)
plot(mesh)

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