// This file was created using AngelCAD (as_csg) v1.0-04 // Copyright(C) 2015-2018 Carsten Arnholm, http://arnholm.org/ // Open it with OpenSCAD for display or further processing $fn = 60; $fa = 6.0; $fs = 1.0; group() { multmatrix([[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]]) { union() { multmatrix([[1,0,0,200],[0,1,0,300],[0,0,1,400],[0,0,0,1]]) { cylinder( r1=50, r2=50, h=1000, center=false ); } multmatrix([[1,0,0,200],[0,1,0,300],[0,0,1,400],[0,0,0,1]]) { sphere( r=50 ); } } } }