Shapes.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. namespace CommonLang.Vector
  2. {
  3. public interface IShape
  4. {
  5. }
  6. public struct Rectangle : IShape
  7. {
  8. public float x;
  9. public float y;
  10. public float w;
  11. public float h;
  12. public Rectangle(float x, float y, float w, float h)
  13. {
  14. this.x = x;
  15. this.y = y;
  16. this.w = w;
  17. this.h = h;
  18. }
  19. }
  20. public struct Round : IShape
  21. {
  22. public float x;
  23. public float y;
  24. public float r;
  25. public Round(float x, float y, float r)
  26. {
  27. this.x = x;
  28. this.y = y;
  29. this.r = r;
  30. }
  31. }
  32. public struct Fan : IShape
  33. {
  34. public float x;
  35. public float y;
  36. public float r;
  37. public float angle_range;
  38. public float direction;
  39. public Fan(float x, float y, float r, float angle, float d)
  40. {
  41. this.x = x;
  42. this.y = y;
  43. this.r = r;
  44. this.angle_range = angle;
  45. this.direction = d;
  46. }
  47. }
  48. }