mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-19 15:19:14 +08:00
Increase printer size and add disallowed areas
With the stock firmware of the Ender 3, the size of the original printer was wrong, causing the model to land in a different place on the build plate. This led people to believe that the printer could take bigger prints. However it couldn't; it was just not allowing to print all the way down to the coordinate origin at 0,0. This makes the printer bigger but also adds disallowed areas so that you can't print anything near 0,0. Fixes #6267.
This commit is contained in:
parent
45bbb189ce
commit
726561bf30
@ -9,9 +9,14 @@
|
|||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"machine_name": { "default_value": "Creality Ender-3" },
|
"machine_name": { "default_value": "Creality Ender-3" },
|
||||||
"machine_width": { "default_value": 220 },
|
"machine_width": { "default_value": 235 },
|
||||||
"machine_depth": { "default_value": 220 },
|
"machine_depth": { "default_value": 235 },
|
||||||
"machine_height": { "default_value": 250 },
|
"machine_height": { "default_value": 250 },
|
||||||
|
"machine_disallowed_areas": {
|
||||||
|
"default_value": [
|
||||||
|
[[-117.5, 117.5], [-117.5, 108], [117.5, 108], [117.5, 117.5]],
|
||||||
|
[[-117.5, -108], [-117.5, -117.5], [117.5, -117.5], [117.5, -108]]
|
||||||
|
]},
|
||||||
"machine_head_polygon": { "default_value": [
|
"machine_head_polygon": { "default_value": [
|
||||||
[-1, 1],
|
[-1, 1],
|
||||||
[-1, -1],
|
[-1, -1],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user