Checkpoint cover frame overhang

This commit is contained in:
2026-06-05 14:09:15 +02:00
parent 9f659f8f63
commit 139086917e
2 changed files with 5 additions and 4 deletions
+4 -3
View File
@@ -71,8 +71,9 @@ const PAGE_WIDTH = 1.62;
const PAGE_SPLINE_LENGTH = 1.955;
const PAGE_LINE_SEGMENTS = 24;
const PAGE_DEPTH = 2.24;
const COVER_OVERHANG = 0.13;
const COVER_SUPPORT_OVERHANG = 0.055;
const COVER_DEPTH = 2.30;
const COVER_OVERHANG = (COVER_DEPTH - PAGE_DEPTH) * 0.5;
const COVER_SUPPORT_OVERHANG = COVER_OVERHANG;
const HINGE_INSET = 0.07;
const SUPPORT_ANGLE_STEPS = 720;
const SUPPORT_ANGLE_CANDIDATES = Array.from({ length: SUPPORT_ANGLE_STEPS }, (_, sample) => {
@@ -206,7 +207,7 @@ function setPageCount(value) {
function rebuildBook() {
clearGroup(book);
const coverDepth = 2.30;
const coverDepth = COVER_DEPTH;
const coverThickness = BOOK_PROFILE.coverThickness;
const pageWidth = PAGE_WIDTH;
const pageSplineLength = PAGE_SPLINE_LENGTH;