42 lines
854 B
OpenSCAD
42 lines
854 B
OpenSCAD
include <titleBlock.scad>
|
|
include <quotes.scad>
|
|
|
|
|
|
|
|
|
|
|
|
plan(
|
|
"Title Block",
|
|
title="Sub title",
|
|
description="Description",
|
|
) {
|
|
|
|
|
|
scaling = 10;
|
|
scale ([1/scaling,1/scaling,1/scaling]) {
|
|
//translate([100,-100,0])
|
|
|
|
w = 800;
|
|
h = 600;
|
|
//projection()
|
|
color ("Gray") cube([w,h,1],anchor=CENTER+TOP) {
|
|
show_anchors();
|
|
align(BACK)
|
|
quote(w/*,anchor=LEFT*/){
|
|
show_anchors();
|
|
}
|
|
;
|
|
//right (800)
|
|
//attach(RIGHT,UP)
|
|
color("black") up(2)
|
|
align( RIGHT )
|
|
//quote(h/*,anchor=LEFT*/,color="Black")
|
|
quote(h,spin=-90) show_anchors()
|
|
;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} |