GraphicsPath.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. //
  2. // System.Drawing.Drawing2D.GraphicsPath.cs
  3. //
  4. // Authors:
  5. //
  6. // Miguel de Icaza ([email protected])
  7. //
  8. // (C) 2003 Ximian, Inc
  9. //
  10. using System;
  11. using System.Drawing;
  12. using System.Runtime.InteropServices;
  13. namespace System.Drawing.Drawing2D
  14. {
  15. public sealed class GraphicsPath : MarshalByRefObject, ICloneable, IDisposable {
  16. public GraphicsPath ()
  17. {
  18. }
  19. public object Clone ()
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. public void Dispose ()
  24. {
  25. Dispose (true);
  26. System.GC.SuppressFinalize (this);
  27. }
  28. ~GraphicsPath ()
  29. {
  30. Dispose (false);
  31. }
  32. void Dispose (bool disposing)
  33. {
  34. }
  35. //
  36. // AddArc
  37. //
  38. public void AddArc (Rectangle rect, float start_angle, float sweep_angle)
  39. {
  40. }
  41. public void AddArc (RectangleF rect, float start_angle, float sweep_angle)
  42. {
  43. }
  44. public void AddArc (int x, int y, int width, int height, float start_angle, float sweep_angle)
  45. {
  46. }
  47. public void AddArc (float x, float y, float width, float height, float start_angle, float sweep_angle)
  48. {
  49. }
  50. //
  51. // AddLine
  52. //
  53. public void AddLine (Point a, Point b)
  54. {
  55. }
  56. public void AddLine (PointF a, PointF b)
  57. {
  58. }
  59. public void AddLine (int x1, int y1, int x2, int y2)
  60. {
  61. }
  62. public void AddLine (float x1, float y1, float x2, float y2)
  63. {
  64. }
  65. }
  66. }