mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 11:22:45 +00:00 
			
		
		
		
	Soundplayer: Use exp() instead of pow(E, n)
This commit is contained in:
		
							parent
							
								
									3e135f347f
								
							
						
					
					
						commit
						f6ddaef8bf
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -46,7 +46,7 @@ void BarsVisualizationWidget::paint_event(GUI::PaintEvent& event) | |||
|         groups[i / bins_per_group] += AK::fabs(m_sample_buffer.data()[i].real()); | ||||
|     } | ||||
|     for (int i = 0; i < group_count; i++) | ||||
|         groups[i] /= max * freq_bin / (m_adjust_frequencies ? (clamp(AK::pow(AK::E<double>, (double)i / group_count * 3.) - 1.75, 1., 15.)) : 1.); | ||||
|         groups[i] /= max * freq_bin / (m_adjust_frequencies ? (clamp(AK::exp((double)i / group_count * 3.) - 1.75, 1., 15.)) : 1.); | ||||
| 
 | ||||
|     const int horizontal_margin = 30; | ||||
|     const int top_vertical_margin = 15; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Hendiadyoin1
						Hendiadyoin1