Exemplo n.º 1
0
 public vsquare(int xIn, int yIn, Smoke smokeIn)
 {
     x     = xIn;
     y     = yIn;
     smoke = smokeIn;
     this.Refresh();
 }
Exemplo n.º 2
0
 public vbuffer(int xIn, int yIn, Smoke smokeIn)
 {
     x         = xIn;
     y         = yIn;
     pressurex = 0;
     pressurey = 0;
     smoke     = smokeIn;
 }
Exemplo n.º 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;
     }
 }
Exemplo n.º 4
0
 public vsquare(int xIn,int yIn, Smoke smokeIn)
 {
     x = xIn;
     y = yIn;
     smoke = smokeIn;
     this.Refresh();
 }
Exemplo n.º 5
0
 public vbuffer(int xIn,int yIn, Smoke smokeIn)
 {
     x = xIn;
     y = yIn;
     pressurex = 0;
     pressurey = 0;
     smoke = smokeIn;
 }
Exemplo n.º 6
0
 public particle(ERectangle emitterIn, Smoke smokeIn)
 {
     emitter = emitterIn;
     smoke = smokeIn;
 }
Exemplo n.º 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;
     }
 }
Exemplo n.º 8
0
 public particle(ERectangle emitterIn, Smoke smokeIn)
 {
     emitter = emitterIn;
     smoke   = smokeIn;
 }