in its own model, although I haven't yet lifted it so that its wheel sits on the ground plane. I've rescaled it so that the wheel is the correct size. I think each individual model should be build to the grid origin within its own file, but that major components (subframe, fourbar) should be at the correct vertical height for final assembly.
29 lines
466 B
OpenSCAD
29 lines
466 B
OpenSCAD
// tricycle.scad
|
|
|
|
// (c) Simon Brooke 2025; CC-BY-SA
|
|
|
|
// Top level final rendering
|
|
|
|
include <BentSim/Library/Velo_rider.scad>
|
|
|
|
include <subframe.scad>
|
|
include <fourbar.scad>
|
|
// include <hull.scad>
|
|
|
|
rotate([0, 0, 270])
|
|
translate([0, 1200, 180])
|
|
subframe();
|
|
translate([0,-50, 320])
|
|
fourbar(700, 100, 30, 35, 650);
|
|
|
|
//hull();
|
|
|
|
/*
|
|
prop=0.1;
|
|
seat_ang=0;
|
|
leg_ang=0;
|
|
left_fold=0;
|
|
head_ang=0;
|
|
leg_prop=0.5;
|
|
|
|
vRider(prop, seat_ang, leg_ang, left_fold, head_ang, leg_prop);*/ |