Table of Contents

Interface IModelReader

Namespace
HelixToolkit.SharpDX
Assembly
HelixToolkit.SharpDX.dll

Interface for model readers.

public interface IModelReader

Methods

Read(Stream, ModelInfo)

Reads the model from the specified stream.

List<Object3D>? Read(Stream s, ModelInfo info = default)

Parameters

s Stream

The stream.

info ModelInfo

The model info.

Returns

List<Object3D>

The model.

Read(string, ModelInfo)

Reads the model from the specified path.

List<Object3D>? Read(string path, ModelInfo info = default)

Parameters

path string

The path.

info ModelInfo

The model info.

Returns

List<Object3D>

The model.