Update part names of bellows.scad. Render missing magnetic board.
This commit is contained in:
parent
4be57f3128
commit
2e3ed56bb3
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "1.8.5",
|
"version": "1.8.6",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy-app",
|
"name": "mcopy-app",
|
||||||
"version": "1.8.5",
|
"version": "1.8.6",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy-app",
|
"name": "mcopy-app",
|
||||||
"version": "1.8.5",
|
"version": "1.8.6",
|
||||||
"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.5",
|
"version": "1.8.6",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy",
|
"name": "mcopy",
|
||||||
"version": "1.8.5",
|
"version": "1.8.6",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "mcopy",
|
"name": "mcopy",
|
||||||
"version": "1.8.5",
|
"version": "1.8.6",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"arduino": "file:app/lib/arduino",
|
"arduino": "file:app/lib/arduino",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy",
|
"name": "mcopy",
|
||||||
"version": "1.8.5",
|
"version": "1.8.6",
|
||||||
"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.5",
|
"version": "1.8.6",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -122,18 +122,18 @@ module bellows_board_magnetic(H = 3) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
PART = "bellows_lens_board";
|
PART = "lens_board";
|
||||||
|
|
||||||
if (!LIBRARY && PART == "bellows_camera_board") {
|
if (!LIBRARY && PART == "camera_board") {
|
||||||
bellows_camera_board();
|
bellows_camera_board();
|
||||||
} else if (!LIBRARY && PART == "bellows_camera_board_magnetic") {
|
} else if (!LIBRARY && PART == "camera_board_magnetic") {
|
||||||
bellows_camera_board(magnets = true);
|
bellows_camera_board(magnets = true);
|
||||||
} else if (!LIBRARY && PART == "camera_mount") {
|
} else if (!LIBRARY && PART == "camera_mount") {
|
||||||
camera_mount();
|
camera_mount();
|
||||||
} else if (!LIBRARY && PART == "bellows_lens_board") {
|
} else if (!LIBRARY && PART == "lens_board") {
|
||||||
bellows_lens_board();
|
bellows_lens_board();
|
||||||
} else if (!LIBRARY && PART == "bellows_lens_board_magnetic") {
|
} else if (!LIBRARY && PART == "lens_board_magnetic") {
|
||||||
bellows_lens_board(magnets = true);
|
bellows_lens_board(magnets = true);
|
||||||
} else if (!LIBRARY && PART == "bellows_board_magnetic") {
|
} else if (!LIBRARY && PART == "board_magnetic") {
|
||||||
bellows_board_magnetic();
|
bellows_board_magnetic();
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue