PlotRelative.cs 417 B

1234567891011121314151617181920
  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. /// PR command
  9. /// </summary>
  10. public class PlotRelative : CommandBase<float>
  11. {
  12. public PlotRelative(float x, float y) : base()
  13. {
  14. Name = "PR";
  15. Parameters.Add(x);
  16. Parameters.Add(y);
  17. }
  18. }
  19. }