185.0185.08.0
Loading the interactive model…
Interactive 3D model of Dremel 565 Routing Template

Brackets and mounts

Dremel 565 Routing Template

1 views
Bounding box
185.0 × 185.0 × 8.0 mm
Engine
Precision B-rep
Parameters
5
Published
September 10, 2026

Download

Free to download and use. See the terms.

The prompt

// Dremel 565 Routing Template for Bambu Lab A1 // Creates a 5mm OD corner fillet, 2.5mm from the edge of a 100x100mm wood block. $fn = 120; // High resolution smooth curves // Dimensions based on math calculations wood_size = 100; // 10cm wood piece groove_offset = 2.5; // 2.5mm from the edge shroud_radius = 30; // Dremel 565 shroud radius // Calculated internal cutout dimensions inner_size = 155; // 15.5cm total inner width inner_radius = 32.5; // 32.5mm inner corner radius frame_thickness = 15; // Sturdy 15mm wall for clamping template_height = 8; // 8mm height to guide the Dremel shroud outer_size = inner_size + (frame_thickness * 2); difference() { // Outer Frame Base linear_extrude(height = template_height) { minkowski() { square([outer_size - (inner_radius * 2), outer_size - (inner_radius * 2)], center = true); circle(r = inner_radius + frame_thickness); } } // Inner Cutout Guide (Where the Dremel travels) translate([0, 0, -1]) // Slight offset to ensure a clean cutout through the model linear_extrude(height = template_height + 2) { minkowski() { square([inner_size - (inner_radius * 2), inner_size - (inner_radius * 2)], center = true); circle(r = inner_radius); } } }

Parameters

NameValueRange
Wood Block Size100 mm50 – 200
Groove Offset from Edge2.5 mm0.5 – 10
Dremel Shroud Radius30 mm20 – 40
Frame Wall Thickness15 mm5 – 30
Template Height8 mm3 – 20

Every value above is a live dimension. Open a model like this in the editor and each one becomes a slider you can drag before exporting.