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,
|
||||
"profiles": {
|
||||
"mcopy": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mcopy-app",
|
||||
"version": "1.8.129",
|
||||
"version": "1.8.130",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mcopy-app",
|
||||
"version": "1.8.129",
|
||||
"version": "1.8.130",
|
||||
"description": "GUI for the mcopy small gauge film optical printer platform",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.8.129",
|
||||
"version": "1.8.130",
|
||||
"ext_port": 1111,
|
||||
"profiles": {
|
||||
"mcopy": {
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "mcopy",
|
||||
"version": "1.8.129",
|
||||
"version": "1.8.130",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mcopy",
|
||||
"version": "1.8.129",
|
||||
"version": "1.8.130",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"alert": "file:app/lib/alert",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mcopy",
|
||||
"version": "1.8.129",
|
||||
"version": "1.8.130",
|
||||
"description": "Small gauge film optical printer platform",
|
||||
"main": "build.js",
|
||||
"directories": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.8.129",
|
||||
"version": "1.8.130",
|
||||
"ext_port": 1111,
|
||||
"profiles": {
|
||||
"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 = "") {
|
||||
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") {
|
||||
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") {
|
||||
rotate([0, 180, 0]) front_plate();
|
||||
|
|
Loading…
Reference in New Issue