1234567891011121314151617181920212223 |
- using OTSCLRINTERFACE;
- using OTSDataType;
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OTSModelSharp.Measure.OTSCleanliness
- {
- class COTSFieldForCleanness : COTSField
- {
- public COTSFieldForCleanness(Point center, double a_dPixelSize) : base(center, a_dPixelSize)
- {
- }
- // particle list
- }
- }
|