5.3 Implicit Surfaces
Discuss some of the tradeoffs between rendering as a mesh vs a point cloud:
- Rendering speed: It's faster to render a point cloud comparing to a mesh because it does not need to render "faces" but points only.
- Rendering quality: The rendering quality of a point cloud highly depends on the number of sample points.
Since rendering a mesh includes surface information, it's fidelity is higher.
- Ease of use: In terms of reforming the model, it's easy to change a point cloud because it's just editing points, while it's harder to edit the faces information for a mesh.
However, mesh has faces information and higher fidelity, so it's easy to use mesh for real-world use.
- Memory usage: A point cloud generally needs less memory usage than a mesh. But specifically, in a n-dimensional space, the space complexity of a point cloud would be P*n,
where P is the number of points, while it is M**n, where M is the number of grid.