From a84c323b2884dbafe8f0f93d08facf98ca5c5363 Mon Sep 17 00:00:00 2001 From: snevermind <51538045+snevermind@users.noreply.github.com> Date: Tue, 22 Sep 2026 06:43:28 -0500 Subject: [PATCH] Fix Raise3D Pro3/Pro3 Plus printable_area (single vs dual extruder) (#15243) Fix incorrect printable_area for Raise3D Pro3 and Pro3 Plus profiles All Raise3D Pro3/Pro3 Plus machine profiles (Left, Right, Dual) shared the same 340x300 printable_area regardless of single vs dual extruder use. This overstated single-extruder X travel by 40mm and failed to shrink the Dual profile to the real nozzle-overlap zone. Corrected to Raise3D's published build volume specs: - Single extruder (Left/Right): 300 x 300 mm - Dual extruder: 255 x 300 mm printable_height (300 for Pro3, 605 for Pro3 Plus) and origin (0,0) are unchanged; both were already correct. Source: https://www.raise3d.com/pro3-series/ Co-authored-by: Jon Ashton Co-authored-by: SoftFever <103989404+SoftFever@users.noreply.github.com> --- .../Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json | 4 ++-- .../Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json | 4 ++-- .../Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json | 4 ++-- .../Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json | 4 ++-- .../Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json | 4 ++-- .../Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json index 660abd55d4..64b55dffaa 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json @@ -21,8 +21,8 @@ ], "printable_area": [ "0x0", - "340x0", - "340x300", + "255x0", + "255x300", "0x300" ], "printable_height": "300", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json index 433dddfff7..5275f02ccf 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json @@ -21,8 +21,8 @@ ], "printable_area": [ "0x0", - "340x0", - "340x300", + "300x0", + "300x300", "0x300" ], "printable_height": "300", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json index 2cbbe2fc49..59b86fd468 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json @@ -21,8 +21,8 @@ ], "printable_area": [ "0x0", - "340x0", - "340x300", + "300x0", + "300x300", "0x300" ], "printable_height": "300", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json index 566911b4c6..e576937531 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json @@ -21,8 +21,8 @@ ], "printable_area": [ "0x0", - "340x0", - "340x300", + "255x0", + "255x300", "0x300" ], "printable_height": "605", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json index daaef6abdb..a7da5981f0 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json @@ -21,8 +21,8 @@ ], "printable_area": [ "0x0", - "340x0", - "340x300", + "300x0", + "300x300", "0x300" ], "printable_height": "605", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json index 1e842a07ae..2ee32e65d3 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json @@ -21,8 +21,8 @@ ], "printable_area": [ "0x0", - "340x0", - "340x300", + "300x0", + "300x300", "0x300" ], "printable_height": "605",