mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-31 04:31:15 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			189 lines
		
	
	
	
		
			4.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			189 lines
		
	
	
	
		
			4.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifdef WIN32
 | |
| 	#ifndef WIN32_LEAN_AND_MEAN
 | |
| 		#define WIN32_LEAN_AND_MEAN
 | |
| 	#endif
 | |
| 	#ifndef NOMINMAX
 | |
| 		#define NOMINMAX
 | |
| 	#endif
 | |
| 	#include <Windows.h>
 | |
| #endif
 | |
| 
 | |
| #include <float.h>
 | |
| #include <stddef.h>
 | |
| #include <stdio.h>
 | |
| #include <stdlib.h>
 | |
| #include <string.h>
 | |
| #include <time.h>
 | |
| 
 | |
| #include <algorithm>
 | |
| #include <array>
 | |
| #include <atomic>
 | |
| #include <cassert>
 | |
| #include <chrono>
 | |
| #include <condition_variable>
 | |
| #include <cstdarg>
 | |
| #include <cstddef>
 | |
| #include <cstdint>
 | |
| #include <cstdlib>
 | |
| #include <cstring>
 | |
| #include <ctime>
 | |
| #include <deque>
 | |
| #include <Eigen/Dense>
 | |
| #include <exception> 
 | |
| #include <exception>
 | |
| #include <fstream>
 | |
| #include <functional>
 | |
| #include <future>
 | |
| #include <iostream>
 | |
| #include <list>
 | |
| #include <locale>
 | |
| #include <map>
 | |
| #include <memory>
 | |
| #include <mutex>
 | |
| #include <numeric>
 | |
| #include <ostream>
 | |
| #include <random>
 | |
| #include <regex>
 | |
| #include <set>
 | |
| #include <sstream>
 | |
| #include <stack>
 | |
| #include <stdexcept>
 | |
| #include <string>
 | |
| #include <thread>
 | |
| #include <unordered_map>
 | |
| #include <utility>
 | |
| #include <vector>
 | |
| 
 | |
| #include <boost/algorithm/clamp.hpp>
 | |
| #include <boost/algorithm/string.hpp>
 | |
| #include <boost/algorithm/string/classification.hpp>
 | |
| #include <boost/algorithm/string/predicate.hpp>
 | |
| #include <boost/algorithm/string/split.hpp>
 | |
| #include <boost/algorithm/string/trim.hpp>
 | |
| #include <boost/any.hpp>
 | |
| #include <boost/asio.hpp>
 | |
| #include <boost/asio/ip/address.hpp>
 | |
| #include <boost/date_time/posix_time/posix_time_duration.hpp>
 | |
| #include <boost/endian/conversion.hpp>
 | |
| #include <boost/filesystem.hpp>
 | |
| #include <boost/filesystem/fstream.hpp>
 | |
| #include <boost/filesystem/path.hpp>
 | |
| #include <boost/format.hpp>
 | |
| #include <boost/lexical_cast.hpp>
 | |
| #include <boost/locale.hpp>
 | |
| #include <boost/locale/encoding_utf.hpp>
 | |
| #include <boost/log/trivial.hpp>
 | |
| #include <boost/nowide/cenv.hpp>
 | |
| #include <boost/nowide/convert.hpp>
 | |
| #include <boost/nowide/cstdio.hpp>
 | |
| #include <boost/nowide/fstream.hpp>
 | |
| #include <boost/optional.hpp>
 | |
| #include <boost/property_tree/ini_parser.hpp>
 | |
| #include <boost/property_tree/json_parser.hpp>
 | |
| #include <boost/property_tree/ptree.hpp>
 | |
| #include <boost/property_tree/ptree_fwd.hpp>
 | |
| #include <boost/system/error_code.hpp>
 | |
| 
 | |
| #include <tbb/parallel_for.h>
 | |
| #include <tbb/spin_mutex.h>
 | |
| 
 | |
| #ifdef _MSC_VER
 | |
| 	// avoid some "macro redefinition" warnings
 | |
| 	#include <urlmon.h>
 | |
| #endif /* _MSC_VER */
 | |
| 
 | |
| #include <wx/app.h>
 | |
| #include <wx/bitmap.h>
 | |
| #include <wx/bmpbuttn.h>
 | |
| #include <wx/bmpcbox.h>
 | |
