From 790f08c1431c5c7b75cbb5adc423573fd8e40082 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Fri, 21 Jun 2019 17:36:38 -0700 Subject: [PATCH] Removed transparent() references --- examples/conical_anchors.scad | 2 +- examples/cube_anchors.scad | 2 +- examples/cylinder_anchors.scad | 2 +- examples/prismoid_anchors.scad | 2 +- examples/screw_anchors.scad | 1 - examples/sphere_anchors.scad | 2 +- 6 files changed, 5 insertions(+), 6 deletions(-) diff --git a/examples/conical_anchors.scad b/examples/conical_anchors.scad index 92513d3..5067d4b 100644 --- a/examples/conical_anchors.scad +++ b/examples/conical_anchors.scad @@ -2,7 +2,7 @@ include include -transparent() cylinder(h=30, d1=50, d2=30) show_anchors(); +cylinder(h=30, d1=50, d2=30) show_anchors(); // vim: noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap diff --git a/examples/cube_anchors.scad b/examples/cube_anchors.scad index 613def3..da4f242 100644 --- a/examples/cube_anchors.scad +++ b/examples/cube_anchors.scad @@ -2,7 +2,7 @@ include include -transparent() cube(40, center=true) show_anchors(); +cube(40, center=true) show_anchors(); // vim: noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap diff --git a/examples/cylinder_anchors.scad b/examples/cylinder_anchors.scad index e15f8a1..6787502 100644 --- a/examples/cylinder_anchors.scad +++ b/examples/cylinder_anchors.scad @@ -2,7 +2,7 @@ include include -transparent() cylinder(h=30, d=30) show_anchors(); +cylinder(h=30, d=30) show_anchors(); // vim: noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap diff --git a/examples/prismoid_anchors.scad b/examples/prismoid_anchors.scad index 9fd79d9..0adfe98 100644 --- a/examples/prismoid_anchors.scad +++ b/examples/prismoid_anchors.scad @@ -2,7 +2,7 @@ include include -transparent() prismoid([60,40], [30,20], h=40) show_anchors(); +prismoid([60,40], [30,20], h=40) show_anchors(); // vim: noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap diff --git a/examples/screw_anchors.scad b/examples/screw_anchors.scad index 90db7a9..1bb2164 100644 --- a/examples/screw_anchors.scad +++ b/examples/screw_anchors.scad @@ -6,7 +6,6 @@ include include -transparent() metric_bolt(headtype="oval", size=10, l=15, shank=5, details=true, phillips="#2") show_anchors(5, std=false); diff --git a/examples/sphere_anchors.scad b/examples/sphere_anchors.scad index 75a2ece..df97345 100644 --- a/examples/sphere_anchors.scad +++ b/examples/sphere_anchors.scad @@ -2,7 +2,7 @@ include include -transparent() sphere(d=30) show_anchors(); +sphere(d=30) show_anchors(); // vim: noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap