GraphicsPath.cs 893 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // System.Drawing.Drawing2D.GraphicsPath.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002 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. //[MonoTODO]
  18. public GraphicsPath() {
  19. }
  20. //[MonoTODO]
  21. //public GraphicsPath(FillMode fillMode) : this() {
  22. //}
  23. //[MonoTODO]
  24. //public GraphicsPath(Point[] pts, byte[] types) : this() {
  25. //}
  26. //[MonoTODO]
  27. //public GraphicsPath(PointF[] pts, byte[] types) : this() {
  28. //}
  29. //[MonoTODO]
  30. //public GraphicsPath(Point[] pts, byte[] types, FillMode fillmode) : this(pts, types) {
  31. //}
  32. //[MonoTODO]
  33. //public GraphicsPath(PointF[] pts, byte[] types, FillMode fillmode) : this(pts, types) {
  34. //}
  35. }
  36. }