Table of Contents

Class DreamMesh<T>

Namespace
AiDotNet.Diffusion.Models
Assembly
AiDotNet.dll

Simple mesh representation for DreamFusion.

public class DreamMesh<T>

Type Parameters

T

The 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

List<int>

Vertices

Vertex positions.

public List<DreamVector3<T>> Vertices { get; set; }

Property Value

List<DreamVector3<T>>