// // System.Drawing.Drawing2D.GraphicsPath.cs // // Author: // Dennis Hayes (dennish@Raytek.com) // // (C) 2002/3 Ximian, Inc // using System; namespace System.Drawing.Drawing2D { /// /// Summary description for GraphicsPath. /// public sealed class GraphicsPath //: MarshalByRefObject, ICloneable, IDisposable { // Constructors //[MonoTODO] //public GraphicsPath() { //} //[MonoTODO] //public GraphicsPath(FillMode fillMode) : this() { //} //[MonoTODO] //public GraphicsPath(Point[] pts, byte[] types) : this() { //} //[MonoTODO] //public GraphicsPath(PointF[] pts, byte[] types) : this() { //} //[MonoTODO] //public GraphicsPath(Point[] pts, byte[] types, FillMode fillmode) : this(pts, types) { //} //[MonoTODO] //public GraphicsPath(PointF[] pts, byte[] types, FillMode fillmode) : this(pts, types) { //} } }