EdgePolygon.cs 551 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace FastReport.Export.Hpgl.Commands
  6. {
  7. /// <summary>
  8. /// EP command
  9. /// Perimeter of polygon defined as polygon buffer by PM, PA/PR, PU/PD,
  10. /// AA/AR, CI, and CT command is plotted. Pen position after command and
  11. /// pen up / down state will be in state before command.
  12. /// </summary>
  13. public class EdgePolygon : CommandBase<float>
  14. {
  15. public EdgePolygon() : base()
  16. {
  17. Name = "EP";
  18. }
  19. }
  20. }