mirror of
https://github.com/nophead/Mendel90.git
synced 2025-01-16 20:38:15 +01:00
ef0406dc29
Idler lever added to Huxley extruder. Extruders now virtual. views.py now allows camera to be specified using $vpt, $vpr and $vpd. make_machine.py now does the accessories as well.
25 lines
478 B
OpenSCAD
25 lines
478 B
OpenSCAD
//
|
|
// Mendel90
|
|
//
|
|
// GNU GPL v2
|
|
// nop.head@gmail.com
|
|
// hydraraptor.blogspot.com
|
|
//
|
|
// Frame front bar detail
|
|
//
|
|
$vpt = [18, 13, -11];
|
|
$vpr = [65.5, 0, 314];
|
|
$vpd = 261;
|
|
//
|
|
// assembly 958 842
|
|
//
|
|
include <../scad/conf/config.scad>
|
|
include <../scad/positions.scad>
|
|
|
|
use <../scad/main.scad>
|
|
|
|
translate([-right_stay_x + fixing_block_height() / 2 + sheet_thickness(frame) / 2, (base_depth / 2 - fixing_block_width() / 2 - base_clearance), 0])
|
|
frame_assembly();
|
|
|
|
$exploded = 1;
|