10 lines
350 B
OpenSCAD
10 lines
350 B
OpenSCAD
|
|
include <dimensions.scad>
|
||
|
|
|
||
|
|
module connector(){
|
||
|
|
color("pink")
|
||
|
|
cube(size=[connectorthickness, toplength - 2*standbeamthickness - 2*standsideoffset, connectorheight], center=false);
|
||
|
|
echo("#### Connector: length = ", toplength - 2*standbeamthickness - 2*standsideoffset, " height = ", connectorheight, "width = ", connectorthickness);
|
||
|
|
}
|
||
|
|
|
||
|
|
connector();
|