Files
wg_cpso/CaeMesh/Meshing/Gmsh/Enums/GmshAlgorithmRecombinationEnum.cs

22 lines
523 B
C#
Raw Normal View History

2026-03-25 18:20:24 +08:00
using DynamicTypeDescriptor;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaeMesh.Meshing
{
[Serializable]
public enum GmshAlgorithmRecombineEnum
{
None = -1,
Simple = 0,
Blossom = 1,
[StandardValue("SimpleFullQuad", DisplayName = "Simple full-quad")]
SimpleFullQuad = 2,
[StandardValue("BlossomFullQuad", DisplayName = "Blossom full-quad")]
BlossomFullQuad = 3
}
}