- Timestamp:
- 07/06/09 21:59:17 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.CEDMA.Charting/3.3/BubbleChart.cs
r2139 r2140 64 64 public BubbleChart(Results results, PointD lowerLeft, PointD upperRight) 65 65 : base(lowerLeft, upperRight) { 66 // records = new List<ResultsEntry>();67 66 primitiveToEntryDictionary = new Dictionary<IPrimitive, ResultsEntry>(); 68 67 this.results = results; … … 74 73 if (resultsEntry.Get(Y_JITTER) == null) 75 74 resultsEntry.Set(Y_JITTER, random.NextDouble() * 2.0 - 1.0); 76 // records.Add(resultsEntry); 77 } 78 75 } 79 76 results.Changed += new EventHandler(results_Changed); 80 77 }
Note: See TracChangeset
for help on using the changeset viewer.