tricycle-mechanical-design/model/tricycle.scad
Simon Brooke 113546782f I've written a hull which in itself isn't dreadful, but which has revealed
fragility in the way OpenSCAD handles name collisions. This makes mixing
libraries highly problematic. Needs thought.
2025-09-06 22:18:59 +01:00

28 lines
439 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, 0, 400])
subframe();
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);*/