28 lines
571 B
OpenSCAD
28 lines
571 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) {
|
|
align(BACK) quote(w);
|
|
color("black")
|
|
align( RIGHT ) quote(h,spin=-90,font="Roboto Condensed");
|
|
}
|
|
|
|
}
|
|
|
|
|
|
} |