Description Usage Arguments Value Examples
Vectorized version of cube3D.tris
| 1 | cubes3D.tris(centers, edge_length = 1)
 | 
| 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'. | 
matrix of triangle coordinates, see cube3D.tris.
| 1 2 3 |    # Plot a 3D cloud of 20000 voxels:
   centers = matrix(rnorm(20000*3)*100, ncol=3);
   rgl::triangles3d(cubes3D.tris(centers));
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.