- Timestamp:
- 08/19/09 15:35:13 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.CEDMA.Charting/3.3/VisualMatrixRow.cs
r2295 r2299 17 17 this.xJitter = random.NextDouble() * 2.0 - 1.0; 18 18 this.yJitter = random.NextDouble() * 2.0 - 1.0; 19 } 20 21 public VisualMatrixRow(double xJitter, double yJitter) { 22 this.dict = new Dictionary<string, object>(); 23 this.visible = true; 24 this.selected = false; 25 this.xJitter = xJitter; 26 this.yJitter = yJitter; 19 27 } 20 28
Note: See TracChangeset
for help on using the changeset viewer.