* Nozzle.cpp: replace incorrect M_2_PI (2/pi) with 2.0 * M_PI * Use RADIANS(360) instead of 2 * M_PI
This commit is contained in:
		
				
					committed by
					
						 Scott Lahteine
						Scott Lahteine
					
				
			
			
				
	
			
			
			
						parent
						
							79c402b052
						
					
				
				
					commit
					cffd052fee
				
			| @@ -124,8 +124,8 @@ | ||||
|     for (uint8_t s = 0; s < strokes; s++) | ||||
|       for (uint8_t i = 0; i < NOZZLE_CLEAN_CIRCLE_FN; i++) | ||||
|         do_blocking_move_to_xy( | ||||
|           middle.x + sin((M_2_PI / NOZZLE_CLEAN_CIRCLE_FN) * i) * radius, | ||||
|           middle.y + cos((M_2_PI / NOZZLE_CLEAN_CIRCLE_FN) * i) * radius | ||||
|           middle.x + sin((RADIANS(360) / NOZZLE_CLEAN_CIRCLE_FN) * i) * radius, | ||||
|           middle.y + cos((RADIANS(360) / NOZZLE_CLEAN_CIRCLE_FN) * i) * radius | ||||
|         ); | ||||
|  | ||||
|     // Let's be safe | ||||
|   | ||||
		Reference in New Issue
	
	Block a user