| 1234567891011121314151617181920212223242526272829 |
- using System.Collections.Generic;
- namespace DotRecast.Detour.TileCache
- {
- public class DtTempContour
- {
- public List<int> verts;
- public int nverts;
- public List<int> poly;
- public DtTempContour()
- {
- verts = new List<int>();
- nverts = 0;
- poly = new List<int>();
- }
- public int Npoly()
- {
- return poly.Count;
- }
- public void Clear()
- {
- nverts = 0;
- verts.Clear();
- }
- };
- }
|