public SpiralScanArgs() : base()
        {
            ScanCurve = new ScanCurve3D();
            this.ScanCurveGroup.Add(ScanCurve);

            AxisXTitle = "Horizontal";
            AxisYTitle = "Verical";
            AxisZTitle = "Intensity";

            Properties.Add(new Property("Instrument"));
            Properties.Add(new Property("Axis"));
            Properties.Add(new Property("Axis2"));
            Properties.Add(new Property("Interval"));
            Properties.Add(new Property("Range"));
            Properties.Add(new Property("MoveSpeed"));
        }
示例#2
0
        public SpiralScanArgs(SystemService Service) : base(Service)
        {
            ScanCurve = new ScanCurve3D();
            this.ScanCurveGroup.Add(ScanCurve);

            AxisXTitle = "Horizontal";
            AxisYTitle = "Verical";
            AxisZTitle = "Indensity";

            Properties.Add(new Property("Instrument"));
            Properties.Add(new Property("Axis"));
            Properties.Add(new Property("Axis2"));
            Properties.Add(new Property("ScanInterval"));
            Properties.Add(new Property("ScanRestriction"));
            Properties.Add(new Property("MoveSpeed"));
        }
示例#3
0
        public SnakeRouteScanArgs() : base()
        {
            ScanCurve = new ScanCurve3D();
            ScanCurveGroup.Add(ScanCurve);

            AxisXTitle = "Horizontal";
            AxisYTitle = "Verical";
            AxisZTitle = "Intensity";

            Properties.Add(new Property("Instrument"));
            Properties.Add(new Property("Axis"));
            Properties.Add(new Property("AxisRestriction"));
            Properties.Add(new Property("Axis2"));
            Properties.Add(new Property("Axis2Restriction"));
            Properties.Add(new Property("ScanInterval"));
            Properties.Add(new Property("MoveSpeed"));
        }