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
namestringThe name of this element.
countintThe number of instances of this element.
instancesList<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
Instances
The instances of this elements properties.
public List<PlyReader.PlyProperty[]> Instances { get; }
Property Value
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; }