{"id":9079,"date":"2024-04-30T18:15:11","date_gmt":"2024-04-30T16:15:11","guid":{"rendered":"https:\/\/medtech-ingenieur.de\/?p=9079"},"modified":"2026-03-16T15:23:19","modified_gmt":"2026-03-16T14:23:19","slug":"praktischer-guide-3d-druck","status":"publish","type":"post","link":"https:\/\/medtech-ingenieur.de\/en\/praktischer-guide-3d-druck\/","title":{"rendered":"A practical guide to 3D printing"},"content":{"rendered":"<h2 data-end=\"199\" data-section-id=\"u9ebxq\" data-start=\"131\">Or: how to quickly turn an idea into a prototype<\/h2>\n<p><\/p>\n<p data-end=\"597\" data-start=\"208\">I don&#039;t know about you, but I&#039;m always coming up with ideas for useful gadgets that can make my everyday life easier. Recently, this happened while I was tidying up my bathroom a bit: I noticed that there wasn&#039;t really a suitable place for my electric toothbrush in front of the sink that was close to the outlet.<\/p>\n<p data-end=\"1025\" data-start=\"599\">The solution to this was obvious, I thought. I needed a new shelf. Anyone who lives in a rented apartment knows that drilling into a tiled wall always raises my blood pressure a bit. So I thought a little further and came up with the following idea: how about a mini shelf that can be attached to the wall using a Schuko plug and the wall socket?<\/p>\n<p data-end=\"1430\" data-start=\"1027\">After some discussion and, thanks to the positive feedback from my girlfriend and friends, becoming very convinced of my own idea, I asked myself: How can I implement something like this quickly and inexpensively? Given that I&#039;d been planning to try something with 3D printing for a while, the method of choice quickly became clear to me.<\/p>\n<h2 data-end=\"1479\" data-section-id=\"sky2j0\" data-start=\"1437\">Decision on a manufacturing process<\/h2>\n<p data-end=\"1773\" data-start=\"1481\">Anyone who does a little research on 3D printing online will quickly discover that there are various 3D printing processes. For an overview of the different processes, I recommend this article on additive manufacturing by MEDtechler Lars: <a href=\"https:\/\/medtech-ingenieur.de\/en\/additive-fertigung\/\" target=\"_blank\" style=\"outline: none;\">Additive Manufacturing \u2013 Lars Gerboth<\/a>.<\/p>\n<p data-end=\"2097\" data-start=\"1775\">Which process you choose depends primarily on the material you&#039;re printing from. In my case, it was clear to me that I needed a plastic that could also insulate against the electrical voltage of the socket. It also had to be inexpensive.<\/p>\n<p data-end=\"2581\" data-start=\"2099\">Given these constraints, I opted for the simplest process, called FDM (Fused Deposition Modeling), in which molten plastic is layered through a nozzle to create a filament structure. A major disadvantage of this process is that particularly small structures cannot be printed with as high a resolution as with other processes. However, this didn&#039;t bother me much in my use case; structures down to 0.2 mm can still be reproduced well.<\/p>\n<h2 data-end=\"2649\" data-section-id=\"1hmg4y7\" data-start=\"2588\">Decision on a CAD tool for designing the component<\/h2>\n<p data-end=\"3077\" data-start=\"2651\">For me, this was one of the most interesting questions in the whole endeavor. Unfortunately, I have very little experience in component design, and this is limited to 2D drawings. What I do have, however, is a lot of experience in developing code. And this is precisely what drew me to the tool. <a href=\"https:\/\/openscad.org\/\" target=\"_blank\">OpenSCAD <\/a>which allows you to \u201cprogram\u201d 3D drawings using a simple syntax.<\/p>\n<p data-end=\"3477\" data-start=\"3079\">I can therefore recommend this to anyone who comes from the programming world and wants to experiment with 3D models. By the way, OpenSCAD is freeware under the GNU General Public License and therefore free for everyone. Another nice feature is that the code can be managed and versioned using Git. A cheat sheet with the most important commands for OpenSCAD can be found [here\/below\/etc.]. <a href=\"https:\/\/openscad.org\/cheatsheet\/\" target=\"_blank\">on-line<\/a>.<\/p>\n<p><span><img decoding=\"async\" alt=\"Auf der linken Seite sieht man den Code-Editor, rechts das Preview Fenster\" data-id=\"9109\" width=\"900\" data-init-width=\"1920\" height=\"479\" data-init-height=\"1022\" title=\"OpenSCAD Editor\" loading=\"lazy\" src=\"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/05\/OpenSCAD-Editor.png\" data-width=\"900\" data-height=\"479\" style=\"aspect-ratio: auto 1920 \/ 1022;\"\/><\/span><\/p>\n<p>On the left side you can see the code editor, on the right the preview window<\/p>\n<p data-end=\"3560\" data-start=\"3485\">On the left you can see the code editor, on the right the preview window.<\/p>\n<p data-end=\"3856\" data-start=\"3562\">In addition, numerous other tools exist that can be used to create 3D models. Many of these are paid, while some are free. To delve deeper into the topic, an overview of various options is recommended. <a href=\"https:\/\/einfach3ddruck.de\/cad-programme-hier-entstehen-deine-3d-modelle\/\" target=\"_blank\">CAD programs<\/a>.<\/p>\n<h2 data-end=\"3920\" data-section-id=\"1ql42rg\" data-start=\"3863\">Structured approach to implementing a design<\/h2>\n<p data-end=\"4417\" data-start=\"3922\">Good design doesn&#039;t just fall from the sky. As a general rule, any technical application requires careful consideration of the product requirements beforehand. For the functional requirements of a CAD design, a small, hand-drawn sketch with dimensions can be used in less complex cases. This becomes particularly useful for performing a preliminary validation on the computer before printing.<\/p>\n<p data-end=\"4794\" data-start=\"4419\">In my case, I downloaded the dimensional drawings for the Type F Schuko plug from the web and also created a few small 2D sketches in Visio, so that in the end I had about two DIN A4 pages of sketches available, which could serve as a &quot;short specification&quot; for my plug. Now it was finally time to start with the design in OpenSCAD.<\/p>\n<h2 data-end=\"4855\" data-section-id=\"1rxhzd1\" data-start=\"4801\">A few tips on design for additive manufacturing<\/h2>\n<p data-end=\"5273\" data-start=\"4857\">The most important tip for optimizing designs for additive manufacturing stems from the fact that you can&#039;t print &quot;in mid-air.&quot; For all surfaces of a component that cannot be supported from below in any way, so-called support structures are required. These structures serve no function other than enabling the printing process. This increases material consumption and printing time.<\/p>\n<p data-end=\"5557\" data-start=\"5275\">This drives up the printing costs. After printing, these structures can usually be easily broken or removed. I didn&#039;t consider this for my first design, which resulted in 30 % of the material used in the print being support structures.<\/p>\n<p data-end=\"5755\" data-start=\"5559\">So how do you identify areas that need support structures? Basically, you have to imagine how the printer creates the model: material is applied from the bottom up.<\/p>\n<p data-end=\"6201\" data-start=\"5757\">Therefore, if there are surfaces that, for example, protrude laterally from the rest of the component or span a cavity, support structures are necessary for printing them. In some cases, support structures are unavoidable. In other cases, the design can be adapted, for example, by using sharp angles. A rule of thumb is that surfaces with an incline of approximately 45\u00b0 above the printer bed can be printed well without support structures.<\/p>\n<p data-end=\"6445\" data-start=\"6203\">Another, more general tip is to avoid over-engineering your design. Material usage and printing time are the biggest cost drivers. Therefore, you should consider which geometries are suitable for saving material.<\/p>\n<h2 data-end=\"6474\" data-section-id=\"jzv8fd\" data-start=\"6452\">From design to print<\/h2>\n<p data-end=\"6735\" data-start=\"6476\">Once you&#039;ve arrived at a decent design, you&#039;ll naturally want to print it. But don&#039;t rush into it: printing costs both time and money. Before printing, it&#039;s advisable to do a quick preliminary validation of the design on your computer.<\/p>\n<p data-end=\"6893\" data-start=\"6737\">Unfortunately, OpenSCAD doesn&#039;t have a built-in measurement tool. Therefore, I downloaded the free Microsoft tool &quot;3D Builder&quot; from the Microsoft Store: <a href=\"https:\/\/apps.microsoft.com\/detail\/9wzdncrfj3t6?hl=de-de&amp;gl=DE\" target=\"_blank\">Link to the tool<\/a>.<\/p>\n<p><span><img decoding=\"async\" alt=\"3D Builder Messfunktion\" data-id=\"9111\" width=\"900\" data-init-width=\"1597\" height=\"467\" data-init-height=\"829\" title=\"3D Builder measuring function\" loading=\"lazy\" src=\"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/05\/3D-Builder-Messfunktion.png\" data-width=\"900\" data-height=\"467\" style=\"aspect-ratio: auto 1597 \/ 829;\"\/><\/span><\/p>\n<p data-end=\"7002\" data-start=\"6901\">You can use 3D Builder to measure the model, as such a tool unfortunately does not exist in OpenSCAD.<\/p>\n<p data-end=\"7099\" data-start=\"7004\">The 3D Builder allows you to import, modify, and measure mesh files in STL format.<\/p>\n<p data-end=\"7416\" data-start=\"7101\">Here&#039;s how to proceed: Render the design in OpenSCAD and export it in STL format. Then, you can open the file in 3D Builder using the import function. It&#039;s important to select the correct unit of length. This must match the unit used in the design tool; in OpenSCAD, the default is millimeters.<\/p>\n<p data-end=\"7628\" data-start=\"7418\">Now, under &quot;Object,&quot; you can select the measurement function and use it to check your short specification. Once you&#039;ve confirmed that the design meets the requirements, you can proceed to printing.<\/p>\n<h2 data-end=\"7646\" data-section-id=\"hdeba6\" data-start=\"7635\">The pressure<\/h2>\n<p data-end=\"7837\" data-start=\"7648\">Anyone who thinks you need your own printer for 3D printing is mistaken. There are several ways to create a print without owning a printer:<\/p>\n<ul>\n<li data-end=\"7874\" data-start=\"7841\">Printing in an online printing house<\/li>\n<li data-end=\"7917\" data-start=\"7877\">Printing in a makerspace or FabLab<\/li>\n<li data-end=\"7987\" data-start=\"7920\">Printing from a friend who owns a 3D printer<\/li>\n<\/ul>\n<p data-end=\"8149\" data-start=\"7989\">I strongly recommend not printing the first prototype at an online print shop, but rather printing it yourself. There are several reasons for this.<\/p>\n<p data-end=\"8444\" data-start=\"8151\">Firstly, printing at an online print shop can be expensive, and a lot can go wrong, especially with the first design. Secondly, you learn the process better by going through it yourself. Plus, you often get your print job done faster. And last but not least, it&#039;s simply fun.<\/p>\n<p data-end=\"8585\" data-start=\"8446\">For larger quantities, an online provider can be quite useful later on, especially if a validated model already exists.<\/p>\n<p data-end=\"8926\" data-start=\"8587\">I personally experienced my first pressure in <a href=\"https:\/\/fablab.fau.de\/\" target=\"_blank\">FAU FabLab<\/a> Created by the University of Erlangen. I particularly liked that there&#039;s always someone on site to give instructions and help with printing. The price is also relatively inexpensive: For non-commercial printing, you pay about 18 cents per gram of material (cost price, as of April 2024).<\/p>\n<p data-end=\"9227\" data-start=\"8928\">Regarding the process: The STL file alone is not sufficient for the printer. The model must first be prepared using a so-called &quot;slicer&quot; tool. This positions the model in a virtual space within the printer, so that the printer knows the correct orientation for printing.<\/p>\n<p data-end=\"9306\" data-start=\"9229\">Fine-tuning can then be carried out, for example:<\/p>\n<ul>\n<li \"=\"\" 9325\"=\"\" data-section-id=\"wcawbc\" data-start=\"9308\">Filament thickness<\/li>\n<li \"=\"\" 9340\"=\"\" data-section-id=\"1sucwrv\" data-start=\"9326\">wall thickness<\/li>\n<li \"=\"\" 9387\"=\"\" data-section-id=\"1bpdfjr\" data-start=\"9341\">Infill (fill density of the material inside)<\/li>\n<\/ul>\n<p data-end=\"9505\" data-start=\"9389\">Slicing usually provides an estimate of how long the print will take and how much material will be needed.<\/p>\n<p><span><img decoding=\"async\" alt=\"Slicer: mit dem Slicer Tool wird das Modell &quot;in die Sprache des Druckers \u00fcbersetzt&quot;. Hier ein Preview des Drucks in Schnittansicht, wo auch das &quot;Infill&quot; der W\u00e4nde deutlich zu sehen ist.\" data-id=\"9113\" width=\"900\" data-init-width=\"1919\" height=\"437\" data-init-height=\"931\" title=\"Slicer Preview\" loading=\"lazy\" src=\"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/05\/Slicer-Preview.png\" data-width=\"900\" data-height=\"437\" style=\"aspect-ratio: auto 1919 \/ 931;\"\/><\/span><\/p>\n<p>Slicer: The slicer tool translates the model into the printer&#039;s language. Here&#039;s a preview of the print in a cross-sectional view, where the wall infill is clearly visible.<\/p>\n<p data-end=\"9658\" data-start=\"9513\">The slicer tool translates the model &quot;into the printer&#039;s language.&quot; The infill of the walls can also be seen in the section view.<\/p>\n<p data-end=\"9864\" data-start=\"9660\">With the sliced model ready, you&#039;re finally ready to start. The file is often transferred to the printer via a USB stick. It&#039;s important to check beforehand that you have enough filament.<\/p>\n<p data-end=\"10039\" data-start=\"9866\">It is also advisable to monitor the first few minutes of printing to ensure everything is running correctly. If not, the printing process can be stopped in time.<\/p>\n<h2 data-end=\"10079\" data-section-id=\"wqimet\" data-start=\"10046\">Closing words on the 3D printing guide<\/h2>\n<p data-end=\"10273\" data-start=\"10081\">Printing your own prototype is easier than you might initially think. It&#039;s important to keep a few basic design tips in mind and to get some help with your first print.<\/p>\n<p data-end=\"10429\" data-start=\"10275\">A makerspace or FabLab is particularly suitable for the first prototype, as it is relatively inexpensive and usually offers competent support.<\/p>\n<p data-end=\"10564\" data-start=\"10431\">Those who want to try printing without creating their own design can find options on platforms such as... <a href=\"https:\/\/www.thingiverse.com\/\" target=\"_blank\">Thingiverse <\/a>numerous templates.<\/p>\n<p data-end=\"10760\" data-is-last-node=\"\" data-is-only-node=\"\" data-start=\"10566\">Feel free to contact us if you need a prototype for your next medical device. MEDtech Ingenieur supports companies from the initial concept to series production.<\/p>","protected":false},"excerpt":{"rendered":"<p>Oder: wie man eine Idee ruckzuck in einen Prototyp verwandeln kann Ich wei\u00df nicht, wie es Ihnen geht, aber ich habe immer mal wieder Ideen zu n\u00fctzlichen Gadgets, die mir meinen Alltag erleichtern k\u00f6nnen. Vor Kurzem war dies der Fall, als ich mein Badezimmer ein wenig aufger\u00e4umt habe: dabei ist mir aufgefallen, dass es vor [&hellip;]<\/p>\n","protected":false},"author":24,"featured_media":9121,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[676,2,9,4,429],"tags":[678,677,679],"class_list":["post-9079","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-3d-druck","category-allgemein","category-gastblogs","category-hardware-entwicklung","category-mechanik","tag-3d","tag-3d-druck","tag-druck","post-wrapper","thrv_wrapper"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Ein praktischer Guide zum 3D-Druck - MEDtech Ingenieur GmbH<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/medtech-ingenieur.de\/en\/praktischer-guide-3d-druck\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ein praktischer Guide zum 3D-Druck - MEDtech Ingenieur GmbH\" \/>\n<meta property=\"og:description\" content=\"Oder: wie man eine Idee ruckzuck in einen Prototyp verwandeln kann Ich wei\u00df nicht, wie es Ihnen geht, aber ich habe immer mal wieder Ideen zu n\u00fctzlichen Gadgets, die mir meinen Alltag erleichtern k\u00f6nnen. Vor Kurzem war dies der Fall, als ich mein Badezimmer ein wenig aufger\u00e4umt habe: dabei ist mir aufgefallen, dass es vor [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/medtech-ingenieur.de\/en\/praktischer-guide-3d-druck\/\" \/>\n<meta property=\"og:site_name\" content=\"MEDtech Ingenieur GmbH\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/medtechIngenieur\" \/>\n<meta property=\"article:published_time\" content=\"2024-04-30T16:15:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-16T14:23:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/05\/SocialMediaPost-4.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Luca Lattanzio\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@MedtechIng\" \/>\n<meta name=\"twitter:site\" content=\"@MedtechIng\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Luca Lattanzio\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/praktischer-guide-3d-druck\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/praktischer-guide-3d-druck\\\/\"},\"author\":{\"name\":\"Luca Lattanzio\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#\\\/schema\\\/person\\\/4afffdafc5ce4e056c9991577853e999\"},\"headline\":\"Ein praktischer Guide zum 3D-Druck\",\"datePublished\":\"2024-04-30T16:15:11+00:00\",\"dateModified\":\"2026-03-16T14:23:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/praktischer-guide-3d-druck\\\/\"},\"wordCount\":1707,\"publisher\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/praktischer-guide-3d-druck\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/medtech-ingenieur.de\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/SocialMediaPost-4.png\",\"keywords\":[\"3d\",\"3d druck\",\"druck\"],\"articleSection\":[\"3D Druck\",\"Allgemein\",\"Gastblogs\",\"Hardware\",\"Mechanik\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/praktischer-guide-3d-druck\\\/\",\"url\":\"https:\\\/\\\/medtech-ingenieur.de\\\/praktischer-guide-3d-druck\\\/\",\"name\":\"Ein praktischer Guide zum 3D-Druck - MEDtech Ingenieur GmbH\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/praktischer-guide-3d-druck\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/praktischer-guide-3d-druck\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/medtech-ingenieur.de\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/SocialMediaPost-4.png\",\"datePublished\":\"2024-04-30T16:15:11+00:00\",\"dateModified\":\"2026-03-16T14:23:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/praktischer-guide-3d-druck\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/medtech-ingenieur.de\\\/praktischer-guide-3d-druck\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/praktischer-guide-3d-druck\\\/#primaryimage\",\"url\":\"https:\\\/\\\/medtech-ingenieur.de\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/SocialMediaPost-4.png\",\"contentUrl\":\"https:\\\/\\\/medtech-ingenieur.de\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/SocialMediaPost-4.png\",\"width\":1080,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/praktischer-guide-3d-druck\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/medtech-ingenieur.de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ein praktischer Guide zum 3D-Druck\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#website\",\"url\":\"https:\\\/\\\/medtech-ingenieur.de\\\/\",\"name\":\"MEDtech Ingenieur GmbH\",\"description\":\"Ingenieursdienstleister f\u00fcr Medizintechnik\",\"publisher\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#organization\"},\"alternateName\":\"MEDtech\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/medtech-ingenieur.de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#organization\",\"name\":\"MEDtech Ingenieur\",\"alternateName\":\"MEDtech\",\"url\":\"https:\\\/\\\/medtech-ingenieur.de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/medtech-ingenieur.de\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/logo-700x700-1.png\",\"contentUrl\":\"https:\\\/\\\/medtech-ingenieur.de\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/logo-700x700-1.png\",\"width\":700,\"height\":700,\"caption\":\"MEDtech Ingenieur\"},\"image\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/medtechIngenieur\",\"https:\\\/\\\/x.com\\\/MedtechIng\",\"https:\\\/\\\/www.instagram.com\\\/medtech.ingenieure\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/37871229\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#\\\/schema\\\/person\\\/4afffdafc5ce4e056c9991577853e999\",\"name\":\"Luca Lattanzio\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d2cfcb769405caee34cb5557583054fbdf9999caecc3f85d7ac388e72b273685?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d2cfcb769405caee34cb5557583054fbdf9999caecc3f85d7ac388e72b273685?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d2cfcb769405caee34cb5557583054fbdf9999caecc3f85d7ac388e72b273685?s=96&d=mm&r=g\",\"caption\":\"Luca Lattanzio\"},\"description\":\"Luca ist studierter Elektrotechnik-Ingenieur und sammelte w\u00e4hrend seines Studiums sowie in der Zeit danach wertvolle berufliche Erfahrungen bei MEDtech. Obwohl er inzwischen f\u00fcr ein anderes Unternehmen t\u00e4tig ist, bleibt er bei MEDtech als Autor erhalten und verfasst gelegentlich Beitr\u00e4ge, um seine Expertise und Leidenschaft f\u00fcr seinen Beruf zu teilen. Dar\u00fcber hinaus z\u00e4hlt er weiterhin zu den engagierten Lesern des Blogs.\",\"url\":\"https:\\\/\\\/medtech-ingenieur.de\\\/en\\\/author\\\/llattanzio\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"A practical guide to 3D printing - MEDtech Ingenieur GmbH","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/medtech-ingenieur.de\/en\/praktischer-guide-3d-druck\/","og_locale":"en_US","og_type":"article","og_title":"Ein praktischer Guide zum 3D-Druck - MEDtech Ingenieur GmbH","og_description":"Oder: wie man eine Idee ruckzuck in einen Prototyp verwandeln kann Ich wei\u00df nicht, wie es Ihnen geht, aber ich habe immer mal wieder Ideen zu n\u00fctzlichen Gadgets, die mir meinen Alltag erleichtern k\u00f6nnen. Vor Kurzem war dies der Fall, als ich mein Badezimmer ein wenig aufger\u00e4umt habe: dabei ist mir aufgefallen, dass es vor [&hellip;]","og_url":"https:\/\/medtech-ingenieur.de\/en\/praktischer-guide-3d-druck\/","og_site_name":"MEDtech Ingenieur GmbH","article_publisher":"https:\/\/www.facebook.com\/medtechIngenieur","article_published_time":"2024-04-30T16:15:11+00:00","article_modified_time":"2026-03-16T14:23:19+00:00","og_image":[{"width":1080,"height":1080,"url":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/05\/SocialMediaPost-4.png","type":"image\/png"}],"author":"Luca Lattanzio","twitter_card":"summary_large_image","twitter_creator":"@MedtechIng","twitter_site":"@MedtechIng","twitter_misc":{"Written by":"Luca Lattanzio","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/medtech-ingenieur.de\/praktischer-guide-3d-druck\/#article","isPartOf":{"@id":"https:\/\/medtech-ingenieur.de\/praktischer-guide-3d-druck\/"},"author":{"name":"Luca Lattanzio","@id":"https:\/\/medtech-ingenieur.de\/#\/schema\/person\/4afffdafc5ce4e056c9991577853e999"},"headline":"Ein praktischer Guide zum 3D-Druck","datePublished":"2024-04-30T16:15:11+00:00","dateModified":"2026-03-16T14:23:19+00:00","mainEntityOfPage":{"@id":"https:\/\/medtech-ingenieur.de\/praktischer-guide-3d-druck\/"},"wordCount":1707,"publisher":{"@id":"https:\/\/medtech-ingenieur.de\/#organization"},"image":{"@id":"https:\/\/medtech-ingenieur.de\/praktischer-guide-3d-druck\/#primaryimage"},"thumbnailUrl":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/05\/SocialMediaPost-4.png","keywords":["3d","3d druck","druck"],"articleSection":["3D Druck","Allgemein","Gastblogs","Hardware","Mechanik"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/medtech-ingenieur.de\/praktischer-guide-3d-druck\/","url":"https:\/\/medtech-ingenieur.de\/praktischer-guide-3d-druck\/","name":"A practical guide to 3D printing - MEDtech Ingenieur GmbH","isPartOf":{"@id":"https:\/\/medtech-ingenieur.de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/medtech-ingenieur.de\/praktischer-guide-3d-druck\/#primaryimage"},"image":{"@id":"https:\/\/medtech-ingenieur.de\/praktischer-guide-3d-druck\/#primaryimage"},"thumbnailUrl":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/05\/SocialMediaPost-4.png","datePublished":"2024-04-30T16:15:11+00:00","dateModified":"2026-03-16T14:23:19+00:00","breadcrumb":{"@id":"https:\/\/medtech-ingenieur.de\/praktischer-guide-3d-druck\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/medtech-ingenieur.de\/praktischer-guide-3d-druck\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/medtech-ingenieur.de\/praktischer-guide-3d-druck\/#primaryimage","url":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/05\/SocialMediaPost-4.png","contentUrl":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/05\/SocialMediaPost-4.png","width":1080,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/medtech-ingenieur.de\/praktischer-guide-3d-druck\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/medtech-ingenieur.de\/"},{"@type":"ListItem","position":2,"name":"Ein praktischer Guide zum 3D-Druck"}]},{"@type":"WebSite","@id":"https:\/\/medtech-ingenieur.de\/#website","url":"https:\/\/medtech-ingenieur.de\/","name":"MEDtech Ingenieur GmbH","description":"Engineering service provider for medical technology","publisher":{"@id":"https:\/\/medtech-ingenieur.de\/#organization"},"alternateName":"MEDtech","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/medtech-ingenieur.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/medtech-ingenieur.de\/#organization","name":"MEDtech Engineer","alternateName":"MEDtech","url":"https:\/\/medtech-ingenieur.de\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/medtech-ingenieur.de\/#\/schema\/logo\/image\/","url":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/01\/logo-700x700-1.png","contentUrl":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/01\/logo-700x700-1.png","width":700,"height":700,"caption":"MEDtech Ingenieur"},"image":{"@id":"https:\/\/medtech-ingenieur.de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/medtechIngenieur","https:\/\/x.com\/MedtechIng","https:\/\/www.instagram.com\/medtech.ingenieure\/","https:\/\/www.linkedin.com\/company\/37871229\/"]},{"@type":"Person","@id":"https:\/\/medtech-ingenieur.de\/#\/schema\/person\/4afffdafc5ce4e056c9991577853e999","name":"Luca Lattanzio","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d2cfcb769405caee34cb5557583054fbdf9999caecc3f85d7ac388e72b273685?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d2cfcb769405caee34cb5557583054fbdf9999caecc3f85d7ac388e72b273685?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d2cfcb769405caee34cb5557583054fbdf9999caecc3f85d7ac388e72b273685?s=96&d=mm&r=g","caption":"Luca Lattanzio"},"description":"Luca studied electrical engineering and gained valuable professional experience at MEDtech during and after his studies. Although he now works for another company, he remains a contributing writer at MEDtech, occasionally contributing articles to share his expertise and passion for his profession. He also remains a dedicated reader of the blog.","url":"https:\/\/medtech-ingenieur.de\/en\/author\/llattanzio\/"}]}},"_links":{"self":[{"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/posts\/9079","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/users\/24"}],"replies":[{"embeddable":true,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/comments?post=9079"}],"version-history":[{"count":30,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/posts\/9079\/revisions"}],"predecessor-version":[{"id":13191,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/posts\/9079\/revisions\/13191"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/media\/9121"}],"wp:attachment":[{"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/media?parent=9079"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/categories?post=9079"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/tags?post=9079"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}