ChordTolerance.cs 377 B

12345678910111213141516171819
  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. /// CT command
  9. /// </summary>
  10. public class ChordTolerance : CommandBase<int>
  11. {
  12. public ChordTolerance(int n) : base()
  13. {
  14. Name = "CT";
  15. Parameters.Add(n);
  16. }
  17. }
  18. }