Animatroller.Framework.Effect.MasterSweeper.Job.SetValues C# (CSharp) Method

SetValues() private method

private SetValues ( ) : void
return void
            private void SetValues()
            {
                int index1 = ((int)this.index + this.offset1) % SweeperTables.DataPoints;
                int index2 = ((int)this.index + this.offset2) % SweeperTables.DataPoints;
                int index3 = ((int)this.index + this.offset3) % SweeperTables.DataPoints;

                this.value1 = SweeperTables.DataValues1[index1];
                this.value2 = SweeperTables.DataValues2[index2];
                this.value3 = SweeperTables.DataValues3[index3];

                this.valueTicks = this.ticks;
            }