Table of Contents

Class Exporter.MeshInfo

Namespace
HelixToolkit.SharpDX.Assimp
Assembly
HelixToolkit.SharpDX.Assimp.dll
protected sealed class Exporter.MeshInfo
Inheritance
Exporter.MeshInfo
Inherited Members

Constructors

MeshInfo(ulong, Geometry3D, string, int, int, Bone[]?)

Initializes a new instance of the Exporter.MeshInfo class.

public MeshInfo(ulong materialMeshKey, Geometry3D mesh, string name, int meshIndex, int materialIndex, Bone[]? bones = null)

Parameters

materialMeshKey ulong

The material mesh key.

mesh Geometry3D

The mesh.

name string

The name.

meshIndex int

Index of the mesh.

materialIndex int

Index of the material.

bones Bone[]

The bones.

Fields

AssimpMesh

The Assimp mesh

public Mesh? AssimpMesh

Field Value

Mesh

MaterialIndex

The material index

public readonly int MaterialIndex

Field Value

int

MaterialMeshKey

The material mesh key

public readonly ulong MaterialMeshKey

Field Value

ulong

Mesh

The Helix mesh

public readonly Geometry3D Mesh

Field Value

Geometry3D

MeshIndex

The mesh index

public readonly int MeshIndex

Field Value

int

Name

The name

public readonly string Name

Field Value

string

Properties

Bones

The bones if have

public Bone[]? Bones { get; set; }

Property Value

Bone[]