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