Convert object to mesh object
The as.mesh3d
generic function converts various objects
to mesh3d
objects.
The default method takes takes a matrix of vertices
as input and (optionally) merges repeated vertices, producing a mesh3d
object as output. It will contain either triangles or quads
according to the triangles
argument.
If the generic is called without any argument, it will pass
all RGL ids from the current scene to the
as.mesh3d.rglId
method.
as.mesh3d(x, ...) ## Default S3 method: as.mesh3d(x, y = NULL, z = NULL, type = c("triangles", "quads", "points"), smooth = FALSE, tolerance = sqrt(.Machine$double.eps), notEqual = NULL, merge = TRUE, ..., triangles)
x, y, z |
For the generic, |
type |
What type of things should be in the mesh? Tries this list in order until it finds one that works. |
smooth |
If |
tolerance |
The numerical tolerance to be used in |
notEqual |
If not |
merge |
Should apparently equal vertices be merged? |
... |
|
triangles |
Deprecated. If present, |
The motivation for this function is the following problem: I was asked whether RGL could render a surface made up of triangles or quadrilaterals to look smooth. It can do that, but needs normals at each vertex; they should be the average of the normals for each polygon sharing that vertex. Then OpenGL will interpolate the normals across the polygons and give the illusion of smoothness.
To do this, it needs to know which polygons share each vertex. If the
surface is described as a list of triangles or quadrilaterals, that
means identifying vertices that are in multiple polygons, and converting
the representation to a "mesh3d"
object (which is a matrix of vertices
and a matrix of vertex numbers making up triangles or quads). Then the
addNormals
function will add the normals.
Sometimes two polygons will share vertices (within numerical
tolerance) without the user wanting them to be considered internal to
the surface, or might want one sharp edge in an otherwise smooth
surface. This means I needed a way to declare that two vertices from
the original list of vertices in the triangles or quads are "not equal",
even when they test numerically equal. That's what the notEqual
matrix specifies.
A "mesh3d"
object with the same faces as in the
input, but (if merge=TRUE
) with vertices that test equal to
within tolerance
merged.
Duncan Murdoch
xyz <- matrix(c(-1, -1, -1, -1, 1, -1, 1, 1, -1, 1, -1, -1, -1, 1, -1, -1, 1, 1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, 1, -1, 1, 1, 1, 1, -1, 1), byrow = TRUE, ncol = 3) mesh <- as.mesh3d(xyz, triangles = FALSE, col = "red") mesh$vb mesh$ib open3d() shade3d(mesh) # Stop vertices 2 and 5 from being merged notEQ <- matrix(FALSE, 12, 12) notEQ[2, 5] <- TRUE mesh <- as.mesh3d(xyz, triangles = FALSE, notEqual = notEQ) mesh$vb mesh$ib
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.