COTSFieldForIncA.cs 408 B

12345678910111213141516171819
  1. using OTSCLRINTERFACE;
  2. using OTSDataType;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace OTSModelSharp.Measure.OTSInclution
  10. {
  11. class COTSFieldForIncA: COTSField
  12. {
  13. public COTSFieldForIncA(Point center, double a_dPixelSize) : base(center, a_dPixelSize)
  14. {
  15. }
  16. }
  17. }