21 lines
633 B
C#
21 lines
633 B
C#
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
|
|
}
|
|
}
|