mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-20 19:04:06 +00:00
Change to 0 bits as the default setting for Draco export precision.
This commit is contained in:
@@ -5,8 +5,8 @@ namespace Slic3r {
|
||||
|
||||
#define DRC_BITS_MIN 0
|
||||
#define DRC_BITS_MAX 30
|
||||
#define DRC_BITS_DEFAULT 16
|
||||
#define DRC_BITS_DEFAULT_STR "16"
|
||||
#define DRC_BITS_DEFAULT 0
|
||||
#define DRC_BITS_DEFAULT_STR "0"
|
||||
|
||||
class TriangleMesh;
|
||||
class ModelObject;
|
||||
|
||||
@@ -1364,8 +1364,8 @@ void PreferencesDialog::create_items()
|
||||
wxEmptyString,
|
||||
_L("bits"),
|
||||
_L("Reducing the bits reduces the file precision and size.\n"
|
||||
"~16 bits may be recommended and within the tolerances of 3D printing.\n"
|
||||
"0 disables quantization producing an effectively lossless but compressed file."),
|
||||
"~16 bits may be recommended and within the tolerances of 3D printing.\n"
|
||||
"drc_bits", DRC_BITS_MIN, DRC_BITS_MAX);
|
||||
g_sizer->Add(item_draco_position_bits);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user