| plot.inla.mesh {INLA} | R Documentation |
Draw a triangulation mesh object
Description
Use
fmesher::plot.fm_mesh_2d() or
fmesher::plot_rgl() instead.
Plots an inla.mesh() object using either standard graphics or
with rgl.
Usage
## S3 method for class 'inla.mesh'
plot(
x,
col = "white",
t.sub = 1:nrow(mesh$graph$tv),
add = FALSE,
lwd = 1,
xlim = range(mesh$loc[, 1]),
ylim = range(mesh$loc[, 2]),
main = NULL,
rgl = FALSE,
size = 2,
draw.vertices = FALSE,
vertex.color = "black",
draw.edges = TRUE,
edge.color = rgb(0.3, 0.3, 0.3),
draw.segments = draw.edges,
...
)
Arguments
x |
An |
col |
Color specification. A single named color, a vector of scalar
values, or a matrix of RGB values. Requires |
t.sub |
Optional triangle index subset to be drawn. |
add |
If |
lwd |
Line width for triangle edges. |
xlim |
X-axis limits. |
ylim |
Y-axis limits. |
main |
The main plot title. If not specified, a default title is generated based on the mesh type. |
rgl |
When |
size |
Size of vertex points in |
draw.vertices |
If |
vertex.color |
Color specification for all vertices. |
draw.edges |
If |
edge.color |
Color specification for all edges. |
draw.segments |
If |
... |
Further graphics parameters, interpreted by the respective plotting systems. |
Author(s)
Finn Lindgren finn.lindgren@gmail.com
See Also
Examples
mesh <- inla.mesh.create(globe = 10)
plot(mesh)
if (require(rgl)) {
plot(mesh, rgl = TRUE, col = mesh$loc[, 1])
}