tricycle-mechanical-design/model/tricycle.scad
Simon Brooke 35376827d1 Moved the lower knuckle out into its own file, and substantially improved it.
I'm still having problems with fudge factors which I need to resolve;
I need to learn more about filletting, rounding, radiusing and fairing.
2025-09-24 12:07:28 +01:00

22 lines
402 B
OpenSCAD

// tricycle.scad
// (c) Simon Brooke 2025; CC-BY-SA
// Top level final rendering
include <subframe.scad>
include <fourbar.scad>
include <hull.scad>
rotate([0, 0, 270])
translate([0, 1300, 180])
subframe(structure="carbon");
translate([0, 0, 250])
fourbar(length=1000, chord=100, long_skew=30, lat_skew=35, shoulder=650);
translate([800, 0, 120])
rotate([0, 4, 0])
color("darkolivegreen")
hull();