FillPolygon.cs 568 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. /// FP command
  9. /// Shading of the inside of polygon defined as polygon buffer by PM, PA/PR,
  10. /// PU/PD, AA/AR, CI, and CT command is carried out. Pen position after command
  11. /// and pen up / down state will be in state before command.
  12. /// </summary>
  13. public class FillPolygon : CommandBase<float>
  14. {
  15. public FillPolygon() : base()
  16. {
  17. Name = "FP";
  18. }
  19. }
  20. }