Files
wg_cpso/CaeGlobals/Selection/Enums/vtkSelectItem.cs
2026-03-25 18:20:24 +08:00

24 lines
601 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Serialization;
namespace CaeGlobals
{
[Serializable]
public enum vtkSelectItem
{
None = 0,
Node = 1, // nodeIds
Element = 2, // elementIds
GeometryEdge = 3, // geometryEdgeIds
Surface = 4, // faceIds
Geometry = 5, // geometryIds
Part = 6, // partIds
//
GeometrySurface = 10, // geometrySurfaceIds
}
}