Пример #1
0
 public DeformVertexesNormal(float div, WaveFormFunctionType function, float _base, float amplitude, float frequency)
 {
     this.Div       = div;
     this.Function  = function;
     this.Base      = _base;
     this.Amplitude = amplitude;
     this.Frequency = frequency;
 }
Пример #2
0
 public RGBGenWave(WaveFormFunctionType function, float _base, float amplitude, float phase, float frequency)
 {
     this.Function  = function;
     this.Base      = _base;
     this.Amplitude = amplitude;
     this.Phase     = phase;
     this.Frequency = frequency;
 }
Пример #3
0
 public DeformVertexesMove(float x, float y, float z, WaveFormFunctionType function, float _base, float amplitude, float phase, float frequency)
 {
     this.X         = x;
     this.Y         = y;
     this.Z         = z;
     this.Function  = function;
     this.Base      = _base;
     this.Amplitude = amplitude;
     this.Phase     = phase;
     this.Frequency = frequency;
 }