You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently learning how to use the KeyV2 project and have encountered some unexpected errors that I can't figure out.
For example, when I input sa_row(2) key(); into keys.scad and press F6, I successfully get the key rendered. However, changing it to sa_row(1) key(); results in the following error and no key is rendered:
However, in this case, the key is at least rendered.
Could anyone help me understand what I might be missing?
Additionally, here's another example that demonstrates a similar issue I'm facing.
I'm attempting to render keys with various profiles using the following code:
for (x = [0:1:4]) {
translate_u(0,-x) oem_row(x) key();
}
for (x = [0:1:4]) {
translate_u(1,-x) cherry_row(x) key();
}
for (x = [0:1:4]) {
translate_u(2,-x) sa_row(x) key();
}
for (x = [0:1:4]) {
translate_u(3,-x) dcs_row(x) key();
}
for (x = [0:1:4]) {
translate_u(4,-x) mt3_row(x) key();
}
The result should display a series of keys with OEM, Cherry, SA, MT3, and DCS profiles. However, while the OEM, Cherry, and DCS profiles render as expected, only two keys for the SA profile are rendered correctly. And for the MT3 profile one key is missing and most of the rendered ones are floating above the ground plane.
This issue seems to specifically affect the SA and MT3 profiles rendering under certain conditions, similar to the previous error I mentioned. Could this be related, or is there another explanation?
I use OpenSCAD-2024.03.23 64bit on Windows 11
The text was updated successfully, but these errors were encountered:
archonoff
changed the title
Doesn't work simple sa_row(1) key();
Error using sa_row(1) key();Mar 25, 2024
I'm currently learning how to use the KeyV2 project and have encountered some unexpected errors that I can't figure out.
For example, when I input
sa_row(2) key();
into keys.scad and press F6, I successfully get the key rendered. However, changing it tosa_row(1) key();
results in the following error and no key is rendered:Interestingly, modifying the code to
sa_row(1) 2u() key();
still results in errors:However, in this case, the key is at least rendered.
Could anyone help me understand what I might be missing?
Additionally, here's another example that demonstrates a similar issue I'm facing.
I'm attempting to render keys with various profiles using the following code:
The result should display a series of keys with OEM, Cherry, SA, MT3, and DCS profiles. However, while the OEM, Cherry, and DCS profiles render as expected, only two keys for the SA profile are rendered correctly. And for the MT3 profile one key is missing and most of the rendered ones are floating above the ground plane.
This issue seems to specifically affect the SA and MT3 profiles rendering under certain conditions, similar to the previous error I mentioned. Could this be related, or is there another explanation?
I use OpenSCAD-2024.03.23 64bit on Windows 11
The text was updated successfully, but these errors were encountered: