Fix cut test by forcing focus on material surface

This commit is contained in:
Fabian Müller 2024-10-08 01:31:29 +02:00
parent 09667b86d5
commit e4512627b7

View File

@ -164,9 +164,6 @@ function setMarkProfile() {
function focusTest(x, y) {
setMarkProfile();
// store to reset
var oldFocus = get("focus");
// focus on the material surface
set("focus", 0);
@ -210,6 +207,9 @@ function focusTest(x, y) {
line(xCoord, y + maxLineHeight - currentLineHeight);
}
// focus on the material surface
set("focus", 0);
// draw minimum and maximum values on the edges as well as a zero marker
var yTextOffset = maxLineHeight + 1 * spacing;
@ -231,11 +231,6 @@ function focusTest(x, y) {
move(roofX, y + yTextOffset);
line(roofX + sign * fontWidth * 1.5, y + yTextOffset + fontWidth * 1.5);
}
// finally, restore focus
// for our marks, the negative focus won't have much of an impact, and I really don't feel like setting and resetting it for every single rectangle
// it's most relevant for the focus test
var oldFocus = set("focus", oldFocus);
}