Fix text labels on gates
This commit is contained in:
parent
1f18b59f9d
commit
320e38bfd8
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "1.8.129",
|
"version": "1.8.130",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "1.8.129",
|
"version": "1.8.130",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "1.8.129",
|
"version": "1.8.130",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue