export.coloredmesh.ply {fsbrain} | R Documentation |
Exports coloredmeshes with vertex coloring to standard mesh files in Stanford Triangle (PLY) format. This is very hand for rendering in external standard 3D modeling software like Blender.
export.coloredmesh.ply(filepath, coloredmesh)
filepath |
The export filepath, including file name and extension. |
coloredmesh |
an 'fs.coloredmesh' instance, as returned (silently) by all surface visualization functions, like |
## Not run:
fsbrain::download_optional_data();
subjects_dir = fsbrain::get_optional_data_filepath("subjects_dir");
coloredmeshes = vis.subject.morph.native(subjects_dir, 'subject1', 'thickness');
export.coloredmesh.ply('~/subject1_thickness_lh.ply', coloredmeshed$lh);
## End(Not run)