25 lines
406 B
C#
25 lines
406 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace vtkControl
|
|||
|
|
{
|
|||
|
|
enum vtkSelectionContent
|
|||
|
|
{
|
|||
|
|
SELECTIONS,
|
|||
|
|
GLOBALIDS,
|
|||
|
|
PEDIGREEIDS,
|
|||
|
|
VALUES,
|
|||
|
|
INDICES,
|
|||
|
|
FRUSTUM,
|
|||
|
|
LOCATIONS,
|
|||
|
|
THRESHOLDS,
|
|||
|
|
BLOCKS,
|
|||
|
|
QUERY,
|
|||
|
|
USER,
|
|||
|
|
NUM_CONTENT_TYPES
|
|||
|
|
}
|
|||
|
|
}
|