Browse Source

Use more reasonable settings values for fluid motion

CURA-10811
c.lamboo 1 year ago
parent
commit
00607cf157
1 changed files with 14 additions and 8 deletions
  1. 14 8
      resources/definitions/fdmprinter.def.json

+ 14 - 8
resources/definitions/fdmprinter.def.json

@@ -6820,25 +6820,31 @@
                     "enabled": "meshfix_fluid_motion_enabled",
                     "type": "float",
                     "unit": "mm",
-                    "default_value": 0.3
+                    "default_value": 0.1,
+                    "minimum_value": "0.01",
+                    "maximum_value": "1"
                 },
-                "meshfix_fluid_motion_small_distance":
-                {
+                "meshfix_fluid_motion_small_distance": {
                     "label": "Fluid Motion Small Distance",
                     "description": "Distance points are shifted to smooth the path",
                     "enabled": "meshfix_fluid_motion_enabled",
                     "unit": "mm",
                     "type": "float",
-                    "default_value": 0.001
+                    "default_value": 0.01,
+                    "minimum_value": "0.01",
+                    "maximum_value": "0.1"
                 },
-                "meshfix_fluid_motion_angle":
-                {
+                "meshfix_fluid_motion_angle": {
                     "label": "Fluid Motion Angle",
-                    "description": "Threshold angle of smooth toolpath transitions",
+                    "description": "Threshold angle of smooth toolpath transitions. If a toolpath deviates more then this angle from the general direction it is smoothed.",
                     "enabled": "meshfix_fluid_motion_enabled",
                     "type": "float",
                     "unit": "\u00b0",
-                    "default_value": 5
+                    "default_value": 15,
+                    "maximum_value": "90",
+                    "minimum_value": "0",
+                    "minimum_value_warning": "1",
+                    "maximum_value_warning": "35"
                 }
             }
         },