Table of Contents

Class PlyReader.PlyElement

Namespace
HelixToolkit.Wpf
Assembly
HelixToolkit.Wpf.dll

Represents a ply element.

public sealed class PlyReader.PlyElement
Inheritance
PlyReader.PlyElement
Inherited Members

Constructors

PlyElement(string, int, List<PlyProperty[]>)

Initializes a new PlyReader.PlyElement.

public PlyElement(string name, int count, List<PlyReader.PlyProperty[]> instances)

Parameters

name string

The name of this element.

count int

The number of instances of this element.

instances List<PlyReader.PlyProperty[]>

The instances of this elements properties.

Properties

Count

The number of times this element is expected to appear.

public int Count { get; }

Property Value

int

Instances

The instances of this elements properties.

public List<PlyReader.PlyProperty[]> Instances { get; }

Property Value

List<PlyReader.PlyProperty[]>

Remarks

An element can have any number of properties and that list of properties can appear Count number of times. This property holds those values.

Name

The name of this element.

public string Name { get; }

Property Value

string