HeatPoint.cs 635 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Eink.AOIDefectAnalysis
  7. {
  8. class HeatPoint
  9. {
  10. public int X;
  11. public int Y;
  12. public int Width;
  13. public int Height;
  14. public float Rotation;
  15. public byte Intensity;
  16. public HeatPoint(int iX, int iY, int iWidth, int iHeight, byte bIntensity,float iRotation)
  17. {
  18. X = iX;
  19. Y = iY;
  20. Width = iWidth;
  21. Height = iHeight;
  22. Rotation = iRotation;
  23. Intensity = bIntensity;
  24. }
  25. }
  26. }