The tetrahedron has 4 faces and 4 vertices
The cube has 12 faces and 8 vertices
My choice of colors were blue and red ie: color1 = [1.0,0.0,0.0], color2 = [0.0,0.0,1.0]
This transform is rotating the camera -90 degrees along the z-axis
R_relative=[[0, 1, 0], [-1, 0, 0], [0, 0, 1]] T_relative=[0, 0, 0]
This is translating the camera 2 units along the z-axis
R_relative=[[1, 0, 0], [0, 1, 0], [0, 0, 1]] T_relative=[0, 0, 2]
This is translating the camera in both the 0.5 along x and 0.5 along y axis
R_relative = [[1, 0, 0], [0, 1, 0], [0, 0, 1]] T_relative = [0.5, -0.5, 0]
This transformation is rotating the camera 90 along the y axis and translating it to the center in both x and z
R_relative=[[0,0,1], [0, 1, 0], [-1, 0, 0]] T_relative=[-3,0,3]
Some of the tradeoffs are that rendering a point cloud is significantly faster than rendering a mesh. This is because there are fewer things to render and it doesn't need connectivity information. Point cloud is easier and more memory efficient. However, it does not contain connectivity information making it harder to transform and work with in that respect.
This is a bouncing heart that changes colors when it hits the bottom
Sample = 10
Sample = 100
Sample = 1000
Sample = 10000