Fix text labels on gates

This commit is contained in:
Matt McWilliams 2024-09-14 11:18:33 -04:00
parent 1f18b59f9d
commit 320e38bfd8
8 changed files with 11 additions and 11 deletions

View File

@ -1,5 +1,5 @@
{ {
"version": "1.8.129", "version": "1.8.130",
"ext_port": 1111, "ext_port": 1111,
"profiles": { "profiles": {
"mcopy": { "mcopy": {

2
app/package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "mcopy-app", "name": "mcopy-app",
"version": "1.8.129", "version": "1.8.130",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {

View File

@ -1,6 +1,6 @@
{ {
"name": "mcopy-app", "name": "mcopy-app",
"version": "1.8.129", "version": "1.8.130",
"description": "GUI for the mcopy small gauge film optical printer platform", "description": "GUI for the mcopy small gauge film optical printer platform",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {

View File

@ -1,5 +1,5 @@
{ {
"version": "1.8.129", "version": "1.8.130",
"ext_port": 1111, "ext_port": 1111,
"profiles": { "profiles": {
"mcopy": { "mcopy": {

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "mcopy", "name": "mcopy",
"version": "1.8.129", "version": "1.8.130",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "mcopy", "name": "mcopy",
"version": "1.8.129", "version": "1.8.130",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"alert": "file:app/lib/alert", "alert": "file:app/lib/alert",

View File

@ -1,6 +1,6 @@
{ {
"name": "mcopy", "name": "mcopy",
"version": "1.8.129", "version": "1.8.130",
"description": "Small gauge film optical printer platform", "description": "Small gauge film optical printer platform",
"main": "build.js", "main": "build.js",
"directories": { "directories": {

View File

@ -1,5 +1,5 @@
{ {
"version": "1.8.129", "version": "1.8.130",
"ext_port": 1111, "ext_port": 1111,
"profiles": { "profiles": {
"mcopy": { "mcopy": {

View File

@ -86,9 +86,9 @@ module text_void (string = "example", pos = [0, 0, 0], rot = [0, 0, 0], letter_s
module gate_mask_text (format = "") { module gate_mask_text (format = "") {
if (format == "standard16") { if (format == "standard16") {
text_void("16mm", pos= [11.5, 0, -3], rot = [90, 0, 90], letter_size = 4); text_void("16mm", pos= [11, 0, -3], rot = [90, 0, 90], letter_size = 4);
} else if (format == "super16") { } else if (format == "super16") {
text_void("super16", pos= [11.5, 0, -4], rot = [90, 0, 90], letter_size = 4); text_void("super16", pos= [11, 0, -4], rot = [90, 0, 90], letter_size = 4);
} }
} }
@ -251,7 +251,7 @@ module debug () {
} }
PART="front_plate"; PART="gate_mask_slide_standard16";
if (PART == "front_plate") { if (PART == "front_plate") {
rotate([0, 180, 0]) front_plate(); rotate([0, 180, 0]) front_plate();