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