cubes3D.tris: Vectorized version of cube3D.tris

Description Usage Arguments Value Examples

View source: R/vis_volume.R

Description

Vectorized version of cube3D.tris

Usage

1
cubes3D.tris(centers, edge_length = 1)

Arguments

centers

numerical matrix with 3 columns. Each column represents the x, y, z coordinates of a center at which to create a cube.

edge_length

numerical vector or scalar, the edge length. Must have length 1 (same edge length for all cubes), or the length must be identical to the number of rows in parameter 'centers'.

Value

matrix of triangle coordinates, see cube3D.tris.

Examples

1
2
3
   # Plot a 3D cloud of 20000 voxels:
   centers = matrix(rnorm(20000*3)*100, ncol=3);
   rgl::triangles3d(cubes3D.tris(centers));

neuroconductor/fsbrain documentation built on Sept. 16, 2020, 2:30 p.m.