mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-30 20:21:12 -06:00 
			
		
		
		
	Fix of [2.3.0-alpha4] Crash - several models cause crash when slicing #5208
Fixed some issues in internal anchors of the Adaptive Cubic infill. The ugly and dangerous implicit casting operators in Line, MultiPoint, Polyline and Polygon were made explicit.
This commit is contained in:
		
							parent
							
								
									10c41290fd
								
							
						
					
					
						commit
						62bdc192d8
					
				
					 25 changed files with 237 additions and 110 deletions
				
			
		|  | @ -369,7 +369,7 @@ bool add_cavity(Contour3D &pad, ExPolygon &top_poly, const PadConfig3D &cfg, | |||
| 
 | ||||
|     if (inner_base.empty() || middle_base.empty()) { logerr(); return false; } | ||||
| 
 | ||||
|     ExPolygons pdiff = diff_ex(top_poly, middle_base.contour); | ||||
|     ExPolygons pdiff = diff_ex((Polygons)top_poly, (Polygons)middle_base.contour); | ||||
| 
 | ||||
|     if (pdiff.size() != 1) { logerr(); return false; } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Vojtech Bubnik
						Vojtech Bubnik