GraphicsPath.cs 918 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Drawing.Drawing2D.GraphicsPath.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002/3 Ximian, Inc
  8. //
  9. using System;
  10. namespace System.Drawing.Drawing2D
  11. {
  12. /// <summary>
  13. /// Summary description for GraphicsPath.
  14. /// </summary>
  15. public sealed class GraphicsPath //: MarshalByRefObject, ICloneable, IDisposable
  16. {
  17. // Constructors
  18. //[MonoTODO]
  19. //public GraphicsPath() {
  20. //}
  21. //[MonoTODO]
  22. //public GraphicsPath(FillMode fillMode) : this() {
  23. //}
  24. //[MonoTODO]
  25. //public GraphicsPath(Point[] pts, byte[] types) : this() {
  26. //}
  27. //[MonoTODO]
  28. //public GraphicsPath(PointF[] pts, byte[] types) : this() {
  29. //}
  30. //[MonoTODO]
  31. //public GraphicsPath(Point[] pts, byte[] types, FillMode fillmode) : this(pts, types) {
  32. //}
  33. //[MonoTODO]
  34. //public GraphicsPath(PointF[] pts, byte[] types, FillMode fillmode) : this(pts, types) {
  35. //}
  36. }
  37. }