| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // System.Drawing.Drawing2D.GraphicsPath.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002/3 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Drawing2D
- {
- /// <summary>
- /// Summary description for GraphicsPath.
- /// </summary>
- 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) {
- //}
- }
- }
|