Files
wg_cpso/CaeMesh/InpElementSet.cs

26 lines
863 B
C#
Raw Permalink Normal View History

2026-03-25 18:20:24 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaeMesh
{
public class InpElementSet
{
// Properties
public string Name { get; set; }
public HashSet<string> InpElementTypeNames { get; set; }
public HashSet<int> ElementLabels { get; set; }
// Constructors
public InpElementSet(string name, HashSet<string> inpElementTypeName, HashSet<int> elementLabels)
{
Name = name;
InpElementTypeNames = inpElementTypeName;
ElementLabels = elementLabels;
}
}
}