| #include <wx/button.h>
 | |
| #include <wx/checkbox.h>
 | |
| #include <wx/checklst.h>
 | |
| #include <wx/choice.h>
 | |
| #include <wx/choicebk.h>
 | |
| #include <wx/clipbrd.h>
 | |
| #include <wx/clrpicker.h>
 | |
| #include <wx/collpane.h>
 | |
| #include <wx/colordlg.h>
 | |
| #include <wx/colour.h>
 | |
| #include <wx/combo.h>
 | |
| #include <wx/combobox.h>
 | |
| #include <wx/dataview.h>
 | |
| #include <wx/dc.h>
 | |
| #include <wx/dcbuffer.h>
 | |
| #include <wx/dcclient.h>
 | |
| #include <wx/dcmemory.h>
 | |
| #include <wx/debug.h>
 | |
| #include <wx/dialog.h>
 | |
| #include <wx/dir.h>
 | |
| #include <wx/display.h>
 | |
| #include <wx/dnd.h>
 | |
| #include <wx/event.h>
 | |
| #include <wx/filedlg.h>
 | |
| #include <wx/filefn.h>
 | |
| #include <wx/filepicker.h>
 | |
| #include <wx/font.h>
 | |
| #include <wx/frame.h>
 | |
| #include <wx/gauge.h>
 | |
| #include <wx/gdicmn.h>
 | |
| // #include <wx/glcanvas.h>
 | |
| // #include <wx/html/htmlwin.h>
 | |
| // #include <wx/hyperlink.h>
 | |
| #include <wx/icon.h>
 | |
| #include <wx/image.h>
 | |
| #include <wx/imaglist.h>
 | |
| #include <wx/imagpng.h>
 | |
| #include <wx/intl.h> 
 | |
| #include <wx/intl.h>
 | |
| #include <wx/listctrl.h>
 | |
| #include <wx/menu.h>
 | |
| #include <wx/menuitem.h>
 | |
| #include <wx/msgdlg.h>
 | |
| #include <wx/mstream.h>
 | |
| #include <wx/notebook.h>
 | |
| #include <wx/numdlg.h> 
 | |
| #include <wx/numformatter.h>
 | |
| #include <wx/panel.h>
 | |
| #include <wx/platinfo.h>
 | |
| #include <wx/progdlg.h>
 | |
| #include <wx/rawbmp.h>
 | |
| #include <wx/scrolwin.h>
 | |
| #include <wx/settings.h>
 | |
| #include <wx/sizer.h>
 | |
| #include <wx/slider.h>
 | |
| #include <wx/spinctrl.h>
 | |
| #include <wx/statbmp.h>
 | |
| #include <wx/statbox.h>
 | |
| #include <wx/statline.h>
 | |
| #include <wx/stattext.h>
 | |
| #include <wx/statusbr.h>
 | |
| #include <wx/stdpaths.h>
 | |
| #include <wx/stdstream.h>
 | |
| #include <wx/string.h>
 | |
| #include <wx/textctrl.h>
 | |
| #include <wx/timer.h>
 | |
| #include <wx/tooltip.h>
 | |
| #include <wx/toplevel.h>
 | |
| #include <wx/treectrl.h>
 | |
| #include <wx/wfstream.h>
 | |
| #include <wx/window.h>
 | |
| #include <wx/wupdlock.h>
 | |
| #include <wx/wx.h> 
 | |
| #include <wx/wx.h>
 | |
| #include <wx/wxprec.h>
 | |
| #include <wx/zipstrm.h>
 | |
| 
 | |
| #include "libslic3r/Config.hpp"
 | |
| #include "libslic3r/PrintConfig.hpp"
 | |
| #include "libslic3r/TriangleMesh.hpp"
 | |
| #include "libslic3r/Point.hpp"
 | |
| #include "libslic3r/MultiPoint.hpp"
 | |
| #include "libslic3r/Polygon.hpp"
 | |
| #include "libslic3r/Polyline.hpp"
 | |
| #include "libslic3r/BoundingBox.hpp"
 | |
| #include "libslic3r/ClipperUtils.hpp"
 | |
| #include "libslic3r/libslic3r.h"
 | |
| 
 | |
| #ifdef _WIN32
 | |
| #include "GUI/format.hpp"
 | |
| #endif // _WIN32
 | 
