IMHOTEP Framework
Main Page
Related Pages
Namespaces
Classes
Files
File List
All
Classes
Namespaces
Functions
Variables
Enumerations
Enumerator
Properties
Pages
Assets
Core
Patient
BlenderFileLoader
BlenderMeshReader
PolygonListEntry.cs
1
using
System;
2
using
System.Collections.Generic;
3
using
UnityEngine;
4
5
namespace
BlenderMeshReader
6
{
7
8
class
PolygonListEntry
9
{
10
public
int
StartIndex {
get
;
private
set; }
11
public
int
Lenght {
get
;
private
set; }
12
13
public
PolygonListEntry
(
int
startIndex,
int
length)
14
{
15
this.StartIndex = startIndex;
16
this.Lenght = length;
17
}
18
}
19
}
BlenderMeshReader.PolygonListEntry
Definition:
PolygonListEntry.cs:8
Generated by
1.8.6