GraphicsPath.cs 747 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. namespace System.Drawing2d
  3. {
  4. /// <summary>
  5. /// Summary description for GraphicsPath.
  6. /// </summary>
  7. public sealed class GraphicsPath //: MarshalByRefObject, ICloneable, IDisposable
  8. {
  9. //[MonoTODO]
  10. public GraphicsPath() {
  11. }
  12. //[MonoTODO]
  13. //public GraphicsPath(FillMode fillMode) : this() {
  14. //}
  15. //[MonoTODO]
  16. //public GraphicsPath(Point[] pts, byte[] types) : this() {
  17. //}
  18. //[MonoTODO]
  19. //public GraphicsPath(PointF[] pts, byte[] types) : this() {
  20. //}
  21. //[MonoTODO]
  22. //public GraphicsPath(Point[] pts, byte[] types, FillMode fillmode) : this(pts, types) {
  23. //}
  24. //[MonoTODO]
  25. //public GraphicsPath(PointF[] pts, byte[] types, FillMode fillmode) : this(pts, types) {
  26. //}
  27. }
  28. }