Пример #1
0
 public GeometryContent()
 {
     this.vertices = new VertexContent(this);
 }
Пример #2
0
 internal VertexChannelCollection(VertexContent parent)
 {
     this.channels = new List <VertexChannel>();
     this.parent   = parent;
 }
Пример #3
0
 /// <summary>
 /// Creates an instance of VertexChannelCollection.
 /// </summary>
 /// <param name="vertexContent">The VertexContent object that owns this collection.</param>
 internal VertexChannelCollection(VertexContent vertexContent)
 {
     this.vertexContent = vertexContent;
     channels           = new List <VertexChannel>();
 }
Пример #4
0
 public GeometryContent()
 {
     this.vertices = new VertexContent(this);
 }
Пример #5
0
 /// <summary>
 /// Creates an instance of VertexChannelCollection.
 /// </summary>
 /// <param name="vertexContent">The VertexContent object that owns this collection.</param>
 internal VertexChannelCollection(VertexContent vertexContent)
 {
     this.vertexContent = vertexContent;
     channels           = new List <VertexChannel>();
     _insertOverload    = GetType().GetMethods().First(m => m.Name == "Insert" && m.IsGenericMethodDefinition);
 }