Exemplo n.º 1
0
        /// <summary>
        /// End a polygon started with <see cref="Begin"/>.
        /// </summary>
        public void EndPolygon()
        {
            Glu.TessEndPolygon(_Tess);

            // Release countours
            foreach (MemoryLock memoryLock in _CountourLocks)
            {
                memoryLock.Dispose();
            }
            _CountourLocks.Clear();
        }
Exemplo n.º 2
0
 /// <summary>
 /// End a polygon started with <see cref="Begin"/>.
 /// </summary>
 public void EndPolygon()
 {
     Glu.TessEndPolygon(_Tess);
 }