Render rails parts (still WIP)

This commit is contained in:
Matt McWilliams 2023-08-21 19:39:08 -04:00
parent 2d90c127a3
commit dd4834de04
9 changed files with 38907 additions and 12 deletions

View File

@ -1,5 +1,5 @@
{
"version": "1.8.8",
"version": "1.8.9",
"ext_port": 1111,
"profiles": {
"mcopy": {

2
app/package-lock.json generated
View File

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

View File

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

View File

@ -1,5 +1,5 @@
{
"version": "1.8.8",
"version": "1.8.9",
"ext_port": 1111,
"profiles": {
"mcopy": {

4
package-lock.json generated
View File

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

View File

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

View File

@ -1,5 +1,5 @@
{
"version": "1.8.8",
"version": "1.8.9",
"ext_port": 1111,
"profiles": {
"mcopy": {

View File

@ -11,10 +11,11 @@ include <./common/common.scad>
include <./common/motors.scad>
include <./common/rods.scad>
RailSpacing = 100;
RailSpacing = 160;
ThreadedRodSpacing = 50;
RailEndX = 140;
RailEndX = RailSpacing + 40;
TNutVoid = 17;
BoltSpacingX = 110;
module rail_debug (H = 175) {
color("lime") linear_extrude(height=H) {
@ -107,8 +108,8 @@ module rail_end (pos = [0, 0, 0], rot = [90, 0, 0], Motors = true) {
translate([0, 0, 5]) cylinder(r = R(ThreadDiameter), h = 40, center = true, $fn = 50);
//mounting bolts
translate([70 / 2, 0, 40]) rotate([90, 0, 0]) cylinder(r = R(10), h = 150, center = true, $fn = 40);
translate([-70 / 2, 0, 40]) rotate([90, 0, 0]) cylinder(r = R(10), h = 150, center = true, $fn = 40);
translate([BoltSpacingX / 2, 0, 40]) rotate([90, 0, 0]) cylinder(r = R(10), h = 150, center = true, $fn = 40);
translate([-BoltSpacingX / 2, 0, 40]) rotate([90, 0, 0]) cylinder(r = R(10), h = 150, center = true, $fn = 40);
}
}

38894
stl/mcopy_rails_rail_end.stl Normal file

File diff suppressed because it is too large Load Diff