GraphicsUtil.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CommonUI.Display
  5. {
  6. public static class GraphicsUtil
  7. {
  8. /*
  9. static public void DrawImageEllipse(Graphics g, Image image, float sx, float sy, float sw, float sh)
  10. {
  11. int density = Math.Max(32, 32);
  12. float[][] vertices = new float[density + 2][];
  13. for (int i = 0; i < vertices.Length; i++)
  14. {
  15. vertices[i] = new float[2];
  16. }
  17. float rx = sw / 2;
  18. float ry = sh / 2;
  19. float cx = sx + rx;
  20. float cy = sy + ry;
  21. vertices[0][0] = cx;
  22. vertices[0][1] = cy;
  23. float degree_start = 0;
  24. float degree_delta = (float)Math.PI * 2 / density;
  25. for (int i = 0; i < density; i++)
  26. {
  27. float idegree = degree_start + i * degree_delta;
  28. vertices[1 + i][0] = cx + (float)Math.Cos(idegree) * rx;
  29. vertices[1 + i][1] = cy + (float)Math.Sin(idegree) * ry;
  30. }
  31. vertices[density + 1][0] = vertices[0][0];
  32. vertices[density + 1][1] = vertices[0][1];
  33. g.beginImage(image);
  34. g.drawImagePolygon(vertices);
  35. }
  36. */
  37. }
  38. }