| 137 | double play_px, play_py; |
| 138 | |
| 139 | Synth(HWND hwnd) : WinAudio(hwnd, sample_rate) { |
| 140 | audio_reset = true; |
| 141 | audio_pause = false; |
| 142 | volume = 8000.0; |
| 143 | play_x = 0.0; |
| 144 | play_y = 0.0; |
| 145 | play_cx = 0.0; |
| 146 | play_cy = 0.0; |
| 147 | play_nx = 0.0; |
| 148 | play_ny = 0.0; |
| 149 | play_px = 0.0; |
| 150 | play_py = 0.0; |
| 151 | } |
| 152 | |
| 153 | void SetPoint(double x, double y) { |
| 154 | play_nx = x; |
nothing calls this directly
no outgoing calls
no test coverage detected