namespace Yw.WinFrmUI.Hydro
{
///
///
///
public class StyleLine2dL3d
{
///
///
///
public StyleLine2dL3d() { }
///
///
///
public StyleLine2dL3d(float width, Color color)
{
this.Width = width;
this.Color = color;
}
///
///
///
public StyleLine2dL3d(float width, string htmlColor)
{
this.Width = width;
this.Color = ColorTranslator.FromHtml(htmlColor);
}
///
///
///
public StyleLine2dL3d(StyleLine2dL3d rhs)
{
this.Width = rhs.Width;
this.Color = rhs.Color;
}
///
/// 线宽
///
public float Width { get; set; }
///
/// 线色
///
public Color Color { get; set; }
}
}