Learn R Programming

MeshAgreement (version 0.1.4)

get_mesh_info_obs: Get information about a list of mesh objects

Description

Get key information about a list of mesh objects. This includes their respective number of vertices and triangles as well as their volume and centroid.

Usage

get_mesh_info_obs(x)

Value

data.frame with these variables

name

Name of the mesh.

n_verts

Number of vertices.

n_faces

Number of faces.

volume

Mesh volume.

ctr_x

Centroid x-coordinate.

ctr_y

Centroid y-coordinate.

ctr_z

Centroid z-coordinate.

Arguments

x

list of mesh objects with a structure as generated by read_mesh_obs.

Details

Use get_mesh_info_one for getting the information about a single mesh object. Use get_mesh_info for getting the information about a list of observer/mesh objects.

See Also

read_mesh_obs, get_mesh_info_one, get_mesh_info

Examples

Run this code
heartL <- mesh3dL_to_cgalMeshL(data_heart_obsL)
Obs01  <- heartL[["Obs01"]]
get_mesh_info_obs(Obs01)

Run the code above in your browser using DataLab