ProjectorPInfo.cs
806 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TSA_V.DeviceLibrary
{
public class ProjectorPInfo
{
public ProjectorPInfo(int x, int y, int type=1, int sizeX=4, int sizeY=4,int lineWidth=2,string showText="")
{
this.PX = x;
this.PY = y;
this.PType = type;
this.SizeX = sizeX;
this.SizeY = sizeY;
this.PenWidth = lineWidth;
}
public int PX = 2;
public int PY = 2;
public int PType = 1;
public int SizeX = 4;
public int SizeY = 4;
/// <summary>
/// 线条宽度
/// </summary>
public int PenWidth = 2;
public string ShowText = "";
}
}