| 123456789101112131415161718192021222324252627 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Eink.AOIDefectAnalysis{    class HeatPoint    {        public int X;        public int Y;        public int Width;        public int Height;        public float Rotation;        public byte Intensity;        public HeatPoint(int iX, int iY, int iWidth, int iHeight, byte bIntensity,float iRotation)        {            X = iX;            Y = iY;            Width = iWidth;            Height = iHeight;            Rotation = iRotation;            Intensity = bIntensity;        }    }}
 |