• Modelize your first 3D shape with openSCAD #1

    You decide to learn 3D modeling and start to print your first 3D shape this introduction course is made for you. This tutorial will allow you to create simple 3D shapes for 3D printing with using openSCAD a free open source software. I tried to do a tutorial the simple as possible with a lot…

  • Welcome to my blog !

    You are interrested in 3D printing. In this blog you will explore the différente posibilitise of 3D printing and will learn how to modelise 3D shapes for your futur projects.   In this article i will présente you the différents aspects of 3D printing. The futur of this technologie for our everyday life.   Work…

  • Modelize your first 3D shape with openSCAD #Correction

    9. Correction Correction Exercise 2: //Exercise 2 $fn = 100; translate([0,-20,0]) cube([20,20,2]); translate([0,-20,0]) rotate([0,-90,0]) cube([20,20,2]);     Correction Exercise 3: //Exercise 3 $fn = 100; difference(){ translate([0,-20,0]) cube([20,20,2]); #translate([10,-10,-5]) cylinder(10,2,2); } difference(){ translate([0,-20,0]) rotate([0,-90,0]) cube([20,20,2]); #translate([-5,-10,10]) rotate([0,90,0]) cylinder(10,2,2); }    Correction Final Exercises: //Final Exercise 1 module Base(){     difference(){         cube([20,20,2]);         translate([10,10,-5]) cylinder(10,2,2);…