Free cookie consent management tool by TermsFeed Policy Generator

Changeset 2299


Ignore:
Timestamp:
08/19/09 15:35:13 (15 years ago)
Author:
mkommend
Message:

added ctor with !xJitter and !yJitter for VisualMatrixRow (ticket #723)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Charting/3.3/VisualMatrixRow.cs

    r2295 r2299  
    1717      this.xJitter = random.NextDouble() * 2.0 - 1.0;
    1818      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;
    1927    }
    2028
Note: See TracChangeset for help on using the changeset viewer.