コード例 #1
0
        public ProbesActor(Host host, double layerAltitude, BindingsSource bs, ObservableCollection<VisualizationDataSource> dataSources)
            : base(bs)
        {
            meshLayers = new List<MeshLayer>();
            this.layerAltitude = layerAltitude;

            this.host = host;

            intersectedValues = new List<VisualPushpin>();

            dataSources.CollectionChanged += new NotifyCollectionChangedEventHandler(dataSources_CollectionChanged);
        }
コード例 #2
0
ファイル: ProbesActor.cs プロジェクト: gr001/PeaksProcessing2
        public ProbesActor(Host host, double layerAltitude, BindingsSource bs, ObservableCollection <VisualizationDataSource> dataSources)
            : base(bs)
        {
            meshLayers         = new List <MeshLayer>();
            this.layerAltitude = layerAltitude;

            this.host = host;

            intersectedValues = new List <VisualPushpin>();

            dataSources.CollectionChanged += new NotifyCollectionChangedEventHandler(dataSources_CollectionChanged);
        }
コード例 #3
0
        public ColorMapActor(double layerAltitude, BindingsSource bs, ObservableCollection<VisualizationDataSource> dataSources, Host host)
            : base(bs)
        {
            LinearPalette palette = new LinearPalette(swm.Colors.Blue, swm.Colors.Green, swm.Colors.Red);
            palette.IncreaseBrightness = false;
            this.palette = palette;

            meshLayers = new List<MeshLayer>();
            layerHelper = new LayerHelper(layerAltitude);

            this.host = host;

            dataSources.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler(dataSources_CollectionChanged);
        }
コード例 #4
0
        public ColorMapActor(double layerAltitude, BindingsSource bs, ObservableCollection <VisualizationDataSource> dataSources, Host host)
            : base(bs)
        {
            LinearPalette palette = new LinearPalette(swm.Colors.Blue, swm.Colors.Green, swm.Colors.Red);

            palette.IncreaseBrightness = false;
            this.palette = palette;

            meshLayers  = new List <MeshLayer>();
            layerHelper = new LayerHelper(layerAltitude);

            this.host = host;

            dataSources.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler(dataSources_CollectionChanged);
        }
コード例 #5
0
 public RunningIsoline(BindingsSource bs, Host host)
     : base(bs)
 {
     this.host = host;
 }
コード例 #6
0
 public RunningIsoline(BindingsSource bs, Host host)
     : base(bs)
 {
     this.host = host;
 }