mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-03-14 07:16:07 -06:00
Change to 0 bits as the default setting for Draco export precision.
This commit is contained in:
parent
ddc51f4d88
commit
da42f69b59
2 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue