public GlowCloudView(Controler controler) { this.controler = controler; this.Width = STATICS.SCREEN_WIDTH; this.Height = STATICS.SCREEN_HEIGHT; UpdateGlows(controler.GlowList.GetGlowViews()); }
public WordCloudView(double width, double height) { this.Width = width; this.Height = height; controler = new Controler(this); controler.SetScreenSize(width, height); controler.Initialize(); glowCloud = new GlowCloudView(controler); ForceDirectedCloud = new ForceDirectedCloudView(controler); this.Children.Add(glowCloud); this.Children.Add(ForceDirectedCloud); controler.StartUIThread(); }
public ForceDirectedCloudView(Controler contrler) { this.Width = STATICS.SCREEN_WIDTH; this.Height = STATICS.SCREEN_HEIGHT; this.controler = contrler; }
public Graph_Generator(Controler controler) { this.ctrler = controler; }