PathData.cs 609 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // System.Drawing.Drawing2D.PathData.cs
  3. //
  4. // Authors:
  5. // Dennis Hayes ([email protected])
  6. // Andreas Nahr ([email protected])
  7. //
  8. // (C) 2002/3 Ximian, Inc
  9. //
  10. using System;
  11. namespace System.Drawing.Drawing2D
  12. {
  13. /// <summary>
  14. /// Summary description for PathData.
  15. /// </summary>
  16. public sealed class PathData
  17. {
  18. PointF[] points = null;
  19. byte[] types = null;
  20. public PathData()
  21. {
  22. }
  23. public PointF[] Points {
  24. get { return points; }
  25. set { points = value; }
  26. }
  27. public byte[] Types {
  28. get { return types; }
  29. set { types = value; }
  30. }
  31. }
  32. }