示例#1
0
        public System.Drawing.Bitmap Render()
        {
            List <System.Drawing.Color> nList     = new List <System.Drawing.Color>();
            List <Structure>            stageDate = stage.StageData.ToList();

            stageDate.Sort();
            foreach (Structure S in stageDate)
            {
                nList.AddRange(L.TuneStructureColorSet(S, S.CenterPoint));
            }

            Projector Projectex = new Projector(stageDate, stage.Locations, Rendex.stageWpx, Rendex.stageHpx);

            return(Rendex.GenerateStageView(Projectex.GeneratePorjection(), nList, StageBackcolor));
        }