As in this episode we will be showing you how to clean up the pixelationof a extruded polygon object and a couple tips!
Please visit http://OpenSCAD.DIY3DTech.com for more information on this and many other projects!
Check Out These 3D Printer Deals!
Amazing BIG Kit printer: http://diy3dtech.com/gearbest-tronxy-x5s-high-precision-large-scale-3d-printer/
Original Gearbest version: http://diy3dtech.com/gearbest-cr-10-super-large-3d-printer/
Best Deals on a Creality: http://diy3dtech.com/creality-cr-10-best-deals/
Have you been bitten: http://diy3dtech.com/gearbest-tevo-black-widow-3d-printer-kit/
Have you seen this: http://diy3dtech.com/gearbest-tronxy-x1-desktop-3d-printer/
Best Kit Deal and Community: http://diy3dtech.com/tevo-tarantula/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
/* Open SCAD Name.: flir_gopro_v1.scad * Copyright (c)..: 2017 www.DIY3DTech.com * * Creation Date..: Flir GoPro * Description....: Flir Camera * * Rev 1: Develop Model * Rev 2: * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ /*------------------Customizer View-------------------*/ // preview[view:north, tilt:top] /*---------------------Parameters---------------------*/ /*-----------------------Execute----------------------*/ main_module(); /*-----------------------Modules----------------------*/ module main_module(){ //create module difference() { union() {//start union //create outer house by scaling up resize([71,21.3,32], auto=true) linear_extrude(height = 29, center = true, convexity = 10, twist = 0) flir_module(); //clean up front with oval translate ([1,1.5,0]) rotate ([0,0,0])oval((69/2),(17.2/2),32,center = true); } //end union //start subtraction of difference //remove inside for camera translate ([0,1,1]) rotate ([0,0,0]) resize([65.7,17.25,32], auto=true) linear_extrude(height = 28, center = true, convexity = 10, twist = 0) flir_module(); //create opening for camera translate ([0,-5,1]) rotate ([90,0,0]) cylinder(10,25/2,25/2,$fn=60,true); //create opening in bottom for USB translate ([0,5,-(28/2)]) rotate ([0,0,0]) cylinder(10,15/2,15/2,$fn=60,true); //create cross opening for charing/power translate ([0,8,0]) rotate ([0,0,0]) cube([80,9,18],true); } //end difference }//end module module oval(w,h, height, center = true) //create oval { scale([1, h/w, 1]) cylinder(h=height, r=w, $fn=100,center=center); }//end module module flir_module(){ //create module polygon(points=[[-27.33013,11.00451],[28.90007,11.00451],[29.23649,10.86033],[29.38068,10.52391],[29.38068,2.353709],[29.18843,1.63281],[28.65977,0.9119091],[27.69857,0.04682922],[26.49707,-0.7221308],[24.57467,-1.63527],[21.69107,-2.596471],[18.56717,-3.365431],[17.12537,-3.65379],[16.16417,-3.797971],[14.24178,-4.134391],[13.52087,-4.18245],[12.55967,-4.374691],[11.59848,-4.374691],[10.63728,-4.614991],[9.676075,-4.85529],[-8.586725,-4.85529],[-9.547926,-4.66305],[-10.50912,-4.42275],[-11.47033,-4.326632],[-12.43153,-4.134391],[-13.15243,-4.08633],[-14.11363,-3.894091],[-15.07483,-3.749911],[-17.71812,-3.221251],[-20.60173,-2.452291],[-23.00473,-1.63527],[-24.44653,-0.962431],[-25.88832,-0.19347],[-27.04177,0.7196693],[-27.57043,1.392509],[-27.81073,2.113409],[-27.81073,10.52391],[-27.66655,10.86033],[-27.52237,10.95645]],paths=[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38]]); }//end module |
If your looking for looking 3D Printer, Laser Cutter and CNC Swag (T-Shirts, Hats, Mugs, etc), please support the channel by visiting our online shop at: http://swag.DIY3DTech.com
Also subscribe to our parent YouTube Channel DIY3DTech.com YouTube Channel for 3D Printing, Laser Manufacturing and CNC Machining: http://YouTube.DIY3DTech.com
More Ideas!
OpenSCAD – Designing a Compression Cover!
OpenSCAD – Designing a Pressure Fit Endcap!
Open SCAD – Complex Flange Designer!