mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-30 12:11:15 -06:00 
			
		
		
		
	Fixed minor compilation issue
This commit is contained in:
		
							parent
							
								
									f2c5e799b1
								
							
						
					
					
						commit
						c63bd8165d
					
				
					 1 changed files with 3 additions and 1 deletions
				
			
		|  | @ -23,7 +23,9 @@ class Point | |||
|     public: | ||||
|     coord_t x; | ||||
|     coord_t y; | ||||
|     explicit Point(coord_t _x = 0, coord_t _y = 0): x(_x), y(_y) {}; | ||||
|     Point(coord_t _x = 0, coord_t _y = 0): x(_x), y(_y) {}; | ||||
|     Point(int _x, int _y): x(_x), y(_y) {}; | ||||
|     Point(long long _x, long long _y): x(_x), y(_y) {};  // for Clipper
 | ||||
|     Point(double x, double y); | ||||
|     bool operator==(const Point& rhs) const; | ||||
|     std::string wkt() const; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Alessandro Ranellucci
						Alessandro Ranellucci