view_surface | R Documentation |
This function visualizes a 3D brain surface using the rgl
package. It allows for the rendering of a surface with optional vertex colors, transparency, and lighting effects. Additionally, the function supports the display of spheres at specified coordinates on the surface, making it versatile for highlighting specific regions or points of interest.
view_surface(
surfgeom,
vals = NA,
cmap = rainbow(256, alpha = 1),
vert_clrs = NULL,
bgcol = "lightgray",
alpha = 1,
add_normals = TRUE,
thresh = NULL,
irange = range(vals, na.rm = TRUE),
specular = "white",
viewpoint = c("lateral", "medial", "ventral", "posterior"),
new_window = TRUE,
offset = c(0, 0, 0),
zoom = 1,
spheres = NULL,
...
)
surfgeom |
A |
vals |
A numeric vector of values corresponding to each surface node. These values will be mapped to colors using the provided color map ( |
cmap |
A color map consisting of a vector of colors in hex format. Default is |
vert_clrs |
Optional vertex colors in hex format. If provided, these colors will override the colors generated from |
bgcol |
A color or vector of colors in hex format used to shade the surface background. Default is |
alpha |
A numeric value indicating the transparency level of the surface. The default is 1 (fully opaque). Values should be between 0 (fully transparent) and 1 (fully opaque). |
add_normals |
Logical, indicating whether to add normals to the surface mesh. This is useful for improving the lighting effects. Default is |
thresh |
A numeric vector of length 2 indicating the lower and upper transparency thresholds. Nodes with values outside this range will be made transparent. |
irange |
A numeric vector of length 2 indicating the lower and upper bounds of the intensity range for the color scale. Default is the range of |
specular |
A color in hex format or a numeric value indicating the specular reflection color used for lighting. Default is |
viewpoint |
A character string specifying the initial viewpoint of the surface. Options are |
new_window |
Logical, indicating whether to open a new RGL window for the surface display. Default is |
offset |
A numeric vector of length 3 specifying the translation offset of the surface in the x, y, and z directions. Default is |
zoom |
A numeric value specifying the zoom factor. Default is 1 (no zoom). |
spheres |
Optional. A data frame containing the coordinates ( |
... |
Additional arguments passed to |
An object returned by rgl::shade3d
representing the rendered surface. This can be used for further manipulation of the rendered object.
shade3d
, spheres3d
, view3d
## Not run:
# Example surface geometry object (assuming `white_surf` is preloaded)
sphere_data <- data.frame(
x = c(10, 20, 30),
y = c(10, 20, 30),
z = c(10, 20, 30),
radius = c(2, 3, 4),
color = c("#FF0000", "#00FF00", "#0000FF")
)
# Display the surface with spheres
view_surface(white_surf, viewpoint = "lateral", spheres = sphere_data)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.