Пример #1
0
 public vsquare(int xIn, int yIn, Smoke smokeIn)
 {
     x     = xIn;
     y     = yIn;
     smoke = smokeIn;
     this.Refresh();
 }
Пример #2
0
 public vbuffer(int xIn, int yIn, Smoke smokeIn)
 {
     x         = xIn;
     y         = yIn;
     pressurex = 0;
     pressurey = 0;
     smoke     = smokeIn;
 }
Пример #3
0
 private void miProcessingSmoke_Click(object sender, EventArgs e)
 {
     if (this.smoke == null)
     {
         //MessageBox.Show("This example currently requires BASS dll:s. Download from Endogine at CodeProject and unpack in the same folder as the executable.");
         this.smoke = new Tests.Processing.Smoke();
     }
     else
     {
         this.smoke.Dispose();
         this.smoke = null;
     }
 }
Пример #4
0
 public vsquare(int xIn,int yIn, Smoke smokeIn)
 {
     x = xIn;
     y = yIn;
     smoke = smokeIn;
     this.Refresh();
 }
Пример #5
0
 public vbuffer(int xIn,int yIn, Smoke smokeIn)
 {
     x = xIn;
     y = yIn;
     pressurex = 0;
     pressurey = 0;
     smoke = smokeIn;
 }
Пример #6
0
 public particle(ERectangle emitterIn, Smoke smokeIn)
 {
     emitter = emitterIn;
     smoke = smokeIn;
 }
Пример #7
0
 private void miProcessingSmoke_Click(object sender, EventArgs e)
 {
     if (this.smoke == null)
     {
         //MessageBox.Show("This example currently requires BASS dll:s. Download from Endogine at CodeProject and unpack in the same folder as the executable.");
         this.smoke = new Tests.Processing.Smoke();
     }
     else
     {
         this.smoke.Dispose();
         this.smoke = null;
     }
 }
Пример #8
0
 public particle(ERectangle emitterIn, Smoke smokeIn)
 {
     emitter = emitterIn;
     smoke   = smokeIn;
 }