Ejemplo n.º 1
0
        public static Bitmap Create(int width, int height, List <Location> occurences, List <int> occurencesCount = null)
        {
            HeatMapMaker heatmap = new HeatMapMaker(width, height, occurences, occurencesCount);

            return(heatmap.HeatMap);
        }
Ejemplo n.º 2
0
 public static Bitmap Create(int width, int height, List<Location> occurences, List<int> occurencesCount = null)
 {
     HeatMapMaker heatmap = new HeatMapMaker(width, height, occurences, occurencesCount);
     return heatmap.HeatMap;
 }