Vojtěch Bubník

Results 166 comments of Vojtěch Bubník

There is a bug in setting the output path for the precompiled headers for visual studio. It should say if(MSVC) set(_pch_cxx_pch "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/cxx_${_input_we}.pch") set(_pch_c_pch "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/c_${_input_we}.pch") not set(_pch_cxx_pch "${CMAKE_CFG_INTDIR}/cxx_${_input_we}.pch") set(_pch_c_pch "${CMAKE_CFG_INTDIR}/c_${_input_we}.pch")

just set add_compile_options(-std=c++11)

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") will not work. You have to use add_compile_options(-std=c++11) instead

It is sensitive to the input geometry, and it crashes with stack overflow or whatever. We use it for triangulating holes left after splitting an object with a plane, and...

It may help to improve usability of the Samsung S-pen https://github.com/termux/termux-app/issues/1744

Some C++17 features such as std::filesystem are not supported by OSX/clang on older OSX versions. That's why we are using boost::filesystem instead at PrusaSlicer. std::filesystem is implemented by a shared...

@AlexandreRouma Would it help if I donated one of those to you? http://www.fivedash.com/index.php?main_page=product_info&products_id=7 http://fivedash.com/index.php?main_page=product_info&cPath=2&products_id=8 http://fivedash.com/index.php?main_page=product_info&cPath=2&products_id=20

This is what we have done in PrusaSlicer to support wide range of languages: This function initializes the glyph ranges. https://github.com/prusa3d/PrusaSlicer/blob/master/src/slic3r/GUI/ImGuiWrapper.cpp#L130 Also based on the language we need to load...

Having no authorization at all in Mainsail is quite a bummer for using Mainsail in a company environment or with a hyperactive teenager in house. Without any authorization, one will...

Cura contains a simplified Planner code from the Marlin firmware, albeit with the hard coded acceleration values :-) Still the time estimates given by Cura are quite precise. One can...