Click or drag to resize
Reader3dsInstance Property
Gets static instance of Reader3ds so you do not need to create your own instance of it.

Namespace: Ab3d
Assembly: Ab3d.Reader3ds (in Ab3d.Reader3ds.dll) Version: 9.0.5590.1040
Syntax
C#
public static Reader3ds Instance { get; }

Property Value

Type: Reader3ds
Examples

Usage: you can simply use:

myModel3DGroup = Ab3d.Reader3ds.Instance.ReadFile(fileName);

After reading file you can also access its properties through Instance. For example:

myGeometryModel3D = Ab3d.Reader3ds.Instance.NamedObjects["head"] as GeometryModel3D;
See Also