using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing.Design;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Xml.Serialization;
namespace GeoSigma.SigmaDrawerStyle
{
///
/// 体积统计曲面类型
///
public class CurveSurfaceProperty
{
private CurveSurfaceType curveSurfaceMethod;
///
/// Initializes a new instance of the class.
///
public CurveSurfaceProperty()
{
}
[XmlIgnore]
[Category("体积"), DisplayName("\t\t\t曲面选择")]
public CurveSurfaceType SurfaceType
{
get
{
return this.curveSurfaceMethod;
}
set
{
this.curveSurfaceMethod = value;
}
}
public enum CurveSurfaceType
{
构造图,
等厚图,
}
}
}