Files
wg_cpso/CPSO/Selection/ItemSet/PointSelectionMethodEnum.cs

21 lines
633 B
C#
Raw Permalink 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 CPSO
{
[Serializable]
public enum PointSelectionMethodEnum
{
[StandardValue("OnPoint", Description = "On point", DisplayName = "On point")]
OnPoint,
[StandardValue("BetweenTwoPoints", Description = "Between two points", DisplayName = "Between two points")]
BetweenTwoPoints,
[StandardValue("CircleCenter", Description = "Circle center by 3 points", DisplayName = "Circle center by 3 points")]
CircleCenter
}
}