Class DreamMesh<T>
Simple mesh representation for DreamFusion.
public class DreamMesh<T>
Type Parameters
TThe numeric type.
- Inheritance
-
DreamMesh<T>
- Inherited Members
Properties
Colors
Vertex colors.
public List<DreamVector3<T>>? Colors { get; set; }
Property Value
- List<DreamVector3<T>>
Normals
Vertex normals.
public List<DreamVector3<T>>? Normals { get; set; }
Property Value
- List<DreamVector3<T>>
Triangles
Triangle indices (three per triangle).
public List<int> Triangles { get; set; }
Property Value
Vertices
Vertex positions.
public List<DreamVector3<T>> Vertices { get; set; }
Property Value
- List<DreamVector3<T>>