3d printing – resize an object with different factor on axes

openscadTo tell you the full story, I was working on a 3d object I want to reproduce. The initial model is a 10cm object. I’ve got a 3D scan of this object and now I want to make a mold to reproduce it with a smaller size (3cm). All should be simple as even my printer software have a resize option.

The problem started when once resized the height of the object has became too small and the precision of the printer does not allow to have a good result. For my need it was not really important to preserve proportion on the Z axis. So I was looking for a tool able to resize an object with a different setting factor for each of the axis.

This tool exists and more over it is really useful for any STL manipulation (at least you need to be a coder) : its name is OpenSCAD. This tool is a programming language for 3D object allowing different object transformation and creation.

For my need to scale X & Y with a 0.4 factor and Z with a 0.6 factor, the following code was the solution :

scale([0.4, 0.4, 0.6]) import("Moule.stl", convexity=3);

You then just have to export as STL by clicking on STL icon and you have the result. Sounds nice, isn’t it ?!?

IoT disruption, why it is the appropriate time ?

In a previous post I explained why the IoT is appearing in this period thanks to the network technology evolution. It would not be a complete analysis if I would not care about the social evolution. In parallel of IoT and technologies there are other rising trends : Makers, Fablabs, embedded systems, 3d printing and crowd-founding.

Take a look at personal computing some decades ago when guys like Jobs or Gates make the first line of code and solder the first micro-processors in their garage ; they just used the technological elements available that time and were able to make them doing much more than what they have been made for. They did it because they were able to do it. The same story appends in the late 90’s with Internet : anyone was able to code some PHP stuff and create a service in his garage thanks to this students have created Facebook and many more.

At the opposite, when smart phone appeared in the middle of the 90’s it was a technology that requires strong industrial assets and this technology has been limited to major companies. The smart-phone revolution had been the same opening door to programmer to an new area with applications (apps). In fact all previous hardware evolutions since the Personal Computer beginning was requiring huge technological assets to be part of it.

IoT disruption is breaking these last 40 years where only software were hackable by getting hardware accessible.

Let see why

Continue reading

Getting start with Tobeca 2 – 3d printer

3d printer is a kit

3d printer is a kit

The Tobeca 2 is a French and Open Source 3dPrinter. THis printer is delivered in a kit (you can also ask to get it built for a higher price) The price of the printer is about 700€ + 100€ for the dual head option I chosen.

So I’ll publish some post in the next days to detail the installation. My time is really short these week, so it could be long before I finish it. By-the-way if you have one to build of you want to buy one, I hope these notes based on my experience will help you.

Finally, I spent about 16 hours to mount the printer and a couple more to get my first print!

Continue reading