<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
    <!-- Google Tag Manager -->
    <script>
        function scriptLoadClass(scriptName) {
            document.documentElement.classList.add("script-loaded-" + scriptName);
        }

        (function (w, d, s, l, i) {
            w[l] = w[l] || [];
            w[l].push({
                'gtm.start':
                    new Date().getTime(), event: 'gtm.js'
            });
            var f = d.getElementsByTagName(s)[0],
                j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
            j.async = true;
            j.setAttribute("onload", 'scriptLoadClass("tagmanager")');
            j.src =
                'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
            f.parentNode.insertBefore(j, f);
        })(window, document, 'script', 'dataLayer', 'GTM-TXR46B');</script>
    <!-- End Google Tag Manager -->
    <meta charset="utf-8" />
<script>'use strict'; (function() {var abjs = {"tests":[{"name":"t_16","conditions":["return \/^\\\/materials\/i.test(window.location.pathname);"],"experiences":[{"name":"e_6","fraction":"1\/3","script":"console.log('control experience');\r\n\/\/ do nothing"},{"name":"e_21","fraction":"1\/3","script":"document.addEventListener(\"DOMContentLoaded\", function(event) {\r\n    console.log('odm text flag');\r\n    \r\n    var odmMarkers = document.querySelectorAll(\".odm-marker\");\r\n\r\n    [].forEach.call(odmMarkers, function(el) {\r\n        el.classList.replace(\"version-icon\", \"version-text\");\r\n    });\r\n});"},{"name":"e_26","fraction":"1\/3","script":"document.addEventListener(\"DOMContentLoaded\", function(event) {\r\n    console.log('odm text flag 2');\r\n    \r\n    var odmMarkers = document.querySelectorAll(\".odm-marker\");\r\n\r\n    [].forEach.call(odmMarkers, function(el) {\r\n        el.classList.replace(\"version-icon\", \"version-text\");\r\n        \r\n        el.querySelectorAll(\".text-flag span\")[0].innerHTML = \"Order Parts\";\r\n        el.querySelectorAll(\".text-inner\")[0].innerHTML = \"Order Parts with this material\";\r\n    });\r\n});"}]}],"cookiePrefix":"3dsab_","cookieDomain":"","cookieLifetime":30,"cookieSecure":""};
/**
 * @file
 * Adds common javascript functionality.
 *
 * Note that this file does not stand alone, and is included as an inline
 * script along with the dynamic tests, experiences, and conditions.
 */

// Cookie functions for getting and setting abjs cookies.
var abCookies = {
  getCookie: function (sKey) {
    'use strict';
    if (!sKey) {
      return null;
    }
    var abKey = abjs.cookiePrefix + sKey;
    return decodeURIComponent(document.cookie.replace(new RegExp('(?:(?:^|.*;)\\s*' + encodeURIComponent(abKey).replace(/[\-\.\+\*]/g, '\\$&') + '\\s*\\=\\s*([^;]*).*$)|^.*$'), '$1')) || null;
  },
  setCookie: function (sKey, sValue) {
    'use strict';
    var abKey = abjs.cookiePrefix + sKey;
    document.cookie = encodeURIComponent(abKey) + '=' + encodeURIComponent(sValue) + '; max-age=' + abjs.cookieLifetime * 24 * 60 * 60 + abjs.cookieDomain + '; path=/' + abjs.cookieSecure;
    return true;
  }
};

var i;
var j;
var fracArray;

// Convert condition and experience function strings into real functions,
// and convert experience fraction strings into numbers.
for (i = 0; i < abjs.tests.length; i++) {
  for (j = 0; j < abjs.tests[i].conditions.length; j++) {
    abjs.tests[i].conditions[j] = new Function(abjs.tests[i].conditions[j] + '\r\n');
  }
  for (j = 0; j < abjs.tests[i].experiences.length; j++) {
    abjs.tests[i].experiences[j].script = new Function(abjs.tests[i].experiences[j].script + '\r\n');
    if (abjs.tests[i].experiences[j].fraction.match('/')) {
      fracArray = abjs.tests[i].experiences[j].fraction.split('/');
      abjs.tests[i].experiences[j].fraction = fracArray[0] / fracArray[1];
    }
    abjs.tests[i].experiences[j].fraction = isNaN(1 * abjs.tests[i].experiences[j].fraction) ? 0 : 1 * abjs.tests[i].experiences[j].fraction;
  }
}

// First, for each test, check if all conditions evaluate to true. If any
// condition evaluates to false, remove that test from the abjs.tests array.
for (i = 0; i < abjs.tests.length; i++) {
  for (j = 0; j < abjs.tests[i].conditions.length; j++) {
    if (!abjs.tests[i].conditions[j]()) {
      abjs.tests.splice(i, 1);
      i--;
      break;
    }
  }
}

// For each test that passses all conditions, determine the experience for this
// user.
for (i = 0; i < abjs.tests.length; i++) {
  // First, check if a cookie exists for this test by checking the cookie's name.
  // If so, the value of the cookie is the index of the experience that this
  // user should have.
  if (abCookies.getCookie(abjs.tests[i].name)) {
    for (j = 0; j < abjs.tests[i].experiences.length; j++) {
      if (abCookies.getCookie(abjs.tests[i].name) === abjs.tests[i].experiences[j].name) {
        abjs.tests[i].activeExperience = j;
        break;
      }
    }
  }
  // If a cookie does not yet exist for this test, generate a random number to
  // determine what experience this user should have by comparing the random
  // number to the fractions assigned for each experience. Set a cookie for
  // this test and experience.
  else {
    var randomNum = Math.random();
    var fractionSum = 0;
    for (j = 0; j < abjs.tests[i].experiences.length; j++) {
      if (randomNum >= fractionSum && randomNum < fractionSum + abjs.tests[i].experiences[j].fraction) {
        abCookies.setCookie(abjs.tests[i].name, abjs.tests[i].experiences[j].name);
        abjs.tests[i].activeExperience = j;
        break;
      }
      fractionSum += abjs.tests[i].experiences[j].fraction;
    }
  }
}

// Run all experience scripts for this user.
for (i = 0; i < abjs.tests.length; i++) {
  if (typeof abjs.tests[i].activeExperience !== 'undefined') {
    abjs.tests[i].experiences[abjs.tests[i].activeExperience].script();
  }
}
})();</script>
<meta name="title" content="Our Blog | 3D Systems" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="og:site_name" content="3D Systems" />
<meta name="robots" content="noodp" />
<meta name="twitter:site" content="@3dsystems" />
<meta name="twitter:description" content="Keep up-to-date with the latest customer applications, innovations and insights in digital design and manufacturing." />
<meta name="twitter:title" content="Our Blog | 3D Systems" />
<meta property="og:type" content="article" />
<meta name="description" content="Keep up-to-date with the latest customer applications, innovations and insights in digital design and manufacturing." />
<meta property="og:title" content="Our Blog | 3D Systems" />
<meta property="og:description" content="Keep up-to-date with the latest customer applications, innovations and insights in digital design and manufacturing." />
<meta name="twitter:image" content="https://www.3dsystems.com/sites/default/files/styles/thumbnail_social_media_940_x_494_/public/2017-01/3d-systems-team-thumbnail.jpg?itok=bsq5o4k9" />
<meta property="og:image" content="https://www.3dsystems.com/sites/default/files/styles/thumbnail_social_media_940_x_494_/public/2017-01/3d-systems-team-thumbnail.jpg?itok=bsq5o4k9" />
<meta name="Generator" content="Drupal 8 (https://www.drupal.org)" />
<meta name="MobileOptimized" content="width" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta content="ie=edge, chrome=1" http-equiv="x-ua-compatible" /><script type="text/javascript">window.NREUM||(NREUM={}),__nr_require=function(e,t,n){function r(n){if(!t[n]){var o=t[n]={exports:{}};e[n][0].call(o.exports,function(t){var o=e[n][1][t];return r(o||t)},o,o.exports)}return t[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(e,t,n){function r(){}function o(e,t,n){return function(){return i(e,[f.now()].concat(u(arguments)),t?null:this,n),t?void 0:this}}var i=e("handle"),a=e(2),u=e(3),c=e("ee").get("tracer"),f=e("loader"),s=NREUM;"undefined"==typeof window.newrelic&&(newrelic=s);var p=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],d="api-",l=d+"ixn-";a(p,function(e,t){s[t]=o(d+t,!0,"api")}),s.addPageAction=o(d+"addPageAction",!0),s.setCurrentRouteName=o(d+"routeName",!0),t.exports=newrelic,s.interaction=function(){return(new r).get()};var m=r.prototype={createTracer:function(e,t){var n={},r=this,o="function"==typeof t;return i(l+"tracer",[f.now(),e,n],r),function(){if(c.emit((o?"":"no-")+"fn-start",[f.now(),r,o],n),o)try{return t.apply(this,arguments)}catch(e){throw c.emit("fn-err",[arguments,this,e],n),e}finally{c.emit("fn-end",[f.now()],n)}}}};a("setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(e,t){m[t]=o(l+t)}),newrelic.noticeError=function(e){"string"==typeof e&&(e=new Error(e)),i("err",[e,f.now()])}},{}],2:[function(e,t,n){function r(e,t){var n=[],r="",i=0;for(r in e)o.call(e,r)&&(n[i]=t(r,e[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;t.exports=r},{}],3:[function(e,t,n){function r(e,t,n){t||(t=0),"undefined"==typeof n&&(n=e?e.length:0);for(var r=-1,o=n-t||0,i=Array(o<0?0:o);++r<o;)i[r]=e[t+r];return i}t.exports=r},{}],4:[function(e,t,n){t.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(e,t,n){function r(){}function o(e){function t(e){return e&&e instanceof r?e:e?c(e,u,i):i()}function n(n,r,o,i){if(!d.aborted||i){e&&e(n,r,o);for(var a=t(o),u=m(n),c=u.length,f=0;f<c;f++)u[f].apply(a,r);var p=s[y[n]];return p&&p.push([b,n,r,a]),a}}function l(e,t){v[e]=m(e).concat(t)}function m(e){return v[e]||[]}function w(e){return p[e]=p[e]||o(n)}function g(e,t){f(e,function(e,n){t=t||"feature",y[n]=t,t in s||(s[t]=[])})}var v={},y={},b={on:l,emit:n,get:w,listeners:m,context:t,buffer:g,abort:a,aborted:!1};return b}function i(){return new r}function a(){(s.api||s.feature)&&(d.aborted=!0,s=d.backlog={})}var u="nr@context",c=e("gos"),f=e(2),s={},p={},d=t.exports=o();d.backlog=s},{}],gos:[function(e,t,n){function r(e,t,n){if(o.call(e,t))return e[t];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(e,t,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return e[t]=r,r}var o=Object.prototype.hasOwnProperty;t.exports=r},{}],handle:[function(e,t,n){function r(e,t,n,r){o.buffer([e],r),o.emit(e,t,n)}var o=e("ee").get("handle");t.exports=r,r.ee=o},{}],id:[function(e,t,n){function r(e){var t=typeof e;return!e||"object"!==t&&"function"!==t?-1:e===window?0:a(e,i,function(){return o++})}var o=1,i="nr@id",a=e("gos");t.exports=r},{}],loader:[function(e,t,n){function r(){if(!x++){var e=h.info=NREUM.info,t=d.getElementsByTagName("script")[0];if(setTimeout(s.abort,3e4),!(e&&e.licenseKey&&e.applicationID&&t))return s.abort();f(y,function(t,n){e[t]||(e[t]=n)}),c("mark",["onload",a()+h.offset],null,"api");var n=d.createElement("script");n.src="https://"+e.agent,t.parentNode.insertBefore(n,t)}}function o(){"complete"===d.readyState&&i()}function i(){c("mark",["domContent",a()+h.offset],null,"api")}function a(){return E.exists&&performance.now?Math.round(performance.now()):(u=Math.max((new Date).getTime(),u))-h.offset}var u=(new Date).getTime(),c=e("handle"),f=e(2),s=e("ee"),p=window,d=p.document,l="addEventListener",m="attachEvent",w=p.XMLHttpRequest,g=w&&w.prototype;NREUM.o={ST:setTimeout,SI:p.setImmediate,CT:clearTimeout,XHR:w,REQ:p.Request,EV:p.Event,PR:p.Promise,MO:p.MutationObserver};var v=""+location,y={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-1071.min.js"},b=w&&g&&g[l]&&!/CriOS/.test(navigator.userAgent),h=t.exports={offset:u,now:a,origin:v,features:{},xhrWrappable:b};e(1),d[l]?(d[l]("DOMContentLoaded",i,!1),p[l]("load",r,!1)):(d[m]("onreadystatechange",o),p[m]("onload",r)),c("mark",["firstbyte",u],null,"api");var x=0,E=e(4)},{}]},{},["loader"]);</script>
<meta http-equiv="ImageToolbar" content="false" />
<link rel="alternate" hreflang="en" href="https://www.3dsystems.com/blog" />
<link rel="alternate" hreflang="en-gb" href="https://uk.3dsystems.com/blog" />
<link rel="alternate" hreflang="de-de" href="https://de.3dsystems.com/blog" />
<link rel="alternate" hreflang="pt-br" href="https://br.3dsystems.com/blog" />
<link rel="alternate" hreflang="es" href="https://es.3dsystems.com/blog" />
<link rel="alternate" hreflang="fr-fr" href="https://fr.3dsystems.com/blog" />
<link rel="alternate" hreflang="zh-cn" href="https://cn.3dsystems.com/blog" />
<link rel="alternate" hreflang="ko-kr" href="https://ko.3dsystems.com/blog" />
<link rel="alternate" hreflang="it-it" href="https://it.3dsystems.com/blog" />
<link rel="alternate" hreflang="en-au" href="https://au.3dsystems.com/blog" />
<link rel="alternate" hreflang="ja-jp" href="https://ja.3dsystems.com/blog" />
<link rel="alternate" hreflang="ru-ru" href="https://ru.3dsystems.com/blog" />
<link rel="shortcut icon" href="/sites/default/files/3D-Systems-logo.ico" type="image/vnd.microsoft.icon" />
<link rel="canonical" href="/blog" />
<link rel="shortlink" href="/node/35041" />
<link rel="revision" href="/blog" />

        <title>Our Blog | 3D Systems</title>
        <link rel="stylesheet" href="/sites/default/files/css/css_REQdnKcUbMQJP3ZV4fHTZRqqGOe7AudyboAUwr2Z3Uo.css?pfyi54" media="all" />
<link rel="stylesheet" href="/sites/default/files/css/css_Z9851d-jMu2RoGVFLCG-ZXyHHoUo6QHzKjLKvdd9ciM.css?pfyi54" media="all" />

            
<!--[if lte IE 8]>
<script src="/sites/default/files/js/js_VtafjXmRvoUgAzqzYTA3Wrjkx9wcWhjP0G4ZnnqRamA.js"></script>
<![endif]-->

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                        </head>
<body class="lang-en section-blog path-node node--type-page" style="opacity: 0;">
<!-- Google Tag Manager (noscript) -->
<noscript>
    <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TXR46B"
            height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<a href="#main-content" class="visually-hidden focusable skip-link">
    Skip to main content
</a>

  <div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
    
    
<div class="off-canvas-wrap" data-offcanvas>
    <div class="inner-wrap">
        <aside class="left-off-canvas-menu" role="complementary">
            
        </aside>

        <aside class="right-off-canvas-menu" role="complementary">
            
        </aside>

                                  <div>
    <section id="block-topanchor" class="block-topanchor clearfix">
  
  
    

  
          <div class="field-wrapper field field-block-content--field-content field-name-field-content field-type-entity-reference-revisions field-label-hidden">
    <div class="field-items">
          
<div class="paragraph paragraph--type--custom-anchor paragraph--view-mode--default" data-magellan-destination="top">
</div>
<a name="top"></a>
      </div>
</div>

    
    
  </section>
<nav role="navigation" aria-labelledby="block-ddd-main-menu-menu" id="block-ddd-main-menu" class="block-ddd-main-menu">
            
  <h2 class="block-title visually-hidden" id="block-ddd-main-menu-menu">Main navigation</h2>
  

        




    <div class="sticky" >
        <nav class="top-bar" data-topbar data-options="custom_back_text:false; scrolltop:false"
             role="navigation" >
                    <ul class="title-area">
                        <li class="name">
                            <div class="logo-main">
                                <span class="hide"><a href="/" title="3D Systems Home">3D Systems</a></span>
                                <a href="/">
                                    <img alt="3D Systems Logo"
                                         src="/themes/ddd/images/logo-3ds-dark.svg"/>
                                </a>
                            </div>
                        </li>
                        <li class="toggle-topbar menu-icon">
                            <a href="#"><span></span></a>
                        </li>
                        <li class="topbar-actions">
                            <!--Place this div where you want the menu to appear -->
                            <div id="smt-lang-selector"></div>

                            <ul class="search-form">
                                <li class="has-form">
                                    <span class="search-toggle">&#10005;</span>
                                    <form class="search-block-form" data-drupal-selector="search-block-form-2"
                                          action="https://go.pardot.com/s/1004/7ccbb4a834f5537e53a4fa510bef6442"
                                          method="get" id="search-block-form--2" accept-charset="UTF-8">
                                        <div class="js-form-item js-form-type-search form-item-keys js-form-item-keys form-no-label">
                                            <label for="search_api_fulltext" class="visually-hidden">Search</label>
                                            <input title="Enter the terms you wish to search for."
                                                   data-drupal-selector="edit-keys" type="search"
                                                   id="search_api_fulltext" name="search_api_fulltext" value=""
                                                   size="15" maxlength="128" class="form-search" placeholder="Search 3D Systems">
                                        </div>
                                        <input class="success button radius js-form-submit form-submit"
                                               data-drupal-selector="edit-submit" type="submit" id="edit-submit--2"
                                               value="Search">
                                    </form>
                                </li>
                            </ul>
                        </li>
                    </ul>

            <section class="top-bar-section">
                        
                                    <ul class="menu nav-bar">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                                    
                            <li class="has-dropdown" link_class="solutions--solutions" data-equalizer="nav-dropdown" data-equalizer-mq="large-up">

                    <a href="/solutions" class="top-nav-link">Solutions</a>
                                                                    <ul class="dropdown row">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Solutions</a>
                                </h5>
                            </li>
                                                            <li class="link-about large-9 show-for-large-up">
                                    <div class="solutions--solutions link-about-item item-full-width">
                                        <h3>Solutions</h3>
                                                                                    <img class="lazy right" data-image="/sites/default/files/inline-images/solutions-drop-down.jpg" />
                                                                                                                            <div class="mega-content"><p>Best-in-Class, end-to-end 3D solutions and industry-leading expertise to help transform your workflows in design, engineering, manufacturing and healthcare</p></div>
                                                                                                                        <a class="button blue top-nav-link" href="/solutions"
                                           target="">Learn more</a>
                                                                            </div>
                                            
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="by-application--solutionsby-application link-about-item item-offset-1">
                    <h3>By Application</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/applications-menu_0.jpg" />
                                                                <div class="mega-content"><p>Deliver positive business change with 3D Systems end-to-end solutions</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="manufacturing--applications-manufacturing link-about-item item-offset-2">
                    <h3>Manufacturing</h3>
                                                                <div class="mega-content"><p>Move your lean manufacturing enterprise to the next level with 3D Systems</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="assembly-processes--applications-assembly-processes link-about-item item-offset-2">
                    <h3>Assembly Processes</h3>
                                                                <div class="mega-content"><p>Minimizing assembly processes delivers stronger, better performing parts faster. 3D Systems’ solutions enable the design and manufacturing of consolidated parts for increased productivity and improved product lifespans.</p></div>
                                                                <a class="button blue top-nav-link" href="/applications/assembly-processes" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="casting--applications-casting link-about-item item-offset-2">
                    <h3>Casting</h3>
                                                                <div class="mega-content"><p>Accelerate the delivery of high quality metal products and accurate casting patterns with greater material efficiency with 3D printed wax and SLA casting patterns</p></div>
                                                                <a class="button blue top-nav-link" href="/applications/casting" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="shop-floor--applications-shop-floor link-about-item item-offset-2">
                    <h3>Shop Floor</h3>
                                                                <div class="mega-content"><p>Empower your manufacturing team by adding 3D Systems end-to-end manufacturing solutions to the shop floor to drive efficiency, productivity and better time-to-market</p></div>
                                                                <a class="button blue top-nav-link" href="/applications/shop-floor" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="injection-molding--applications-injection-molding link-about-item item-offset-2">
                    <h3>Injection Molding</h3>
                                                                <div class="mega-content"><p>Streamlining processes starts with finding the right workflow. 3D Systems’ advanced solutions for mold and tool design and manufacturing mean you can create better, more complex injection molded parts at a lower cost and in a fraction of the time</p></div>
                                                                <a class="button blue top-nav-link" href="/applications/injection-molding" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="quality-control--applications-quality-control link-about-item item-offset-2">
                    <h3>Quality Control</h3>
                                                                <div class="mega-content"><p>Rapidly analyze and measure parts for quality control purposes using 3D Systems Geomagic Control X inspection software</p></div>
                                                                <a class="button blue top-nav-link" href="/applications/quality-control" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="short-run-end-use-parts--applications-short-run-end-use-parts link-about-item item-offset-2">
                    <h3>Short-run, End-use Parts</h3>
                                                                <div class="mega-content"><p>Reduce reliance on inventory while answering short-run production needs. 3D Systems' solutions enable end-use parts to be manufactured on demand, allowing overhead to shrink and productivity to soar.</p></div>
                                                                <a class="button blue top-nav-link" href="/applications/short-run-end-use-parts" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="jigs-and-fixtures--applications-jigs-fixtures link-about-item item-offset-2">
                    <h3>Jigs and Fixtures</h3>
                                                                <div class="mega-content"><p>Produce optimized jigs and fixtures at lower costs. 3D Systems' solutions offer flexible, fast turnaround manufacturing to speed up processes while improving quality.</p></div>
                                                                <a class="button blue top-nav-link" href="/applications/jigs-fixtures" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="production-parts--applications-production-parts link-about-item item-offset-2">
                    <h3>Production Parts</h3>
                                                                <div class="mega-content"><p>Access the material and expert resources of a full manufacturing floor anywhere on the globe. 3D Systems On Demand Services provide high quality production solutions in any geometry, finish or volume.</p></div>
                                                                <a class="button blue top-nav-link" href="/applications/production-parts" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="press-tools--applications-press-tools link-about-item item-offset-2">
                    <h3>Press tools</h3>
                                                                <div class="mega-content"><p>3D printing pressing tools saves more than money; it accelerates timelines. Discover 3D Systems' solutions for tool and die manufacturing to maximize productivity.</p></div>
                                                                <a class="button blue top-nav-link" href="/applications/press-tools" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="design-and-engineering--applications-design-and-engineering link-about-item item-offset-2">
                    <h3>Design and Engineering</h3>
                                                                <div class="mega-content"><p>Accelerate your time-to-market with 3D Systems' design and engineering solutions for your business</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="scan-to-cad-design-engineering link-about-item item-offset-2">
                    <h3>Scan to CAD</h3>
                                                                                    <a class="button blue top-nav-link" href="/applications/scan-cad" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                                                            

            
                                                                                                
                                                                
                <div class="design-product-design link-about-item item-offset-2">
                    <h3>Product Design</h3>
                                                                                    <a class="button blue top-nav-link" href="/applications/product-design" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="design-for-additive--applications-design-additive link-about-item item-offset-2">
                    <h3>Design for Additive</h3>
                                                                                    <a class="button blue top-nav-link" href="/applications/design-additive" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                                                                
                <div class="mold-design--applications-mold-design link-about-item item-offset-2">
                    <h3>Mold Design</h3>
                                                                            </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="sculpted-design--applications-sculpted-design link-about-item item-offset-2">
                    <h3>Sculpted Design</h3>
                                                                                    <a class="button blue top-nav-link" href="/applications/sculpted-design" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="concept-modeling--applications-concept-modeling link-about-item item-offset-2">
                    <h3>Concept Modeling</h3>
                                                                                    <a class="button blue top-nav-link" href="/applications/concept-modeling" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                                                                
                <div class="prototyping--applications-prototyping link-about-item item-offset-2">
                    <h3>Prototyping</h3>
                                                                            </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="_d-scanning--applications-3d-scanning link-about-item item-offset-2">
                    <h3>3D Scanning</h3>
                                                                <div class="mega-content"><p>Elevate your design and quality control processes by bringing the physical world into digital</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="product-design--applications-product-design link-about-item item-offset-2">
                    <h3>Product Design</h3>
                                                                                    <a class="button blue top-nav-link" href="/applications/product-design" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="quality-inspection--applications-quality-inspection link-about-item item-offset-2">
                    <h3>Quality Inspection</h3>
                                                                                    <a class="button blue top-nav-link" href="/applications/quality-inspection" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                                                            

            
                                                                                                
                                                                
                <div class="scan-to-cad-scanning link-about-item item-offset-2">
                    <h3>Scan to CAD</h3>
                                                                                    <a class="button blue top-nav-link" href="/applications/scan-cad" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="medical-specialty--applications-medical-specialty link-about-item item-offset-2">
                    <h3>Medical Specialty</h3>
                                                                <div class="mega-content"><p>Best-in-class technology for healthcare professionals to deliver faster learning and better surgical outcomes</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="medical-surgical-simulation--applications-medical-surgical-simulation link-about-item item-offset-2">
                    <h3>Medical Surgical Simulation</h3>
                                                                                    <a class="button blue top-nav-link" href="/applications/medical-surgical-simulation" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="virtual-surgical-planning--applications-virtual-surgical-planning link-about-item item-offset-2">
                    <h3>Virtual Surgical Planning</h3>
                                                                                    <a class="button blue top-nav-link" href="/applications/virtual-surgical-planning" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="anatomical-modeling--applications-anatomical-modeling link-about-item item-offset-2">
                    <h3>Anatomical Modeling</h3>
                                                                                    <a class="button blue top-nav-link" href="/applications/anatomical-modeling" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="medical-device-manufacturing--applications-medical-device-manufacturing link-about-item item-offset-2">
                    <h3>Medical Device Manufacturing</h3>
                                                                <div class="mega-content"><p>Practice tasks and procedures in a safe environment to achieve proficiency prior to entering the OR</p></div>
                                                                <a class="button blue top-nav-link" href="/applications/medical-device-manufacturing" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="by-industry--solutionsby-industry link-about-item item-offset-1">
                    <h3>By Industry</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/industries-menu_0.jpg" />
                                                                <div class="mega-content"><p>3D Systems end-to-end solutions deliver productivity gains to enterprises through innovative use of 3D technologies and expertise</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="aerospace-and-defense--industries-aerospace-defense link-about-item item-offset-1">
                    <h3>Aerospace and Defense</h3>
                                                                <div class="mega-content"><p>Aerospace customers leverage 3D Systems industry-leading production solutions to deliver unprecedented productivity in manufacturing supply and value chains</p></div>
                                                                <a class="button blue top-nav-link" href="/industries/aerospace-defense" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="automotive--industries-automotive link-about-item item-offset-1">
                    <h3>Automotive</h3>
                                                                <div class="mega-content"><p>Automotive OEMs leverage 3D Systems end-to-end manufacturing solutions for everything from fast design iteration to delivering production parts</p></div>
                                                                <a class="button blue top-nav-link" href="/industries/automotive" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="healthcare--industries-healthcare link-about-item item-offset-1">
                    <h3>Healthcare</h3>
                                                                <div class="mega-content"><p>Experience the transformative power of 3D technology through the achievements that our customers have made in healthcare. Not only do our end-to-end 3D solutions change possibilities – they are transforming lives.</p></div>
                                                                <a class="button blue top-nav-link" href="/industries/healthcare" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                                                            

            
                                                                                                
                                                                
                <div class="dental-industry link-about-item item-offset-1">
                    <h3>Dental</h3>
                                                                <div class="mega-content"><p>Transformational digital dentistry solutions bring new levels of clinical performance, workflow efficiency and workflow automation</p></div>
                                                                <a class="button blue top-nav-link" href="/industries/dental" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="teaching-and-training--industries-teaching-training link-about-item item-offset-1">
                    <h3>Teaching and Training</h3>
                                                                <div class="mega-content"><p>Whether mastering 3D digitization and design or critical aspects of manufacturing, surgery and more, students equipped with real world skills are real world ready.</p></div>
                                                                <a class="button blue top-nav-link" href="/industries/teaching-training" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="durable-goods--industries-durable-goods link-about-item item-offset-1">
                    <h3>Durable Goods</h3>
                                                                <div class="mega-content"><p>Go to market faster with the confidence and quality of an optimized, tested product and discover how the right tools work for you, your customer, and your bottom line.</p></div>
                                                                <a class="button blue top-nav-link" href="/industries/durable-goods" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="entertainment--industries-entertainment link-about-item item-offset-1">
                    <h3>Entertainment</h3>
                                                                <div class="mega-content"><p>3D Systems Gentle Giant team delivers a long history of expert scanning, design and manufacturing teams to leverage movie FX, prop and figurine design, production, mass manufacturing and marketing of licensed property</p></div>
                                                                <a class="button blue top-nav-link" href="/industries/entertainment" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="by-products-and-services--solutionsby-products-services link-about-item item-offset-1">
                    <h3>By Products and Services</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/products-services-menu_0.png" />
                                                                <div class="mega-content"><p>From industry-leading engineering software and 3D printers, to printer materials and unique healthcare and manufacturing services, 3D Systems delivers the solutions you need to empower your business growth</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="_d-printers-__d-printers link-about-item item-offset-2">
                    <h3>3D Printers</h3>
                                                                <div class="mega-content"><p>With the broadest scope of 3D printing technologies we offer you a perfect combination of 3D printing process, material and application expertise.</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="metal-__d-printersmetal-3d-printers link-about-item item-offset-2">
                    <h3>Metal</h3>
                                                                                    <a class="button blue top-nav-link" href="/3d-printers#metal-3d-printers" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="plastic-__d-printers-plastic link-about-item item-offset-2">
                    <h3>Plastic</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            
                <div class="figure-4-__d-printers-figure-4 link-about-item ">
                    <h3>Figure 4</h3>
                                                                                    <a class="button blue top-nav-link" href="/3d-printers/figure-4" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="stereolithography-__d-printers-plasticstereolithography-printers-sla link-about-item ">
                    <h3>Stereolithography</h3>
                                                                                    <a class="button blue top-nav-link" href="/3d-printers/plastic#stereolithography-printers-sla" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="multijet-printing-__d-printers-plasticmultijet-printers-mjp link-about-item ">
                    <h3>MultiJet Printing</h3>
                                                                                    <a class="button blue top-nav-link" href="/3d-printers/plastic#multijet-printers-mjp" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="selective-laser-sintering-__d-printers-plasticselective-laser-sintering-printers-sls link-about-item ">
                    <h3>Selective Laser Sintering</h3>
                                                                                    <a class="button blue top-nav-link" href="/3d-printers/plastic#selective-laser-sintering-printers-sls" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="entry-level-industrial-__d-printers-plasticentry-level-industrial-3d-printers link-about-item ">
                    <h3>Entry-Level Industrial</h3>
                                                                                    <a class="button blue top-nav-link" href="/3d-printers/plastic#entry-level-industrial-3d-printers" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="full-color-__d-printersfull-color-3d-printers link-about-item item-offset-2">
                    <h3>Full Color</h3>
                                                                                    <a class="button blue top-nav-link" href="/3d-printers#full-color-3d-printers" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="metal-casting-__d-printersmetal-casting-3d-printers link-about-item item-offset-2">
                    <h3>Metal Casting</h3>
                                                                                    <a class="button blue top-nav-link" href="/3d-printers#metal-casting-3d-printers" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="dental-__d-printersdental-3d-printers link-about-item item-offset-2">
                    <h3>Dental</h3>
                                                                                    <a class="button blue top-nav-link" href="/3d-printers#dental-3d-printers" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="materials--materials link-about-item item-offset-2">
                    <h3>Materials</h3>
                                                                <div class="mega-content"><p>Our extensive and versatile portfolio of engineered materials addresses the widest range of applications and performance characteristics in 3D printing</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            
                <div class="metal--materials-metal link-about-item ">
                    <h3>Metal</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            
                <div class="titanium--materials-metaltitanium-materials link-about-item ">
                    <h3>Titanium</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/metal#titanium-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="stainless-steel--materials-metalstainless-steel-materials link-about-item ">
                    <h3>Stainless Steel</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/metal#stainless-steel-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="maraging-steel--materials-metalmaraging-steel-materials link-about-item ">
                    <h3>Maraging Steel</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/metal#maraging-steel-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="cobalt-chrome--materials-metalcobalt-chrome-materials link-about-item ">
                    <h3>Cobalt-Chrome</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/metal#cobalt-chrome-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="aluminum-alloy--materials-metalaluminum-alloy-materials link-about-item ">
                    <h3>Aluminum Alloy</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/metal#aluminum-alloy-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="nickel-super-alloy--materials-metalnickel-super-alloy-materials link-about-item ">
                    <h3>Nickel Super Alloy</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/metal#nickel-super-alloy-materials" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="plastic--materials-plastic link-about-item ">
                    <h3>Plastic</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            
                <div class="polypropylene-like--materials-plasticpolypropylene-like-materials link-about-item ">
                    <h3>Polypropylene-like</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/plastic#polypropylene-like-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="abs-like--materials-plasticabs-and-abs-like-materials link-about-item ">
                    <h3>ABS-like</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/plastic#abs-and-abs-like-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="tough-and-durable--materials-plastictough-and-durable-materials link-about-item ">
                    <h3>Tough and Durable</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/plastic#tough-and-durable-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="nylon--materials-plasticnylon-materials link-about-item ">
                    <h3>Nylon</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/plastic#nylon-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="transparent--materials-plastictransparent-materials link-about-item ">
                    <h3>Transparent</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/plastic#transparent-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="high-temperature--materials-plastichigh-temperature-materials link-about-item ">
                    <h3>High temperature</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/plastic#high-temperature-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="composite--materials-plasticcomposite-materials link-about-item ">
                    <h3>Composite</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/plastic#composite-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="general-purpose--materials-plasticgeneral-purpose-materials link-about-item ">
                    <h3>General purpose</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/plastic#general-purpose-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="bio-compatible--materials-plasticbio-compatible-materials link-about-item ">
                    <h3>Bio-compatible</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/plastic#bio-compatible-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="elastomeric--materials-plasticelastomeric-materials link-about-item ">
                    <h3>Elastomeric</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/plastic#elastomeric-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="cubepro-materials-https--www3dsystemscom-shop-cartridges link-about-item ">
                    <h3>CubePro Materials</h3>
                                                                                    <a class="button blue top-nav-link" href="https://www.3dsystems.com/shop/cartridges" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="full-color--materialsfull-color-materials link-about-item item-offset-2">
                    <h3>Full Color</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials#full-color-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="metal-casting--materials-metal-casting link-about-item item-offset-2">
                    <h3>Metal Casting</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            
                <div class="wax--materials-metal-castingwax-materials link-about-item ">
                    <h3>Wax</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/metal-casting#wax-materials" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="castable-plastics--materials-metal-castingcastable-plastic-materials link-about-item ">
                    <h3>Castable Plastics</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials/metal-casting#castable-plastic-materials" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="dental--materialsdental link-about-item item-offset-2">
                    <h3>Dental</h3>
                                                                                    <a class="button blue top-nav-link" href="/materials#dental" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                                                                
                <div class="material-finder--material-finder link-about-item item-offset-2">
                    <h3>Material Finder</h3>
                                                                            </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="software--software link-about-item item-offset-2">
                    <h3>Software</h3>
                                                                <div class="mega-content"><p>Engineering software tools from 3D Systems enable customers to turn any idea into a production-ready design </p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            
                <div class="_d-scanning--software3d-scanning-software link-about-item ">
                    <h3>3D Scanning</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                            

            
                                                                                                
                            
                <div class="geomagic-wrap--software-geomagic-wrap link-about-item ">
                    <h3>Geomagic Wrap</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="geomagic-design-x--software-geomagic-design-x link-about-item ">
                    <h3>Geomagic Design X</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="geomagic-for-solidworks--software-geomagic-solidworks link-about-item ">
                    <h3>Geomagic for SOLIDWORKS</h3>
                                                                            </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="design--softwaredesign-software link-about-item ">
                    <h3>Design</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            
                <div class="geomagic-freeform--software-geomagic-freeform link-about-item ">
                    <h3>Geomagic Freeform</h3>
                                                                                    <a class="button blue top-nav-link" href="/software/geomagic-freeform" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="geomagic-sculpt--software-geomagic-sculpt link-about-item ">
                    <h3>Geomagic Sculpt</h3>
                                                                            </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="_d-printing--software3d-printing-software link-about-item ">
                    <h3>3D Printing</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                            

            
                                                                                                
                            
                <div class="_d-sprint--software-3d-sprint link-about-item ">
                    <h3>3D Sprint</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="_dxpert--software-3dxpert link-about-item ">
                    <h3>3DXpert</h3>
                                                                            </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="manufacturing--softwaremanufacturing-software link-about-item ">
                    <h3>Manufacturing</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                            

            
                                                                                                
                            
                <div class="cimatron--software-cimatron link-about-item ">
                    <h3>Cimatron</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="gibbscam--software-gibbscam link-about-item ">
                    <h3>GibbsCAM</h3>
                                                                            </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="inspection--softwareinspection-software link-about-item ">
                    <h3>Inspection</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            
                <div class="geomagic-control-x--software-geomagic-control-x link-about-item ">
                    <h3>Geomagic Control X</h3>
                                                                                    <a class="button blue top-nav-link" href="/software/geomagic-control-x" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="management--software link-about-item ">
                    <h3>Management</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            
                <div class="_d-connect--software-3d-connect link-about-item ">
                    <h3>3D Connect</h3>
                                                                                    <a class="button blue top-nav-link" href="/software/3d-connect" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="healthcare--softwarehealthcare-software link-about-item ">
                    <h3>Healthcare</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            
                <div class="mentorlearn--medical-simulators-simbionix-mentorlearn link-about-item ">
                    <h3>MentorLearn</h3>
                                                                                    <a class="button blue top-nav-link" href="/medical-simulators/simbionix-mentorlearn" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="d2p--dicom-to-print link-about-item ">
                    <h3>D2P</h3>
                                                                                    <a class="button blue top-nav-link" href="/dicom-to-print" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="scanners-and-haptics--scanners-haptics link-about-item item-offset-2">
                    <h3>Scanners and Haptics</h3>
                                                                <div class="mega-content"><p>Physical to digital to physical, 3D Systems delivers hardware that scans in 3D data and haptic devices that allow a realistic 'touch' of the digital world</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            
                <div class="_d-scanners--scanners-haptics3d-scanners link-about-item ">
                    <h3>3D Scanners</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                            

            
                                                                                                
                            
                <div class="sense-scanner-__d-scanners-sense-scanner link-about-item ">
                    <h3>Sense Scanner</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="capture-scanner-__d-scanners-geomagic-capture link-about-item ">
                    <h3>Capture Scanner</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="capture-mini-3d-scanner-__d-scanners-geomagic-capture-mini link-about-item ">
                    <h3>Capture Mini 3D Scanner</h3>
                                                                            </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="haptic-devices--scanners-hapticshaptics-devices link-about-item ">
                    <h3>Haptic Devices</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            
                <div class="touch--haptics-devices-touch link-about-item ">
                    <h3>Touch</h3>
                                                                                    <a class="button blue top-nav-link" href="/haptics-devices/touch" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="touch-x--haptics-devices-touch-x link-about-item ">
                    <h3>Touch X</h3>
                                                                                    <a class="button blue top-nav-link" href="/haptics-devices/touch-x" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="phantom-premium--haptics-devices-3d-systems-phantom-premium link-about-item ">
                    <h3>Phantom Premium</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="openhaptics-developer-edition--haptics-devices-openhaptics link-about-item ">
                    <h3>OpenHaptics (Developer Edition)</h3>
                                                                            </div>
                        

                    
        
    

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="quickparts-–-on-demand-manufacturing--on-demand-manufacturing link-about-item item-offset-2">
                    <h3>Quickparts – On Demand Manufacturing</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/3d-systems-on-demand-manufacturing-services-main-image-top-nav.png" />
                                                                <div class="mega-content"><p>Advanced prototyping and manufacturing services using traditional and additive manufacturing technologies.</p><p>Contact Us<br /><span class='SL_Swap' id='smartling-odm-contact-menu-products'>770.901.3200 or <a href='mailto:Quickparts.quote@3dsystems.com'>Send an email</a></span></p><p><a class='button' href='/on-demand-manufacturing'>Get a Quote</a></p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="quickparts-rapid-prototyping--on-demand-manufacturing-fast-turn-prototyping link-about-item item-offset-2">
                    <h3>Quickparts Rapid Prototyping</h3>
                                                                <div class="mega-content"><p>High-quality design prototypes in as little as<br />24 hours</p><p><o:p></o:p></p><p>Contact Us<br />770.901.3200 or <a href='mailto:Quickparts.quote@3dsystems.com'>Send an email</a></p></div>
                                                                <a class="button blue top-nav-link" href="/on-demand-manufacturing/fast-turn-prototyping" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="advanced-prototyping--on-demand-manufacturing-advanced-prototyping link-about-item item-offset-2">
                    <h3>Advanced Prototyping</h3>
                                                                <div class="mega-content"><p>Reliable quality and service for product development</p><p>Contact Us<br />770.901.3200 or <a href='mailto:Quickparts.quote@3dsystems.com'>Send an email</a></p></div>
                                                                <a class="button blue top-nav-link" href="/on-demand-manufacturing/advanced-prototyping" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="low-volume-production--on-demand-manufacturing-low-volume-production-manufacturing link-about-item item-offset-2">
                    <h3>Low-Volume Production</h3>
                                                                <div class="mega-content"><p>Quality and responsiveness for short-run production</p><p>Contact Us<br />770.901.3200 or <a href='mailto:Quickparts.quote@3dsystems.com'>Send an email</a></p></div>
                                                                <a class="button blue top-nav-link" href="/on-demand-manufacturing/low-volume-production-manufacturing" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="appearance-models--on-demand-manufacturing-appearance-models link-about-item item-offset-2">
                    <h3>Appearance Models</h3>
                                                                <div class="mega-content"><p>Functional models with exceptional detail and accuracy</p><p>Contact Us<br />770.901.3200 or <a href='mailto:Quickparts.quote@3dsystems.com'>Send an email</a></p></div>
                                                                <a class="button blue top-nav-link" href="/on-demand-manufacturing/appearance-models" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="_d-scan-data-modeling-services-__d-scan-data-modeling-services link-about-item item-offset-1">
                    <h3>3D Scan Data Modeling Services</h3>
                                                                <div class="mega-content"><p>Upload your scan data and quickly get access to our expert team for 3D scan data processing. From reverse engineering and design services to 3D inspection routines, our team guarantees fast, high quality results every time.</p></div>
                                                                <a class="button blue top-nav-link" href="/3d-scan-data-modeling-services" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="healthcare-specific--healthcare link-about-item item-offset-2">
                    <h3>Healthcare Specific</h3>
                                                                <div class="mega-content"><p>3D Systems helps improve patient outcomes through 3D printing, training simulators, surgical planning and personalized medical technologies</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="medical-device-design-and-manufacturing--medical-device-manufacturing link-about-item item-offset-2">
                    <h3>Medical Device Design and Manufacturing</h3>
                                                                                    <a class="button blue top-nav-link" href="/medical-device-manufacturing" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="virtual-surgical-planning--vsp link-about-item item-offset-2">
                    <h3>Virtual Surgical Planning</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                            

            
                                                                                                
                            
                <div class="vsp-orthognathics--vsp-vsp-orthognathics link-about-item ">
                    <h3>VSP Orthognathics</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="vsp-cranial--vsp-vsp-cranial link-about-item ">
                    <h3>VSP Cranial</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="vsp-reconstruction--vsp-vsp-reconstruction link-about-item ">
                    <h3>VSP Reconstruction</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="jaw-in-a-day--vsp-jaw-day link-about-item ">
                    <h3>Jaw in a Day</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="vsp-trauma--vsp-vsp-trauma link-about-item ">
                    <h3>VSP Trauma</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="vsp-distraction--vsp-vsp-distraction link-about-item ">
                    <h3>VSP Distraction</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="journal-references--vsp-journal-references link-about-item ">
                    <h3>Journal References</h3>
                                                                            </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="download-library--healthcare-download-library link-about-item ">
                    <h3>Download Library</h3>
                                                                <div class="mega-content"><p>Download any of our Virtual Surgical Planning (VSP) or Anatomical Modeling&nbsp;Protocols and Order Forms.</p></div>
                                                                <a class="button blue top-nav-link" href="/healthcare/download-library" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="medical-simulation--healthcare-medical-simulation link-about-item item-offset-2">
                    <h3>Medical Simulation</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                            

            
                                                                                                
                            
                <div class="medical-simulators--healthcare-medical-simulators link-about-item ">
                    <h3>Medical Simulators</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="custom-simulation--healthcare-medical-simulation-custom-simulation link-about-item ">
                    <h3>Custom Simulation</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="angio-mentor--medical-simulators-simbionix-angio-mentor link-about-item ">
                    <h3>ANGIO Mentor</h3>
                                                                            </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="arthro-mentor--medical-simulators-simbionix-arthro-mentor link-about-item ">
                    <h3>ARTHRO Mentor</h3>
                                                                                    <a class="button blue top-nav-link" href="/medical-simulators/simbionix-arthro-mentor" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="bronch-mentor--medical-simulators-simbionix-bronch-mentor link-about-item ">
                    <h3>BRONCH Mentor</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="gi-mentor--medical-simulators-simbionix-gi-mentor link-about-item ">
                    <h3>GI Mentor</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="hyst-mentor--medical-simulators-simbionix-hyst-mentor link-about-item ">
                    <h3>HYST Mentor</h3>
                                                                            </div>
                        

                                                                                                                                                                                                        

            
                                                                                                
                            
                <div class="lap-mentor--medical-simulators-simbionix-lap-mentor link-about-item ">
                    <h3>LAP Mentor</h3>
                                                                            </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="pelvic-mentor--medical-simulators-simbionix-pelvic-mentor link-about-item ">
                    <h3>PELVIC Mentor</h3>
                                                                                    <a class="button blue top-nav-link" href="/medical-simulators/simbionix-pelvic-mentor" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="perc-mentor--medical-simulators-simbionix-perc-mentor link-about-item ">
                    <h3>PERC Mentor</h3>
                                                                                    <a class="button blue top-nav-link" href="/medical-simulators/simbionix-perc-mentor" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="robotix-mentor--medical-simulators-simbionix-robotix-mentor link-about-item ">
                    <h3>ROBOTIX Mentor</h3>
                                                                                    <a class="button blue top-nav-link" href="/medical-simulators/simbionix-robotix-mentor" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="spine-mentor--medical-simulators-simbionix-spine-mentor link-about-item ">
                    <h3>SPINE Mentor</h3>
                                                                                    <a class="button blue top-nav-link" href="/medical-simulators/simbionix-spine-mentor" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="u-s-mentor--medical-simulators-simbionix-us-mentor link-about-item ">
                    <h3>U/S Mentor</h3>
                                                                                    <a class="button blue top-nav-link" href="/medical-simulators/simbionix-us-mentor" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="uro-mentor--medical-simulators-simbionix-uro-mentor link-about-item ">
                    <h3>URO Mentor</h3>
                                                                                    <a class="button blue top-nav-link" href="/medical-simulators/simbionix-uro-mentor" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="turp-mentor--medical-simulators-simbionix-turp-mentor link-about-item ">
                    <h3>TURP Mentor</h3>
                                                                                    <a class="button blue top-nav-link" href="/medical-simulators/simbionix-turp-mentor" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="mentorlearn--medical-simulators-simbionix-mentorlearn link-about-item ">
                    <h3>MentorLearn</h3>
                                                                                    <a class="button blue top-nav-link" href="/medical-simulators/simbionix-mentorlearn" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="procedure-rehearsal-studio--medical-simulators-procedure-rehearsal-studio link-about-item ">
                    <h3>PROcedure Rehearsal Studio</h3>
                                                                                    <a class="button blue top-nav-link" href="/medical-simulators/procedure-rehearsal-studio" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="anatomical-models--anatomical-models link-about-item item-offset-2">
                    <h3>Anatomical Models</h3>
                                                                                    <a class="button blue top-nav-link" href="/anatomical-models" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="d2p-software--dicom-to-print link-about-item item-offset-2">
                    <h3>D2P Software</h3>
                                                                                    <a class="button blue top-nav-link" href="/dicom-to-print" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            
                <div class="dental-manufacturing-and-design-services--dental link-about-item item-offset-2">
                    <h3>Dental Manufacturing and Design Services</h3>
                                                                            </div>
                        
        
                                                                                                                                                                                            

            
                                                                                                
                            
                <div class="implant-suprastructure--implant-suprastructure link-about-item ">
                    <h3>Implant Suprastructure</h3>
                                                                            </div>
                        

                    
        
    

                    
        
    

                    
        
    

                    
        
    

                                </li>
                                                        <li class="has-dropdown large-3" link_class="solutions--solutions"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li class="has-dropdown" link_class="by-application--solutionsby-application" >

                    <a href="/solutions#by-application" class="top-nav-link">By Application</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">By Application</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="by-application--solutionsby-application"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li class="has-dropdown" link_class="manufacturing--applications-manufacturing" >

                    <a href="/applications/manufacturing" class="top-nav-link">Manufacturing</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Manufacturing</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="manufacturing--applications-manufacturing"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="assembly-processes--applications-assembly-processes" >

                    <a href="/applications/assembly-processes" class="top-nav-link">Assembly Processes</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="casting--applications-casting" >

                    <a href="/applications/casting" class="top-nav-link">Casting</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="shop-floor--applications-shop-floor" >

                    <a href="/applications/shop-floor" class="top-nav-link">Shop Floor</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="injection-molding--applications-injection-molding" >

                    <a href="/applications/injection-molding" class="top-nav-link">Injection Molding</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="quality-control--applications-quality-control" >

                    <a href="/applications/quality-control" class="top-nav-link">Quality Control</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="short-run-end-use-parts--applications-short-run-end-use-parts" >

                    <a href="/applications/short-run-end-use-parts" class="top-nav-link">Short-run, End-use Parts</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="jigs-and-fixtures--applications-jigs-fixtures" >

                    <a href="/applications/jigs-fixtures" class="top-nav-link">Jigs and Fixtures</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="production-parts--applications-production-parts" >

                    <a href="/applications/production-parts" class="top-nav-link">Production Parts</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="press-tools--applications-press-tools" >

                    <a href="/applications/press-tools" class="top-nav-link">Press tools</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/applications/manufacturing">All Manufacturing</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="design-and-engineering--applications-design-and-engineering" >

                    <a href="/applications/design-and-engineering" class="top-nav-link">Design and Engineering</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Design and Engineering</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="design-and-engineering--applications-design-and-engineering"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="scan-to-cad-design-engineering" >

                    <a href="/applications/scan-cad" class="top-nav-link">Scan to CAD</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                                                            

            
                                                                                                
                            <li link_class="design-product-design" >

                    <a href="/applications/product-design" class="top-nav-link">Product Design</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="design-for-additive--applications-design-additive" >

                    <a href="/applications/design-additive" class="top-nav-link">Design for Additive</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="mold-design--applications-mold-design" >

                    <a href="/applications/mold-design" class="top-nav-link">Mold Design</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="sculpted-design--applications-sculpted-design" >

                    <a href="/applications/sculpted-design" class="top-nav-link">Sculpted Design</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="concept-modeling--applications-concept-modeling" >

                    <a href="/applications/concept-modeling" class="top-nav-link">Concept Modeling</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="prototyping--applications-prototyping" >

                    <a href="/applications/prototyping" class="top-nav-link">Prototyping</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/applications/design-and-engineering">All Design and Engineering</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="_d-scanning--applications-3d-scanning" >

                    <a href="/applications/3d-scanning" class="top-nav-link">3D Scanning</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">3D Scanning</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="_d-scanning--applications-3d-scanning"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="product-design--applications-product-design" >

                    <a href="/applications/product-design" class="top-nav-link">Product Design</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="quality-inspection--applications-quality-inspection" >

                    <a href="/applications/quality-inspection" class="top-nav-link">Quality Inspection</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                                                            

            
                                                                                                
                            <li link_class="scan-to-cad-scanning" >

                    <a href="/applications/scan-cad" class="top-nav-link">Scan to CAD</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/applications/3d-scanning">All 3D Scanning</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="medical-specialty--applications-medical-specialty" >

                    <a href="/applications/medical-specialty" class="top-nav-link">Medical Specialty</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Medical Specialty</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="medical-specialty--applications-medical-specialty"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="medical-surgical-simulation--applications-medical-surgical-simulation" >

                    <a href="/applications/medical-surgical-simulation" class="top-nav-link">Medical Surgical Simulation</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="virtual-surgical-planning--applications-virtual-surgical-planning" >

                    <a href="/applications/virtual-surgical-planning" class="top-nav-link">Virtual Surgical Planning</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="anatomical-modeling--applications-anatomical-modeling" >

                    <a href="/applications/anatomical-modeling" class="top-nav-link">Anatomical Modeling</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="medical-device-manufacturing--applications-medical-device-manufacturing" >

                    <a href="/applications/medical-device-manufacturing" class="top-nav-link">Medical Device Manufacturing</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/applications/medical-specialty">All Medical Specialty</a>
                            </li>
                        </ul>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/solutions#by-application">All By Application</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="by-industry--solutionsby-industry" >

                    <a href="/solutions#by-industry" class="top-nav-link">By Industry</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">By Industry</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="by-industry--solutionsby-industry"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="aerospace-and-defense--industries-aerospace-defense" >

                    <a href="/industries/aerospace-defense" class="top-nav-link">Aerospace and Defense</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="automotive--industries-automotive" >

                    <a href="/industries/automotive" class="top-nav-link">Automotive</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="healthcare--industries-healthcare" >

                    <a href="/industries/healthcare" class="top-nav-link">Healthcare</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                                                            

            
                                                                                                
                            <li link_class="dental-industry" >

                    <a href="/industries/dental" class="top-nav-link">Dental</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="teaching-and-training--industries-teaching-training" >

                    <a href="/industries/teaching-training" class="top-nav-link">Teaching and Training</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="durable-goods--industries-durable-goods" >

                    <a href="/industries/durable-goods" class="top-nav-link">Durable Goods</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="entertainment--industries-entertainment" >

                    <a href="/industries/entertainment" class="top-nav-link">Entertainment</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/solutions#by-industry">All By Industry</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="by-products-and-services--solutionsby-products-services" >

                    <a href="/solutions#by-products-services" class="top-nav-link">By Products and Services</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">By Products and Services</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="by-products-and-services--solutionsby-products-services"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li class="has-dropdown" link_class="_d-printers-__d-printers" >

                    <a href="/3d-printers" class="top-nav-link">3D Printers</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">3D Printers</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="_d-printers-__d-printers"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="metal-__d-printersmetal-3d-printers" >

                    <a href="/3d-printers#metal-3d-printers" class="top-nav-link">Metal</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="plastic-__d-printers-plastic" >

                    <a href="/3d-printers/plastic" class="top-nav-link">Plastic</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Plastic</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="plastic-__d-printers-plastic"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="figure-4-__d-printers-figure-4" >

                    <a href="/3d-printers/figure-4" class="top-nav-link">Figure 4</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="stereolithography-__d-printers-plasticstereolithography-printers-sla" >

                    <a href="/3d-printers/plastic#stereolithography-printers-sla" class="top-nav-link">Stereolithography</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="multijet-printing-__d-printers-plasticmultijet-printers-mjp" >

                    <a href="/3d-printers/plastic#multijet-printers-mjp" class="top-nav-link">MultiJet Printing</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="selective-laser-sintering-__d-printers-plasticselective-laser-sintering-printers-sls" >

                    <a href="/3d-printers/plastic#selective-laser-sintering-printers-sls" class="top-nav-link">Selective Laser Sintering</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="entry-level-industrial-__d-printers-plasticentry-level-industrial-3d-printers" >

                    <a href="/3d-printers/plastic#entry-level-industrial-3d-printers" class="top-nav-link">Entry-Level Industrial</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/3d-printers/plastic">All Plastic</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="full-color-__d-printersfull-color-3d-printers" >

                    <a href="/3d-printers#full-color-3d-printers" class="top-nav-link">Full Color</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="metal-casting-__d-printersmetal-casting-3d-printers" >

                    <a href="/3d-printers#metal-casting-3d-printers" class="top-nav-link">Metal Casting</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="dental-__d-printersdental-3d-printers" >

                    <a href="/3d-printers#dental-3d-printers" class="top-nav-link">Dental</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/3d-printers">All 3D Printers</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="materials--materials" >

                    <a href="/materials" class="top-nav-link">Materials</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Materials</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="materials--materials"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li class="has-dropdown" link_class="metal--materials-metal" >

                    <a href="/materials/metal" class="top-nav-link">Metal</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Metal</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="metal--materials-metal"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="titanium--materials-metaltitanium-materials" >

                    <a href="/materials/metal#titanium-materials" class="top-nav-link">Titanium</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="stainless-steel--materials-metalstainless-steel-materials" >

                    <a href="/materials/metal#stainless-steel-materials" class="top-nav-link">Stainless Steel</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="maraging-steel--materials-metalmaraging-steel-materials" >

                    <a href="/materials/metal#maraging-steel-materials" class="top-nav-link">Maraging Steel</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="cobalt-chrome--materials-metalcobalt-chrome-materials" >

                    <a href="/materials/metal#cobalt-chrome-materials" class="top-nav-link">Cobalt-Chrome</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="aluminum-alloy--materials-metalaluminum-alloy-materials" >

                    <a href="/materials/metal#aluminum-alloy-materials" class="top-nav-link">Aluminum Alloy</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="nickel-super-alloy--materials-metalnickel-super-alloy-materials" >

                    <a href="/materials/metal#nickel-super-alloy-materials" class="top-nav-link">Nickel Super Alloy</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/materials/metal">All Metal</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="plastic--materials-plastic" >

                    <a href="/materials/plastic" class="top-nav-link">Plastic</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Plastic</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="plastic--materials-plastic"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="polypropylene-like--materials-plasticpolypropylene-like-materials" >

                    <a href="/materials/plastic#polypropylene-like-materials" class="top-nav-link">Polypropylene-like</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="abs-like--materials-plasticabs-and-abs-like-materials" >

                    <a href="/materials/plastic#abs-and-abs-like-materials" class="top-nav-link">ABS-like</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="tough-and-durable--materials-plastictough-and-durable-materials" >

                    <a href="/materials/plastic#tough-and-durable-materials" class="top-nav-link">Tough and Durable</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="nylon--materials-plasticnylon-materials" >

                    <a href="/materials/plastic#nylon-materials" class="top-nav-link">Nylon</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="transparent--materials-plastictransparent-materials" >

                    <a href="/materials/plastic#transparent-materials" class="top-nav-link">Transparent</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="high-temperature--materials-plastichigh-temperature-materials" >

                    <a href="/materials/plastic#high-temperature-materials" class="top-nav-link">High temperature</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="composite--materials-plasticcomposite-materials" >

                    <a href="/materials/plastic#composite-materials" class="top-nav-link">Composite</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="general-purpose--materials-plasticgeneral-purpose-materials" >

                    <a href="/materials/plastic#general-purpose-materials" class="top-nav-link">General purpose</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="bio-compatible--materials-plasticbio-compatible-materials" >

                    <a href="/materials/plastic#bio-compatible-materials" class="top-nav-link">Bio-compatible</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="elastomeric--materials-plasticelastomeric-materials" >

                    <a href="/materials/plastic#elastomeric-materials" class="top-nav-link">Elastomeric</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="cubepro-materials-https--www3dsystemscom-shop-cartridges" >

                    <a href="https://www.3dsystems.com/shop/cartridges" class="top-nav-link">CubePro Materials</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/materials/plastic">All Plastic</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="full-color--materialsfull-color-materials" >

                    <a href="/materials#full-color-materials" class="top-nav-link">Full Color</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="metal-casting--materials-metal-casting" >

                    <a href="/materials/metal-casting" class="top-nav-link">Metal Casting</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Metal Casting</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="metal-casting--materials-metal-casting"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="wax--materials-metal-castingwax-materials" >

                    <a href="/materials/metal-casting#wax-materials" class="top-nav-link">Wax</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="castable-plastics--materials-metal-castingcastable-plastic-materials" >

                    <a href="/materials/metal-casting#castable-plastic-materials" class="top-nav-link">Castable Plastics</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/materials/metal-casting">All Metal Casting</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="dental--materialsdental" >

                    <a href="/materials#dental" class="top-nav-link">Dental</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="material-finder--material-finder" >

                    <a href="/material-finder" class="top-nav-link">Material Finder</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/materials">All Materials</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="software--software" >

                    <a href="/software" class="top-nav-link">Software</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Software</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="software--software"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li class="has-dropdown" link_class="_d-scanning--software3d-scanning-software" >

                    <a href="/software#3d-scanning-software" class="top-nav-link">3D Scanning</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">3D Scanning</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="_d-scanning--software3d-scanning-software"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                            

            
                                                                                                
                            <li link_class="geomagic-wrap--software-geomagic-wrap" >

                    <a href="/software/geomagic-wrap" class="top-nav-link">Geomagic Wrap</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="geomagic-design-x--software-geomagic-design-x" >

                    <a href="/software/geomagic-design-x" class="top-nav-link">Geomagic Design X</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="geomagic-for-solidworks--software-geomagic-solidworks" >

                    <a href="/software/geomagic-solidworks" class="top-nav-link">Geomagic for SOLIDWORKS</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/software#3d-scanning-software">All 3D Scanning</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="design--softwaredesign-software" >

                    <a href="/software#design-software" class="top-nav-link">Design</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Design</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="design--softwaredesign-software"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="geomagic-freeform--software-geomagic-freeform" >

                    <a href="/software/geomagic-freeform" class="top-nav-link">Geomagic Freeform</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="geomagic-sculpt--software-geomagic-sculpt" >

                    <a href="/software/geomagic-sculpt" class="top-nav-link">Geomagic Sculpt</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/software#design-software">All Design</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="_d-printing--software3d-printing-software" >

                    <a href="/software#3d-printing-software" class="top-nav-link">3D Printing</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">3D Printing</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="_d-printing--software3d-printing-software"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                            

            
                                                                                                
                            <li link_class="_d-sprint--software-3d-sprint" >

                    <a href="/software/3d-sprint" class="top-nav-link">3D Sprint</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="_dxpert--software-3dxpert" >

                    <a href="/software/3dxpert" class="top-nav-link">3DXpert</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/software#3d-printing-software">All 3D Printing</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="manufacturing--softwaremanufacturing-software" >

                    <a href="/software#manufacturing-software" class="top-nav-link">Manufacturing</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Manufacturing</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="manufacturing--softwaremanufacturing-software"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                            

            
                                                                                                
                            <li link_class="cimatron--software-cimatron" >

                    <a href="/software/cimatron" class="top-nav-link">Cimatron</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="gibbscam--software-gibbscam" >

                    <a href="/software/gibbscam" class="top-nav-link">GibbsCAM</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/software#manufacturing-software">All Manufacturing</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="inspection--softwareinspection-software" >

                    <a href="/software#inspection-software" class="top-nav-link">Inspection</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Inspection</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="inspection--softwareinspection-software"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="geomagic-control-x--software-geomagic-control-x" >

                    <a href="/software/geomagic-control-x" class="top-nav-link">Geomagic Control X</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/software#inspection-software">All Inspection</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="management--software" >

                    <a href="/software" class="top-nav-link">Management</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Management</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="management--software"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="_d-connect--software-3d-connect" >

                    <a href="/software/3d-connect" class="top-nav-link">3D Connect</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/software">All Management</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="healthcare--softwarehealthcare-software" >

                    <a href="/software#healthcare-software" class="top-nav-link">Healthcare</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Healthcare</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="healthcare--softwarehealthcare-software"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="mentorlearn--medical-simulators-simbionix-mentorlearn" >

                    <a href="/medical-simulators/simbionix-mentorlearn" class="top-nav-link">MentorLearn</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="d2p--dicom-to-print" >

                    <a href="/dicom-to-print" class="top-nav-link">D2P</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/software#healthcare-software">All Healthcare</a>
                            </li>
                        </ul>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/software">All Software</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="scanners-and-haptics--scanners-haptics" >

                    <a href="/scanners-haptics" class="top-nav-link">Scanners and Haptics</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Scanners and Haptics</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="scanners-and-haptics--scanners-haptics"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li class="has-dropdown" link_class="_d-scanners--scanners-haptics3d-scanners" >

                    <a href="/scanners-haptics#3d-scanners" class="top-nav-link">3D Scanners</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">3D Scanners</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="_d-scanners--scanners-haptics3d-scanners"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                            

            
                                                                                                
                            <li link_class="sense-scanner-__d-scanners-sense-scanner" >

                    <a href="/3d-scanners/sense-scanner" class="top-nav-link">Sense Scanner</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="capture-scanner-__d-scanners-geomagic-capture" >

                    <a href="/3d-scanners/geomagic-capture" class="top-nav-link">Capture Scanner</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="capture-mini-3d-scanner-__d-scanners-geomagic-capture-mini" >

                    <a href="/3d-scanners/geomagic-capture-mini" class="top-nav-link">Capture Mini 3D Scanner</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/scanners-haptics#3d-scanners">All 3D Scanners</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="haptic-devices--scanners-hapticshaptics-devices" >

                    <a href="/scanners-haptics#haptics-devices" class="top-nav-link">Haptic Devices</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Haptic Devices</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="haptic-devices--scanners-hapticshaptics-devices"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="touch--haptics-devices-touch" >

                    <a href="/haptics-devices/touch" class="top-nav-link">Touch</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="touch-x--haptics-devices-touch-x" >

                    <a href="/haptics-devices/touch-x" class="top-nav-link">Touch X</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="phantom-premium--haptics-devices-3d-systems-phantom-premium" >

                    <a href="/haptics-devices/3d-systems-phantom-premium" class="top-nav-link">Phantom Premium</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="openhaptics-developer-edition--haptics-devices-openhaptics" >

                    <a href="/haptics-devices/openhaptics" class="top-nav-link">OpenHaptics (Developer Edition)</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/scanners-haptics#haptics-devices">All Haptic Devices</a>
                            </li>
                        </ul>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/scanners-haptics">All Scanners and Haptics</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="quickparts-–-on-demand-manufacturing--on-demand-manufacturing" >

                    <a href="/on-demand-manufacturing" class="top-nav-link">Quickparts – On Demand Manufacturing</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Quickparts – On Demand Manufacturing</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="quickparts-–-on-demand-manufacturing--on-demand-manufacturing"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="quickparts-rapid-prototyping--on-demand-manufacturing-fast-turn-prototyping" >

                    <a href="/on-demand-manufacturing/fast-turn-prototyping" class="top-nav-link">Quickparts Rapid Prototyping</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="advanced-prototyping--on-demand-manufacturing-advanced-prototyping" >

                    <a href="/on-demand-manufacturing/advanced-prototyping" class="top-nav-link">Advanced Prototyping</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="low-volume-production--on-demand-manufacturing-low-volume-production-manufacturing" >

                    <a href="/on-demand-manufacturing/low-volume-production-manufacturing" class="top-nav-link">Low-Volume Production</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="appearance-models--on-demand-manufacturing-appearance-models" >

                    <a href="/on-demand-manufacturing/appearance-models" class="top-nav-link">Appearance Models</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/on-demand-manufacturing">All Quickparts – On Demand Manufacturing</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="_d-scan-data-modeling-services-__d-scan-data-modeling-services" >

                    <a href="/3d-scan-data-modeling-services" class="top-nav-link">3D Scan Data Modeling Services</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="healthcare-specific--healthcare" >

                    <a href="/healthcare" class="top-nav-link">Healthcare Specific</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Healthcare Specific</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="healthcare-specific--healthcare"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="medical-device-design-and-manufacturing--medical-device-manufacturing" >

                    <a href="/medical-device-manufacturing" class="top-nav-link">Medical Device Design and Manufacturing</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="virtual-surgical-planning--vsp" >

                    <a href="/vsp" class="top-nav-link">Virtual Surgical Planning</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Virtual Surgical Planning</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="virtual-surgical-planning--vsp"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                            

            
                                                                                                
                            <li link_class="vsp-orthognathics--vsp-vsp-orthognathics" >

                    <a href="/vsp/vsp-orthognathics" class="top-nav-link">VSP Orthognathics</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="vsp-cranial--vsp-vsp-cranial" >

                    <a href="/vsp/vsp-cranial" class="top-nav-link">VSP Cranial</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="vsp-reconstruction--vsp-vsp-reconstruction" >

                    <a href="/vsp/vsp-reconstruction" class="top-nav-link">VSP Reconstruction</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="jaw-in-a-day--vsp-jaw-day" >

                    <a href="/vsp/jaw-day" class="top-nav-link">Jaw in a Day</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="vsp-trauma--vsp-vsp-trauma" >

                    <a href="/vsp/vsp-trauma" class="top-nav-link">VSP Trauma</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="vsp-distraction--vsp-vsp-distraction" >

                    <a href="/vsp/vsp-distraction" class="top-nav-link">VSP Distraction</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="journal-references--vsp-journal-references" >

                    <a href="/vsp/journal-references" class="top-nav-link">Journal References</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="download-library--healthcare-download-library" >

                    <a href="/healthcare/download-library" class="top-nav-link">Download Library</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/vsp">All Virtual Surgical Planning</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="medical-simulation--healthcare-medical-simulation" >

                    <a href="/healthcare/medical-simulation" class="top-nav-link">Medical Simulation</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Medical Simulation</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="medical-simulation--healthcare-medical-simulation"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                            

            
                                                                                                
                            <li link_class="medical-simulators--healthcare-medical-simulators" >

                    <a href="/healthcare/medical-simulators" class="top-nav-link">Medical Simulators</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="custom-simulation--healthcare-medical-simulation-custom-simulation" >

                    <a href="/healthcare/medical-simulation/custom-simulation" class="top-nav-link">Custom Simulation</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="angio-mentor--medical-simulators-simbionix-angio-mentor" >

                    <a href="/medical-simulators/simbionix-angio-mentor" class="top-nav-link">ANGIO Mentor</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="arthro-mentor--medical-simulators-simbionix-arthro-mentor" >

                    <a href="/medical-simulators/simbionix-arthro-mentor" class="top-nav-link">ARTHRO Mentor</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="bronch-mentor--medical-simulators-simbionix-bronch-mentor" >

                    <a href="/medical-simulators/simbionix-bronch-mentor" class="top-nav-link">BRONCH Mentor</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="gi-mentor--medical-simulators-simbionix-gi-mentor" >

                    <a href="/medical-simulators/simbionix-gi-mentor" class="top-nav-link">GI Mentor</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="hyst-mentor--medical-simulators-simbionix-hyst-mentor" >

                    <a href="/medical-simulators/simbionix-hyst-mentor" class="top-nav-link">HYST Mentor</a>
                                    </li>
                                                                                                                                                                                                        

            
                                                                                                
                            <li link_class="lap-mentor--medical-simulators-simbionix-lap-mentor" >

                    <a href="/medical-simulators/simbionix-lap-mentor" class="top-nav-link">LAP Mentor</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="pelvic-mentor--medical-simulators-simbionix-pelvic-mentor" >

                    <a href="/medical-simulators/simbionix-pelvic-mentor" class="top-nav-link">PELVIC Mentor</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="perc-mentor--medical-simulators-simbionix-perc-mentor" >

                    <a href="/medical-simulators/simbionix-perc-mentor" class="top-nav-link">PERC Mentor</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="robotix-mentor--medical-simulators-simbionix-robotix-mentor" >

                    <a href="/medical-simulators/simbionix-robotix-mentor" class="top-nav-link">ROBOTIX Mentor</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="spine-mentor--medical-simulators-simbionix-spine-mentor" >

                    <a href="/medical-simulators/simbionix-spine-mentor" class="top-nav-link">SPINE Mentor</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="u-s-mentor--medical-simulators-simbionix-us-mentor" >

                    <a href="/medical-simulators/simbionix-us-mentor" class="top-nav-link">U/S Mentor</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="uro-mentor--medical-simulators-simbionix-uro-mentor" >

                    <a href="/medical-simulators/simbionix-uro-mentor" class="top-nav-link">URO Mentor</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="turp-mentor--medical-simulators-simbionix-turp-mentor" >

                    <a href="/medical-simulators/simbionix-turp-mentor" class="top-nav-link">TURP Mentor</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="mentorlearn--medical-simulators-simbionix-mentorlearn" >

                    <a href="/medical-simulators/simbionix-mentorlearn" class="top-nav-link">MentorLearn</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="procedure-rehearsal-studio--medical-simulators-procedure-rehearsal-studio" >

                    <a href="/medical-simulators/procedure-rehearsal-studio" class="top-nav-link">PROcedure Rehearsal Studio</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/healthcare/medical-simulation">All Medical Simulation</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="anatomical-models--anatomical-models" >

                    <a href="/anatomical-models" class="top-nav-link">Anatomical Models</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="d2p-software--dicom-to-print" >

                    <a href="/dicom-to-print" class="top-nav-link">D2P Software</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="dental-manufacturing-and-design-services--dental" >

                    <a href="/dental" class="top-nav-link">Dental Manufacturing and Design Services</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Dental Manufacturing and Design Services</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="dental-manufacturing-and-design-services--dental"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                            

            
                                                                                                
                            <li link_class="implant-suprastructure--implant-suprastructure" >

                    <a href="/implant-suprastructure" class="top-nav-link">Implant Suprastructure</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/dental">All Dental Manufacturing and Design Services</a>
                            </li>
                        </ul>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/healthcare">All Healthcare Specific</a>
                            </li>
                        </ul>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/solutions#by-products-services">All By Products and Services</a>
                            </li>
                        </ul>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/solutions">All Solutions</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                                                            

            
                                                                                                                    
                            <li class="has-dropdown" link_class="on-demand-manufacturing-1" data-equalizer="nav-dropdown" data-equalizer-mq="large-up">

                    <a href="/on-demand-manufacturing" class="top-nav-link">Quickparts – On Demand</a>
                                                                    <ul class="dropdown row">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Quickparts – On Demand</a>
                                </h5>
                            </li>
                                                            <li class="link-about large-9 show-for-large-up">
                                    <div class="on-demand-manufacturing-1 link-about-item item-full-width">
                                        <h3>Ordering a Part from One of Our Four Services Is Easy:</h3>
                                                                                                                            <div class="mega-content"><div class='row' data-equalizer='odm-callout-box' data-equalizer-mq='large-up'><div class='columns small-12 medium-12 large-9'><div class='callout-box'><div class='callout-header text-center'><h5>Quickparts Rapid&nbsp;Prototyping, Advanced Prototyping and Low-Volume Production</h5></div><div class='callout-content'><div class='row' data-equalizer-watch='odm-callout-box'><div class='columns small-12 medium-3 text-center'><div class='step-number'>1</div><div><svg style='enable-background:new 0 0 48 77;' version='1.1' viewbox='0 0 48 77' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='gray-mid' d='M16.4,28.8v4c0,0.5-0.4,0.9-0.9,0.9H6.7c-0.5,0-0.9,0.4-0.9,0.9v35.7c0,0.5,0.4,0.9,0.9,0.9	h34.6c0.5,0,0.9-0.4,0.9-0.9V34.5c0-0.5-0.4-0.9-0.9-0.9h-8.7c-0.5,0-0.9-0.4-0.9-0.9v-4c0-0.5,0.4-0.9,0.9-0.9h13.5	c1.1,0,1.9,0.9,1.9,1.9V75c0,1.1-0.9,1.9-1.9,1.9H1.9C0.9,77,0,76.1,0,75.1V29.8c0-1.1,0.9-1.9,1.9-1.9h13.5	C16,27.8,16.4,28.3,16.4,28.8'></path> <path class='green' d='M26.9,12.3V49c0,0.5-0.4,0.9-0.9,0.9h-4c-0.5,0-0.9-0.4-0.9-0.9V12.5c0-0.6-0.7-0.9-1.1-0.5l-8.4,8.4	c-0.4,0.4-1,0.4-1.3,0l-2.8-2.8c-0.4-0.4-0.4-1,0-1.3L19.9,3.7l0,0l3.4-3.4c0.4-0.4,1.1-0.4,1.5,0l3.4,3.4l0,0l12.4,12.4	c0.4,0.4,0.4,1,0,1.3l-2.8,2.8c-0.4,0.4-1,0.4-1.3,0L28,11.9C27.6,11.4,26.9,11.7,26.9,12.3'></path> </svg></div><p>Upload your model</p></div><div class='columns small-12 medium-5 text-center'><div class='step-number'>2</div><div><svg style='enable-background:new 0 0 114 81;' version='1.1' viewbox='0 0 114 81' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='gray-body' d='M94.2,13.9h-20c-1.1,0-2,0.9-2,2V36c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V15.9C96.2,14.8,95.3,13.9,94.2,13.9z	 M92.8,34.7H75.6V17.3h17.2V34.7z'></path> <path class='gray-body' d='M62.5,45.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C68.3,49.5,62.5,45.4,62.5,45.4'></path> <path class='gray-body' d='M45.4,45.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C51.1,49.5,45.4,45.4,45.4,45.4'></path> <path class='gray-body' d='M54,30.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C59.7,34.5,54,30.4,54,30.4'></path> <path class='gray-body' d='M16.9,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S15.6,28.3,16.9,28.3'></path> <path class='gray-body' d='M27.1,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S25.8,28.3,27.1,28.3'></path> <path class='gray-body' d='M37.3,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4C36,23.6,35,24.7,35,26S36,28.3,37.3,28.3'></path> <path class='gray-body' d='M22,37.8c1.3,0,2.4-1.1,2.4-2.4c0-1.3-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4C19.6,36.8,20.7,37.8,22,37.8'></path> <path class='gray-body' d='M32.2,37.8c1.3,0,2.4-1.1,2.4-2.4c0-1.3-1.1-2.4-2.4-2.4c-1.3,0-2.4,1.1-2.4,2.4C29.8,36.8,30.9,37.8,32.2,37.8	'></path> <path class='gray-body' d='M22,18.9c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S20.7,18.9,22,18.9'></path> <path class='gray-body' d='M32.2,18.9c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4c-1.3,0-2.4,1.1-2.4,2.4C29.8,17.8,30.9,18.9,32.2,18.9'></path> <path class='green' d='M90.2,59.7l-24.5-7c-0.8-0.2-1.7,0.6-1.4,1.4l7,24.6c0.2,0.7,1.1,0.9,1.7,0.3l4.3-6l7.7,7.7	c0.5,0.5,1.3,0.4,1.9-0.1l5.1-5.1c0.6-0.6,0.6-1.4,0.1-1.9l-7.7-7.7l6-4.3C91,60.9,90.9,59.9,90.2,59.7'></path> <path class='gray-mid' d='M94.3,69.2v-4.4c0-0.4,0.3-0.8,0.7-0.8h12.5c0.4,0,0.7-0.3,0.7-0.7V6.6c0-0.4-0.3-0.7-0.7-0.7H6.5	c-0.4,0-0.7,0.3-0.7,0.7v56.7c0,0.4,0.3,0.7,0.7,0.7H62c0.4,0,0.7,0.3,0.7,0.8v4.4c0,0.4-0.3,0.8-0.7,0.8H1.5C0.7,70,0,69.3,0,68.4	V1.6C0,0.7,0.7,0,1.5,0h110.9c0.8,0,1.5,0.7,1.5,1.6v66.9c0,0.9-0.7,1.6-1.5,1.6H95C94.6,70,94.3,69.7,94.3,69.2'></path> </svg></div><p>Choose your material, process, and finish</p></div><div class='columns small-12 medium-4 text-center'><div class='step-number'>3</div><div><svg id='Layer_1' style='enable-background:new 0 0 96 75;' version='1.1' viewbox='0 0 96 75' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='green' d='M21.1,55.3c3.9,0,7.2-3.3,7.2-7.1c0-3.9-3.1-7.3-7.3-7.4c-3.9,0-7.2,3.2-7.2,7C13.8,52.2,17.2,55.3,21.1,55.3z	 M34.1,39.8c0,0.2-0.1,0.3-0.2,0.4c-0.5,0.7-1,1.3-1.5,2c-0.2,0.3-0.3,0.6-0.1,1c0.1,0.2,0.2,0.3,0.2,0.5c0.1,0.5,0.4,0.8,0.9,0.8	c0.8,0.1,1.5,0.2,2.3,0.3c0.5,0.1,0.6,0.1,0.7,0.6c0.2,1.3,0.3,2.7,0.2,4c0,0.5-0.1,1.1-0.2,1.6c-0.1,0.4-0.2,0.5-0.6,0.6	c-0.8,0.2-1.7,0.3-2.5,0.4c-0.4,0-0.5,0.1-0.6,0.5c0,0.2-0.1,0.4-0.2,0.5c-0.3,0.5-0.3,0.9,0.1,1.4c0.5,0.6,1,1.2,1.4,1.8	c0.2,0.3,0.2,0.6,0,0.9c-1.1,1.6-2.4,2.9-4,4c-0.3,0.2-0.4,0.2-0.7,0c-0.7-0.5-1.4-1.1-2.1-1.6c-0.2-0.2-0.5-0.2-0.7,0	c-0.2,0.1-0.4,0.2-0.5,0.2c-0.6,0.1-0.9,0.5-0.9,1.1c-0.1,0.7-0.2,1.5-0.3,2.2c-0.1,0.4-0.2,0.5-0.6,0.6c-1.9,0.4-3.8,0.4-5.7,0	c-0.3-0.1-0.4-0.2-0.5-0.5c-0.1-0.9-0.2-1.8-0.4-2.7c0-0.3-0.2-0.4-0.4-0.5c-0.2,0-0.4-0.1-0.5-0.2c-0.6-0.3-1.1-0.3-1.5,0.1	c-0.6,0.5-1.2,0.9-1.8,1.4c-0.3,0.2-0.4,0.2-0.7,0c-1.6-1.1-3-2.5-4.1-4.1c-0.2-0.3-0.2-0.4,0.1-0.7c0.5-0.7,1-1.4,1.6-2.1	c0.3-0.4,0.3-0.4,0-0.8c-0.1-0.1-0.1-0.3-0.1-0.5c-0.1-0.5-0.4-0.8-0.9-0.9C8.8,52,8.4,52,7.9,51.9c-0.4-0.1-0.7-0.1-1.1-0.2	c-0.3-0.1-0.5-0.2-0.5-0.5c-0.3-1.3-0.3-2.7-0.2-4c0-0.5,0.1-1.1,0.2-1.6C5.9,45,6,44.9,6.5,44.8c0.8-0.1,1.7-0.3,2.5-0.4	c0.3,0,0.5-0.2,0.6-0.5c0.1-0.1,0.1-0.2,0.2-0.3c0.3-0.6,0.3-1.2-0.1-1.7c-0.2-0.3-0.4-0.5-0.6-0.8c-0.3-0.3-0.5-0.6-0.7-1	c-0.2-0.3-0.2-0.5,0-0.8c1.1-1.6,2.5-3,4.1-4.1c0.2-0.2,0.4-0.2,0.6,0c0.7,0.5,1.4,1,2.1,1.6c0.3,0.2,0.6,0.3,0.9,0.1	c0.2-0.1,0.3-0.1,0.5-0.2c0.5-0.1,0.8-0.4,0.8-0.9c0.1-0.8,0.2-1.6,0.3-2.4c0-0.4,0.2-0.6,0.6-0.6c1-0.2,2-0.2,3-0.2s2,0.1,2.9,0.3	c0.2,0,0.2,0.1,0.3,0.3c0.1,1,0.3,1.9,0.4,2.9c0,0.2,0.1,0.3,0.2,0.4c0.5,0.3,1,0.5,1.5,0.5c0.2,0,0.3,0,0.5-0.1	c0.7-0.5,1.3-1,2-1.5c0.3-0.3,0.5-0.3,0.8,0c1.6,1.1,2.9,2.4,4,4C34,39.5,34.1,39.7,34.1,39.8z'></path> <path class='gray-mid' d='M14.7,69.8l9.4,3.2c4.4,0.8,8.8,1.9,11.5,1.3c0,0,8.4-2.6,13.2-2.9c0,0,5.8,2.8,10.4,3.5c0,0,4-7.3,1.4-9.2	c-0.5,0.2-7.9-1.6-10.7-2.3C47.8,63,46.1,62,44.2,61c-1.7-0.9-2.6-1.5-4.5-1.7c-1.6-0.2-6.4-0.1-7.9-0.4c-2.9-0.5-4.2-1.3-8.2-2.3	c-0.2-0.1-1.1,0-1.4,0.3c-0.9,0.7-1.8,2.3,1.9,4.3c1.1,0.6,4.7,1.3,6.6,1.5c4.4,0.4,4.1,1.3,4.1,1.4c-1.1,2.9-6.7,2.8-8.2,3.4	L17,67.2c-2.7-2.5-4.5-3.6-5.5-4c-0.7-0.4-1.6-0.5-2-0.2C8.1,64,11.2,66.5,14.7,69.8'></path> <path class='green' d='M67.5,19.5c-0.4,0-0.7,0.3-0.7,0.7v13.3c0,0.3,0.4,0.5,0.7,0.2L76,23.5c0.2-0.3,0.2-0.7-0.1-1	C73.6,20.8,70.7,19.6,67.5,19.5z'></path> <path class='gray-body' d='M80,10c-0.4-0.2-0.5-0.8-0.3-1.2l2.4-3.6c0.2-0.4,0.7-0.5,1.1-0.3c5.1,3.1,9.4,7.3,12.6,12.4	c0.2,0.4,0.1,0.9-0.2,1.1l-3.5,2.7c-0.4,0.3-1,0.2-1.2-0.2C88.3,16.4,84.5,12.7,80,10z'></path> <path class='gray-body' d='M72.1,10.2c-0.4,0-0.6-0.3-0.6-0.7V7.6c0-0.5,0.3-0.8,0.7-0.8H76c0.4,0,0.7-0.3,0.7-0.7V0.7	C76.7,0.3,76.4,0,76,0H57.6c-0.4,0-0.7,0.3-0.7,0.7v5.4c0,0.4,0.3,0.7,0.7,0.7h3.9c0.4,0,0.7,0.4,0.7,0.8v1.9c0,0.3-0.3,0.6-0.6,0.7	c-11.1,2.4-19.5,12.4-19.5,24.4c0,13.7,10.9,24.8,24.6,24.9s24.9-11.1,24.9-24.9C91.6,22.6,83.2,12.6,72.1,10.2z M66.8,53.4	c-10.3,0-18.6-8.4-18.6-18.8c0-10.4,8.3-18.8,18.6-18.8c10.3,0,18.6,8.4,18.6,18.8C85.4,45,77.1,53.4,66.8,53.4z'></path> <path class='gray-body' d='M7.1,32l3.5,0.7c0.5,0.1,0.5,0.9,0,1l-3.5,0.7c-0.2,0-0.4,0.2-0.4,0.4L6,38.3c-0.1,0.5-0.9,0.5-1,0l-0.7-3.5	c0-0.2-0.2-0.4-0.4-0.4l-3.5-0.7c-0.5-0.1-0.5-0.9,0-1L3.9,32c0.2,0,0.4-0.2,0.4-0.4L5,28.1c0.1-0.5,0.9-0.5,1,0l0.7,3.5	C6.7,31.8,6.9,32,7.1,32'></path> <path class='gray-body' d='M16.3,28.7l2.5,0.5c0.4,0.1,0.4,0.6,0,0.7l-2.5,0.5c-0.1,0-0.3,0.1-0.3,0.3l-0.5,2.5c-0.1,0.4-0.6,0.4-0.7,0	l-0.5-2.5c0-0.1-0.1-0.3-0.3-0.3l-2.5-0.5c-0.4-0.1-0.4-0.6,0-0.7l2.5-0.5c0.1,0,0.3-0.1,0.3-0.3l0.5-2.5c0.1-0.4,0.6-0.4,0.7,0	l0.5,2.5C16,28.5,16.1,28.7,16.3,28.7'></path> </svg></div><p>Receive your prototype in as little as 24 hours</p></div><div class='columns small-12 text-center'><a class='button' href='https://ondemand.3dsystems.com/quotations/new/detail'>Start a Quote Now</a></div></div><p class='callout-bottom'><br /><strong>NOTE:</strong> Some orders may need a manual quote from our experts. Upload your model and receive your quote within 24 hours.</p></div></div></div><div class='columns small-12 medium-12 large-3'><div class='callout-box'><div class='callout-header text-center'><h5>Appearance Models</h5></div><div class='callout-content'><div class='row' data-equalizer-watch='odm-callout-box'><div class='columns small-12 medium-6 large-12 text-center'><div><svg id='Layer_1' style='enable-background:new 0 0 114 85;' version='1.1' viewbox='0 0 114 85' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='green' d='M79.1,66c8.7,0,16.1-7.3,16.2-15.9c0.1-8.9-7-16.5-16.3-16.6c-8.8-0.1-16.1,7.2-16.2,15.8	C62.7,59,70.5,66.1,79.1,66 M108.3,31.3c0,0.4-0.2,0.7-0.4,1c-1.1,1.5-2.2,3-3.3,4.4c-0.5,0.7-0.5,1.3-0.2,2.1	c0.2,0.4,0.3,0.8,0.4,1.2c0.4,1,1,1.7,2,1.8c1.7,0.2,3.4,0.4,5.1,0.7c1,0.1,1.3,0.3,1.5,1.4c0.5,3,0.7,6,0.4,9	c-0.1,1.2-0.3,2.4-0.5,3.5c-0.1,0.8-0.5,1.1-1.3,1.3c-1.9,0.4-3.8,0.6-5.7,0.8c-0.8,0.1-1,0.4-1.3,1.1c-0.2,0.4-0.3,0.8-0.5,1.2	c-0.5,1.2-0.7,2,0.2,3.1c1.1,1.3,2.2,2.7,3.1,4.1c0.5,0.7,0.5,1.2,0,2c-2.4,3.5-5.5,6.5-9,9c-0.6,0.4-1,0.4-1.7-0.1	c-1.6-1.2-3.2-2.4-4.8-3.6c-0.5-0.4-1-0.5-1.6-0.1c-0.4,0.3-1.2,0.7-1.6,0.9c-1.3,0.7-1.6,0.6-1.7,2c-0.1,1.7-0.3,3.3-0.6,4.9	c-0.2,0.9-0.5,1.2-1.3,1.4c-4.3,0.9-8.5,0.8-12.8,0c-0.8-0.1-1-0.4-1.1-1.2c-0.3-2-0.6-4.1-0.8-6.1c-0.1-0.6-0.4-0.9-0.9-1.1	c-0.4-0.1-0.8-0.3-1.2-0.5c-1.3-0.7-2.4-0.7-3.5,0.3c-1.3,1.1-2.7,2.1-4,3.1c-0.7,0.5-0.9,0.5-1.6,0c-3.6-2.5-6.7-5.6-9.3-9.3	c-0.4-0.6-0.4-1,0.1-1.7c1.2-1.6,2.3-3.1,3.5-4.7c0.6-0.8,0.6-0.9,0.1-1.8c-0.2-0.3-0.3-0.7-0.3-1c-0.2-1.2-0.9-1.9-2.1-2.1	c-1-0.2-2.1-0.2-3.1-0.4c-0.8-0.2-1.6-0.3-2.4-0.4c-0.6-0.1-1-0.5-1.2-1.2c-0.6-3-0.7-6-0.5-9c0.1-1.2,0.3-2.4,0.5-3.5	c0.2-1,0.4-1.3,1.4-1.4c1.9-0.3,3.8-0.6,5.7-0.9c0.6-0.1,1-0.5,1.3-1c0.1-0.2,0.3-0.5,0.4-0.7c0.7-1.3,0.6-2.6-0.1-3.9	c-0.4-0.6-0.9-1.1-1.4-1.7c-0.6-0.7-1.1-1.5-1.7-2.2c-0.5-0.6-0.5-1.1,0-1.8c2.5-3.6,5.6-6.6,9.1-9.1c0.5-0.4,0.8-0.4,1.4,0.1	c1.5,1.2,3.1,2.3,4.6,3.5c0.7,0.5,1.2,0.5,2,0.2c0.4-0.1,0.8-0.3,1.2-0.4c1.1-0.4,1.7-0.9,1.9-2.1c0.2-1.8,0.5-3.5,0.7-5.3	c0.1-1,0.3-1.2,1.3-1.4c2.3-0.3,4.5-0.5,6.8-0.5c2.2,0,4.4,0.2,6.6,0.7c0.4,0.1,0.5,0.2,0.6,0.6c0.3,2.2,0.6,4.3,0.9,6.5	c0.1,0.4,0.2,0.7,0.5,1c1.1,0.6,2.2,1,3.5,1.1c0.4,0,0.7-0.1,1-0.3c1.5-1.1,3-2.2,4.4-3.4c0.7-0.6,1.1-0.6,1.9-0.1	c3.5,2.5,6.5,5.5,9,9C108.1,30.7,108.3,30.9,108.3,31.3'></path> <path class='gray-mid' d='M42.4,13.7l7.8,1.6c1.2,0.2,1.2,2,0,2.2l-7.8,1.6c-0.4,0.1-0.8,0.4-0.9,0.9l-1.6,7.8c-0.2,1.2-2,1.2-2.2,0	L36.1,20c-0.1-0.4-0.4-0.8-0.9-0.9l-7.8-1.6c-1.2-0.2-1.2-2,0-2.2l7.8-1.6c0.4-0.1,0.8-0.4,0.9-0.9L37.7,5c0.2-1.2,2-1.2,2.2,0	l1.6,7.8C41.6,13.3,41.9,13.6,42.4,13.7'></path> <path class='gray-mid' d='M63.7,6.8L69.3,8c0.9,0.2,0.9,1.4,0,1.6l-5.6,1.1c-0.3,0.1-0.6,0.3-0.6,0.6L62,16.9c-0.2,0.9-1.4,0.9-1.6,0	l-1.1-5.6c-0.1-0.3-0.3-0.6-0.6-0.6l-5.6-1.1c-0.9-0.2-0.9-1.4,0-1.6l5.6-1.1c0.3-0.1,0.6-0.3,0.6-0.6l1.1-5.6	c0.2-0.9,1.4-0.9,1.6,0l1.1,5.6C63.1,6.5,63.4,6.8,63.7,6.8'></path> <path class='gray-body' d='M12.1,15.8l18.3,18.3l-10,10L2.1,25.8c-2.8-2.8-2.8-7.2,0-10C4.8,13,9.3,13,12.1,15.8'></path> <path class='gray-body' d='M31.3,55l-7.6-7.6l10-10l7.6,7.6C36.6,46.5,32.8,50.3,31.3,55'></path> <path class='gray-body' d='M45.4,49.1L45.4,49.1c0.2,0,0.4-0.1,0.6-0.1c5.9,0,10.6,4.7,10.6,10.6c0.3,4.4,2.4,7.6,6.2,9.5	c0.8,0.4,0.6,1.5-0.2,1.8c-7,2.8-12.9,2.1-17.7,1c-7.3-1.8-9.7-8.4-9.4-13.2C35.7,53.7,40,49.4,45.4,49.1'></path> <path class='white' d='M51,60.7c1.9,2.1,3.1-1.8,3.1,0.8c0.2,3,1.7,6.4,4.5,7.5c0.2,0.1,0.2,0.4,0,0.5c-4.9,1.6-8.5,1.3-11.9,0.2	c-2.2-0.5-3.9-2-4.9-3.5c-1-1.6,0.7-4.1,2.5-3.4c2.6,1.1,3.4,0,3.5-1C48.1,60.1,50.2,59.9,51,60.7z'></path> </svg></div></div><div class='columns small-12 medium-6 large-12 text-center'><p>Interested in appearance models? Give us a call and we’ll start your order now.</p></div></div><p class='callout-bottom text-center'><strong>CONTACT US</strong><br /><span class='SL_Swap' id='smartling-odm-contact-menu'><a href='tel:17709013200'>770-901-3200</a> or<br /><a href='mailto:Quickparts.quote@3dsystems.com'>send us an email</a></span></p></div></div></div></div></div>
                                                                                                                    </div>
                                            
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="quickparts-rapid-prototyping--on-demand-manufacturing-fast-turn-prototyping link-about-item item-full-width">
                    <h3>Ordering a Part from One of Our Four Services Is Easy:</h3>
                                                                <div class="mega-content"><div class='row' data-equalizer='odm-callout-box' data-equalizer-mq='large-up'><div class='columns small-12 medium-12 large-9'><div class='callout-box'><div class='callout-header text-center'><h5>Quickparts Rapid&nbsp;Prototyping, Advanced Prototyping and Low-Volume Production</h5></div><div class='callout-content'><div class='row' data-equalizer-watch='odm-callout-box'><div class='columns small-12 medium-3 text-center'><div class='step-number'>1</div><div><svg style='enable-background:new 0 0 48 77;' version='1.1' viewbox='0 0 48 77' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='gray-mid' d='M16.4,28.8v4c0,0.5-0.4,0.9-0.9,0.9H6.7c-0.5,0-0.9,0.4-0.9,0.9v35.7c0,0.5,0.4,0.9,0.9,0.9	h34.6c0.5,0,0.9-0.4,0.9-0.9V34.5c0-0.5-0.4-0.9-0.9-0.9h-8.7c-0.5,0-0.9-0.4-0.9-0.9v-4c0-0.5,0.4-0.9,0.9-0.9h13.5	c1.1,0,1.9,0.9,1.9,1.9V75c0,1.1-0.9,1.9-1.9,1.9H1.9C0.9,77,0,76.1,0,75.1V29.8c0-1.1,0.9-1.9,1.9-1.9h13.5	C16,27.8,16.4,28.3,16.4,28.8'></path> <path class='green' d='M26.9,12.3V49c0,0.5-0.4,0.9-0.9,0.9h-4c-0.5,0-0.9-0.4-0.9-0.9V12.5c0-0.6-0.7-0.9-1.1-0.5l-8.4,8.4	c-0.4,0.4-1,0.4-1.3,0l-2.8-2.8c-0.4-0.4-0.4-1,0-1.3L19.9,3.7l0,0l3.4-3.4c0.4-0.4,1.1-0.4,1.5,0l3.4,3.4l0,0l12.4,12.4	c0.4,0.4,0.4,1,0,1.3l-2.8,2.8c-0.4,0.4-1,0.4-1.3,0L28,11.9C27.6,11.4,26.9,11.7,26.9,12.3'></path> </svg></div><p>Upload your model</p></div><div class='columns small-12 medium-5 text-center'><div class='step-number'>2</div><div><svg style='enable-background:new 0 0 114 81;' version='1.1' viewbox='0 0 114 81' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='gray-body' d='M94.2,13.9h-20c-1.1,0-2,0.9-2,2V36c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V15.9C96.2,14.8,95.3,13.9,94.2,13.9z	 M92.8,34.7H75.6V17.3h17.2V34.7z'></path> <path class='gray-body' d='M62.5,45.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C68.3,49.5,62.5,45.4,62.5,45.4'></path> <path class='gray-body' d='M45.4,45.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C51.1,49.5,45.4,45.4,45.4,45.4'></path> <path class='gray-body' d='M54,30.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C59.7,34.5,54,30.4,54,30.4'></path> <path class='gray-body' d='M16.9,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S15.6,28.3,16.9,28.3'></path> <path class='gray-body' d='M27.1,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S25.8,28.3,27.1,28.3'></path> <path class='gray-body' d='M37.3,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4C36,23.6,35,24.7,35,26S36,28.3,37.3,28.3'></path> <path class='gray-body' d='M22,37.8c1.3,0,2.4-1.1,2.4-2.4c0-1.3-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4C19.6,36.8,20.7,37.8,22,37.8'></path> <path class='gray-body' d='M32.2,37.8c1.3,0,2.4-1.1,2.4-2.4c0-1.3-1.1-2.4-2.4-2.4c-1.3,0-2.4,1.1-2.4,2.4C29.8,36.8,30.9,37.8,32.2,37.8	'></path> <path class='gray-body' d='M22,18.9c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S20.7,18.9,22,18.9'></path> <path class='gray-body' d='M32.2,18.9c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4c-1.3,0-2.4,1.1-2.4,2.4C29.8,17.8,30.9,18.9,32.2,18.9'></path> <path class='green' d='M90.2,59.7l-24.5-7c-0.8-0.2-1.7,0.6-1.4,1.4l7,24.6c0.2,0.7,1.1,0.9,1.7,0.3l4.3-6l7.7,7.7	c0.5,0.5,1.3,0.4,1.9-0.1l5.1-5.1c0.6-0.6,0.6-1.4,0.1-1.9l-7.7-7.7l6-4.3C91,60.9,90.9,59.9,90.2,59.7'></path> <path class='gray-mid' d='M94.3,69.2v-4.4c0-0.4,0.3-0.8,0.7-0.8h12.5c0.4,0,0.7-0.3,0.7-0.7V6.6c0-0.4-0.3-0.7-0.7-0.7H6.5	c-0.4,0-0.7,0.3-0.7,0.7v56.7c0,0.4,0.3,0.7,0.7,0.7H62c0.4,0,0.7,0.3,0.7,0.8v4.4c0,0.4-0.3,0.8-0.7,0.8H1.5C0.7,70,0,69.3,0,68.4	V1.6C0,0.7,0.7,0,1.5,0h110.9c0.8,0,1.5,0.7,1.5,1.6v66.9c0,0.9-0.7,1.6-1.5,1.6H95C94.6,70,94.3,69.7,94.3,69.2'></path> </svg></div><p>Choose your material, process, and finish</p></div><div class='columns small-12 medium-4 text-center'><div class='step-number'>3</div><div><svg id='Layer_1' style='enable-background:new 0 0 96 75;' version='1.1' viewbox='0 0 96 75' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='green' d='M21.1,55.3c3.9,0,7.2-3.3,7.2-7.1c0-3.9-3.1-7.3-7.3-7.4c-3.9,0-7.2,3.2-7.2,7C13.8,52.2,17.2,55.3,21.1,55.3z	 M34.1,39.8c0,0.2-0.1,0.3-0.2,0.4c-0.5,0.7-1,1.3-1.5,2c-0.2,0.3-0.3,0.6-0.1,1c0.1,0.2,0.2,0.3,0.2,0.5c0.1,0.5,0.4,0.8,0.9,0.8	c0.8,0.1,1.5,0.2,2.3,0.3c0.5,0.1,0.6,0.1,0.7,0.6c0.2,1.3,0.3,2.7,0.2,4c0,0.5-0.1,1.1-0.2,1.6c-0.1,0.4-0.2,0.5-0.6,0.6	c-0.8,0.2-1.7,0.3-2.5,0.4c-0.4,0-0.5,0.1-0.6,0.5c0,0.2-0.1,0.4-0.2,0.5c-0.3,0.5-0.3,0.9,0.1,1.4c0.5,0.6,1,1.2,1.4,1.8	c0.2,0.3,0.2,0.6,0,0.9c-1.1,1.6-2.4,2.9-4,4c-0.3,0.2-0.4,0.2-0.7,0c-0.7-0.5-1.4-1.1-2.1-1.6c-0.2-0.2-0.5-0.2-0.7,0	c-0.2,0.1-0.4,0.2-0.5,0.2c-0.6,0.1-0.9,0.5-0.9,1.1c-0.1,0.7-0.2,1.5-0.3,2.2c-0.1,0.4-0.2,0.5-0.6,0.6c-1.9,0.4-3.8,0.4-5.7,0	c-0.3-0.1-0.4-0.2-0.5-0.5c-0.1-0.9-0.2-1.8-0.4-2.7c0-0.3-0.2-0.4-0.4-0.5c-0.2,0-0.4-0.1-0.5-0.2c-0.6-0.3-1.1-0.3-1.5,0.1	c-0.6,0.5-1.2,0.9-1.8,1.4c-0.3,0.2-0.4,0.2-0.7,0c-1.6-1.1-3-2.5-4.1-4.1c-0.2-0.3-0.2-0.4,0.1-0.7c0.5-0.7,1-1.4,1.6-2.1	c0.3-0.4,0.3-0.4,0-0.8c-0.1-0.1-0.1-0.3-0.1-0.5c-0.1-0.5-0.4-0.8-0.9-0.9C8.8,52,8.4,52,7.9,51.9c-0.4-0.1-0.7-0.1-1.1-0.2	c-0.3-0.1-0.5-0.2-0.5-0.5c-0.3-1.3-0.3-2.7-0.2-4c0-0.5,0.1-1.1,0.2-1.6C5.9,45,6,44.9,6.5,44.8c0.8-0.1,1.7-0.3,2.5-0.4	c0.3,0,0.5-0.2,0.6-0.5c0.1-0.1,0.1-0.2,0.2-0.3c0.3-0.6,0.3-1.2-0.1-1.7c-0.2-0.3-0.4-0.5-0.6-0.8c-0.3-0.3-0.5-0.6-0.7-1	c-0.2-0.3-0.2-0.5,0-0.8c1.1-1.6,2.5-3,4.1-4.1c0.2-0.2,0.4-0.2,0.6,0c0.7,0.5,1.4,1,2.1,1.6c0.3,0.2,0.6,0.3,0.9,0.1	c0.2-0.1,0.3-0.1,0.5-0.2c0.5-0.1,0.8-0.4,0.8-0.9c0.1-0.8,0.2-1.6,0.3-2.4c0-0.4,0.2-0.6,0.6-0.6c1-0.2,2-0.2,3-0.2s2,0.1,2.9,0.3	c0.2,0,0.2,0.1,0.3,0.3c0.1,1,0.3,1.9,0.4,2.9c0,0.2,0.1,0.3,0.2,0.4c0.5,0.3,1,0.5,1.5,0.5c0.2,0,0.3,0,0.5-0.1	c0.7-0.5,1.3-1,2-1.5c0.3-0.3,0.5-0.3,0.8,0c1.6,1.1,2.9,2.4,4,4C34,39.5,34.1,39.7,34.1,39.8z'></path> <path class='gray-mid' d='M14.7,69.8l9.4,3.2c4.4,0.8,8.8,1.9,11.5,1.3c0,0,8.4-2.6,13.2-2.9c0,0,5.8,2.8,10.4,3.5c0,0,4-7.3,1.4-9.2	c-0.5,0.2-7.9-1.6-10.7-2.3C47.8,63,46.1,62,44.2,61c-1.7-0.9-2.6-1.5-4.5-1.7c-1.6-0.2-6.4-0.1-7.9-0.4c-2.9-0.5-4.2-1.3-8.2-2.3	c-0.2-0.1-1.1,0-1.4,0.3c-0.9,0.7-1.8,2.3,1.9,4.3c1.1,0.6,4.7,1.3,6.6,1.5c4.4,0.4,4.1,1.3,4.1,1.4c-1.1,2.9-6.7,2.8-8.2,3.4	L17,67.2c-2.7-2.5-4.5-3.6-5.5-4c-0.7-0.4-1.6-0.5-2-0.2C8.1,64,11.2,66.5,14.7,69.8'></path> <path class='green' d='M67.5,19.5c-0.4,0-0.7,0.3-0.7,0.7v13.3c0,0.3,0.4,0.5,0.7,0.2L76,23.5c0.2-0.3,0.2-0.7-0.1-1	C73.6,20.8,70.7,19.6,67.5,19.5z'></path> <path class='gray-body' d='M80,10c-0.4-0.2-0.5-0.8-0.3-1.2l2.4-3.6c0.2-0.4,0.7-0.5,1.1-0.3c5.1,3.1,9.4,7.3,12.6,12.4	c0.2,0.4,0.1,0.9-0.2,1.1l-3.5,2.7c-0.4,0.3-1,0.2-1.2-0.2C88.3,16.4,84.5,12.7,80,10z'></path> <path class='gray-body' d='M72.1,10.2c-0.4,0-0.6-0.3-0.6-0.7V7.6c0-0.5,0.3-0.8,0.7-0.8H76c0.4,0,0.7-0.3,0.7-0.7V0.7	C76.7,0.3,76.4,0,76,0H57.6c-0.4,0-0.7,0.3-0.7,0.7v5.4c0,0.4,0.3,0.7,0.7,0.7h3.9c0.4,0,0.7,0.4,0.7,0.8v1.9c0,0.3-0.3,0.6-0.6,0.7	c-11.1,2.4-19.5,12.4-19.5,24.4c0,13.7,10.9,24.8,24.6,24.9s24.9-11.1,24.9-24.9C91.6,22.6,83.2,12.6,72.1,10.2z M66.8,53.4	c-10.3,0-18.6-8.4-18.6-18.8c0-10.4,8.3-18.8,18.6-18.8c10.3,0,18.6,8.4,18.6,18.8C85.4,45,77.1,53.4,66.8,53.4z'></path> <path class='gray-body' d='M7.1,32l3.5,0.7c0.5,0.1,0.5,0.9,0,1l-3.5,0.7c-0.2,0-0.4,0.2-0.4,0.4L6,38.3c-0.1,0.5-0.9,0.5-1,0l-0.7-3.5	c0-0.2-0.2-0.4-0.4-0.4l-3.5-0.7c-0.5-0.1-0.5-0.9,0-1L3.9,32c0.2,0,0.4-0.2,0.4-0.4L5,28.1c0.1-0.5,0.9-0.5,1,0l0.7,3.5	C6.7,31.8,6.9,32,7.1,32'></path> <path class='gray-body' d='M16.3,28.7l2.5,0.5c0.4,0.1,0.4,0.6,0,0.7l-2.5,0.5c-0.1,0-0.3,0.1-0.3,0.3l-0.5,2.5c-0.1,0.4-0.6,0.4-0.7,0	l-0.5-2.5c0-0.1-0.1-0.3-0.3-0.3l-2.5-0.5c-0.4-0.1-0.4-0.6,0-0.7l2.5-0.5c0.1,0,0.3-0.1,0.3-0.3l0.5-2.5c0.1-0.4,0.6-0.4,0.7,0	l0.5,2.5C16,28.5,16.1,28.7,16.3,28.7'></path> </svg></div><p>Receive your prototype in as little as 24 hours</p></div><div class='columns small-12 text-center'><a class='button' href='https://ondemand.3dsystems.com/quotations/new/detail'>Start a Quote Now</a></div></div><p class='callout-bottom'><br /><strong>NOTE:</strong> Some orders may need a manual quote from our experts. Upload your model and receive your quote within 24 hours.</p></div></div></div><div class='columns small-12 medium-12 large-3'><div class='callout-box'><div class='callout-header text-center'><h5>Appearance Models</h5></div><div class='callout-content'><div class='row' data-equalizer-watch='odm-callout-box'><div class='columns small-12 medium-6 large-12 text-center'><div><svg id='Layer_1' style='enable-background:new 0 0 114 85;' version='1.1' viewbox='0 0 114 85' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='green' d='M79.1,66c8.7,0,16.1-7.3,16.2-15.9c0.1-8.9-7-16.5-16.3-16.6c-8.8-0.1-16.1,7.2-16.2,15.8	C62.7,59,70.5,66.1,79.1,66 M108.3,31.3c0,0.4-0.2,0.7-0.4,1c-1.1,1.5-2.2,3-3.3,4.4c-0.5,0.7-0.5,1.3-0.2,2.1	c0.2,0.4,0.3,0.8,0.4,1.2c0.4,1,1,1.7,2,1.8c1.7,0.2,3.4,0.4,5.1,0.7c1,0.1,1.3,0.3,1.5,1.4c0.5,3,0.7,6,0.4,9	c-0.1,1.2-0.3,2.4-0.5,3.5c-0.1,0.8-0.5,1.1-1.3,1.3c-1.9,0.4-3.8,0.6-5.7,0.8c-0.8,0.1-1,0.4-1.3,1.1c-0.2,0.4-0.3,0.8-0.5,1.2	c-0.5,1.2-0.7,2,0.2,3.1c1.1,1.3,2.2,2.7,3.1,4.1c0.5,0.7,0.5,1.2,0,2c-2.4,3.5-5.5,6.5-9,9c-0.6,0.4-1,0.4-1.7-0.1	c-1.6-1.2-3.2-2.4-4.8-3.6c-0.5-0.4-1-0.5-1.6-0.1c-0.4,0.3-1.2,0.7-1.6,0.9c-1.3,0.7-1.6,0.6-1.7,2c-0.1,1.7-0.3,3.3-0.6,4.9	c-0.2,0.9-0.5,1.2-1.3,1.4c-4.3,0.9-8.5,0.8-12.8,0c-0.8-0.1-1-0.4-1.1-1.2c-0.3-2-0.6-4.1-0.8-6.1c-0.1-0.6-0.4-0.9-0.9-1.1	c-0.4-0.1-0.8-0.3-1.2-0.5c-1.3-0.7-2.4-0.7-3.5,0.3c-1.3,1.1-2.7,2.1-4,3.1c-0.7,0.5-0.9,0.5-1.6,0c-3.6-2.5-6.7-5.6-9.3-9.3	c-0.4-0.6-0.4-1,0.1-1.7c1.2-1.6,2.3-3.1,3.5-4.7c0.6-0.8,0.6-0.9,0.1-1.8c-0.2-0.3-0.3-0.7-0.3-1c-0.2-1.2-0.9-1.9-2.1-2.1	c-1-0.2-2.1-0.2-3.1-0.4c-0.8-0.2-1.6-0.3-2.4-0.4c-0.6-0.1-1-0.5-1.2-1.2c-0.6-3-0.7-6-0.5-9c0.1-1.2,0.3-2.4,0.5-3.5	c0.2-1,0.4-1.3,1.4-1.4c1.9-0.3,3.8-0.6,5.7-0.9c0.6-0.1,1-0.5,1.3-1c0.1-0.2,0.3-0.5,0.4-0.7c0.7-1.3,0.6-2.6-0.1-3.9	c-0.4-0.6-0.9-1.1-1.4-1.7c-0.6-0.7-1.1-1.5-1.7-2.2c-0.5-0.6-0.5-1.1,0-1.8c2.5-3.6,5.6-6.6,9.1-9.1c0.5-0.4,0.8-0.4,1.4,0.1	c1.5,1.2,3.1,2.3,4.6,3.5c0.7,0.5,1.2,0.5,2,0.2c0.4-0.1,0.8-0.3,1.2-0.4c1.1-0.4,1.7-0.9,1.9-2.1c0.2-1.8,0.5-3.5,0.7-5.3	c0.1-1,0.3-1.2,1.3-1.4c2.3-0.3,4.5-0.5,6.8-0.5c2.2,0,4.4,0.2,6.6,0.7c0.4,0.1,0.5,0.2,0.6,0.6c0.3,2.2,0.6,4.3,0.9,6.5	c0.1,0.4,0.2,0.7,0.5,1c1.1,0.6,2.2,1,3.5,1.1c0.4,0,0.7-0.1,1-0.3c1.5-1.1,3-2.2,4.4-3.4c0.7-0.6,1.1-0.6,1.9-0.1	c3.5,2.5,6.5,5.5,9,9C108.1,30.7,108.3,30.9,108.3,31.3'></path> <path class='gray-mid' d='M42.4,13.7l7.8,1.6c1.2,0.2,1.2,2,0,2.2l-7.8,1.6c-0.4,0.1-0.8,0.4-0.9,0.9l-1.6,7.8c-0.2,1.2-2,1.2-2.2,0	L36.1,20c-0.1-0.4-0.4-0.8-0.9-0.9l-7.8-1.6c-1.2-0.2-1.2-2,0-2.2l7.8-1.6c0.4-0.1,0.8-0.4,0.9-0.9L37.7,5c0.2-1.2,2-1.2,2.2,0	l1.6,7.8C41.6,13.3,41.9,13.6,42.4,13.7'></path> <path class='gray-mid' d='M63.7,6.8L69.3,8c0.9,0.2,0.9,1.4,0,1.6l-5.6,1.1c-0.3,0.1-0.6,0.3-0.6,0.6L62,16.9c-0.2,0.9-1.4,0.9-1.6,0	l-1.1-5.6c-0.1-0.3-0.3-0.6-0.6-0.6l-5.6-1.1c-0.9-0.2-0.9-1.4,0-1.6l5.6-1.1c0.3-0.1,0.6-0.3,0.6-0.6l1.1-5.6	c0.2-0.9,1.4-0.9,1.6,0l1.1,5.6C63.1,6.5,63.4,6.8,63.7,6.8'></path> <path class='gray-body' d='M12.1,15.8l18.3,18.3l-10,10L2.1,25.8c-2.8-2.8-2.8-7.2,0-10C4.8,13,9.3,13,12.1,15.8'></path> <path class='gray-body' d='M31.3,55l-7.6-7.6l10-10l7.6,7.6C36.6,46.5,32.8,50.3,31.3,55'></path> <path class='gray-body' d='M45.4,49.1L45.4,49.1c0.2,0,0.4-0.1,0.6-0.1c5.9,0,10.6,4.7,10.6,10.6c0.3,4.4,2.4,7.6,6.2,9.5	c0.8,0.4,0.6,1.5-0.2,1.8c-7,2.8-12.9,2.1-17.7,1c-7.3-1.8-9.7-8.4-9.4-13.2C35.7,53.7,40,49.4,45.4,49.1'></path> <path class='white' d='M51,60.7c1.9,2.1,3.1-1.8,3.1,0.8c0.2,3,1.7,6.4,4.5,7.5c0.2,0.1,0.2,0.4,0,0.5c-4.9,1.6-8.5,1.3-11.9,0.2	c-2.2-0.5-3.9-2-4.9-3.5c-1-1.6,0.7-4.1,2.5-3.4c2.6,1.1,3.4,0,3.5-1C48.1,60.1,50.2,59.9,51,60.7z'></path> </svg></div></div><div class='columns small-12 medium-6 large-12 text-center'><p>Interested in appearance models? Give us a call and we’ll start your order now.</p></div></div><p class='callout-bottom text-center'><strong>CONTACT US</strong><br /><span class='SL_Swap' id='smartling-odm-contact-menu-quickparts'><a href='tel:17709013200'>770-901-3200</a> or<br /><a href='mailto:Quickparts.quote@3dsystems.com'>send us an email</a></span></p></div></div></div></div></div>
                                                        </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="advanced-prototyping--on-demand-manufacturing-advanced-prototyping link-about-item item-full-width">
                    <h3>Ordering a Part from One of Our Four Services Is Easy:</h3>
                                                                <div class="mega-content"><div class='row' data-equalizer='odm-callout-box' data-equalizer-mq='large-up'><div class='columns small-12 medium-12 large-9'><div class='callout-box'><div class='callout-header text-center'><h5>Quickparts Rapid&nbsp;Prototyping, Advanced Prototyping and Low-Volume Production</h5></div><div class='callout-content'><div class='row' data-equalizer-watch='odm-callout-box'><div class='columns small-12 medium-3 text-center'><div class='step-number'>1</div><div><svg style='enable-background:new 0 0 48 77;' version='1.1' viewbox='0 0 48 77' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='gray-mid' d='M16.4,28.8v4c0,0.5-0.4,0.9-0.9,0.9H6.7c-0.5,0-0.9,0.4-0.9,0.9v35.7c0,0.5,0.4,0.9,0.9,0.9	h34.6c0.5,0,0.9-0.4,0.9-0.9V34.5c0-0.5-0.4-0.9-0.9-0.9h-8.7c-0.5,0-0.9-0.4-0.9-0.9v-4c0-0.5,0.4-0.9,0.9-0.9h13.5	c1.1,0,1.9,0.9,1.9,1.9V75c0,1.1-0.9,1.9-1.9,1.9H1.9C0.9,77,0,76.1,0,75.1V29.8c0-1.1,0.9-1.9,1.9-1.9h13.5	C16,27.8,16.4,28.3,16.4,28.8'></path> <path class='green' d='M26.9,12.3V49c0,0.5-0.4,0.9-0.9,0.9h-4c-0.5,0-0.9-0.4-0.9-0.9V12.5c0-0.6-0.7-0.9-1.1-0.5l-8.4,8.4	c-0.4,0.4-1,0.4-1.3,0l-2.8-2.8c-0.4-0.4-0.4-1,0-1.3L19.9,3.7l0,0l3.4-3.4c0.4-0.4,1.1-0.4,1.5,0l3.4,3.4l0,0l12.4,12.4	c0.4,0.4,0.4,1,0,1.3l-2.8,2.8c-0.4,0.4-1,0.4-1.3,0L28,11.9C27.6,11.4,26.9,11.7,26.9,12.3'></path> </svg></div><p>Upload your model</p></div><div class='columns small-12 medium-5 text-center'><div class='step-number'>2</div><div><svg style='enable-background:new 0 0 114 81;' version='1.1' viewbox='0 0 114 81' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='gray-body' d='M94.2,13.9h-20c-1.1,0-2,0.9-2,2V36c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V15.9C96.2,14.8,95.3,13.9,94.2,13.9z	 M92.8,34.7H75.6V17.3h17.2V34.7z'></path> <path class='gray-body' d='M62.5,45.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C68.3,49.5,62.5,45.4,62.5,45.4'></path> <path class='gray-body' d='M45.4,45.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C51.1,49.5,45.4,45.4,45.4,45.4'></path> <path class='gray-body' d='M54,30.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C59.7,34.5,54,30.4,54,30.4'></path> <path class='gray-body' d='M16.9,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S15.6,28.3,16.9,28.3'></path> <path class='gray-body' d='M27.1,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S25.8,28.3,27.1,28.3'></path> <path class='gray-body' d='M37.3,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4C36,23.6,35,24.7,35,26S36,28.3,37.3,28.3'></path> <path class='gray-body' d='M22,37.8c1.3,0,2.4-1.1,2.4-2.4c0-1.3-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4C19.6,36.8,20.7,37.8,22,37.8'></path> <path class='gray-body' d='M32.2,37.8c1.3,0,2.4-1.1,2.4-2.4c0-1.3-1.1-2.4-2.4-2.4c-1.3,0-2.4,1.1-2.4,2.4C29.8,36.8,30.9,37.8,32.2,37.8	'></path> <path class='gray-body' d='M22,18.9c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S20.7,18.9,22,18.9'></path> <path class='gray-body' d='M32.2,18.9c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4c-1.3,0-2.4,1.1-2.4,2.4C29.8,17.8,30.9,18.9,32.2,18.9'></path> <path class='green' d='M90.2,59.7l-24.5-7c-0.8-0.2-1.7,0.6-1.4,1.4l7,24.6c0.2,0.7,1.1,0.9,1.7,0.3l4.3-6l7.7,7.7	c0.5,0.5,1.3,0.4,1.9-0.1l5.1-5.1c0.6-0.6,0.6-1.4,0.1-1.9l-7.7-7.7l6-4.3C91,60.9,90.9,59.9,90.2,59.7'></path> <path class='gray-mid' d='M94.3,69.2v-4.4c0-0.4,0.3-0.8,0.7-0.8h12.5c0.4,0,0.7-0.3,0.7-0.7V6.6c0-0.4-0.3-0.7-0.7-0.7H6.5	c-0.4,0-0.7,0.3-0.7,0.7v56.7c0,0.4,0.3,0.7,0.7,0.7H62c0.4,0,0.7,0.3,0.7,0.8v4.4c0,0.4-0.3,0.8-0.7,0.8H1.5C0.7,70,0,69.3,0,68.4	V1.6C0,0.7,0.7,0,1.5,0h110.9c0.8,0,1.5,0.7,1.5,1.6v66.9c0,0.9-0.7,1.6-1.5,1.6H95C94.6,70,94.3,69.7,94.3,69.2'></path> </svg></div><p>Choose your material, process, and finish</p></div><div class='columns small-12 medium-4 text-center'><div class='step-number'>3</div><div><svg id='Layer_1' style='enable-background:new 0 0 96 75;' version='1.1' viewbox='0 0 96 75' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='green' d='M21.1,55.3c3.9,0,7.2-3.3,7.2-7.1c0-3.9-3.1-7.3-7.3-7.4c-3.9,0-7.2,3.2-7.2,7C13.8,52.2,17.2,55.3,21.1,55.3z	 M34.1,39.8c0,0.2-0.1,0.3-0.2,0.4c-0.5,0.7-1,1.3-1.5,2c-0.2,0.3-0.3,0.6-0.1,1c0.1,0.2,0.2,0.3,0.2,0.5c0.1,0.5,0.4,0.8,0.9,0.8	c0.8,0.1,1.5,0.2,2.3,0.3c0.5,0.1,0.6,0.1,0.7,0.6c0.2,1.3,0.3,2.7,0.2,4c0,0.5-0.1,1.1-0.2,1.6c-0.1,0.4-0.2,0.5-0.6,0.6	c-0.8,0.2-1.7,0.3-2.5,0.4c-0.4,0-0.5,0.1-0.6,0.5c0,0.2-0.1,0.4-0.2,0.5c-0.3,0.5-0.3,0.9,0.1,1.4c0.5,0.6,1,1.2,1.4,1.8	c0.2,0.3,0.2,0.6,0,0.9c-1.1,1.6-2.4,2.9-4,4c-0.3,0.2-0.4,0.2-0.7,0c-0.7-0.5-1.4-1.1-2.1-1.6c-0.2-0.2-0.5-0.2-0.7,0	c-0.2,0.1-0.4,0.2-0.5,0.2c-0.6,0.1-0.9,0.5-0.9,1.1c-0.1,0.7-0.2,1.5-0.3,2.2c-0.1,0.4-0.2,0.5-0.6,0.6c-1.9,0.4-3.8,0.4-5.7,0	c-0.3-0.1-0.4-0.2-0.5-0.5c-0.1-0.9-0.2-1.8-0.4-2.7c0-0.3-0.2-0.4-0.4-0.5c-0.2,0-0.4-0.1-0.5-0.2c-0.6-0.3-1.1-0.3-1.5,0.1	c-0.6,0.5-1.2,0.9-1.8,1.4c-0.3,0.2-0.4,0.2-0.7,0c-1.6-1.1-3-2.5-4.1-4.1c-0.2-0.3-0.2-0.4,0.1-0.7c0.5-0.7,1-1.4,1.6-2.1	c0.3-0.4,0.3-0.4,0-0.8c-0.1-0.1-0.1-0.3-0.1-0.5c-0.1-0.5-0.4-0.8-0.9-0.9C8.8,52,8.4,52,7.9,51.9c-0.4-0.1-0.7-0.1-1.1-0.2	c-0.3-0.1-0.5-0.2-0.5-0.5c-0.3-1.3-0.3-2.7-0.2-4c0-0.5,0.1-1.1,0.2-1.6C5.9,45,6,44.9,6.5,44.8c0.8-0.1,1.7-0.3,2.5-0.4	c0.3,0,0.5-0.2,0.6-0.5c0.1-0.1,0.1-0.2,0.2-0.3c0.3-0.6,0.3-1.2-0.1-1.7c-0.2-0.3-0.4-0.5-0.6-0.8c-0.3-0.3-0.5-0.6-0.7-1	c-0.2-0.3-0.2-0.5,0-0.8c1.1-1.6,2.5-3,4.1-4.1c0.2-0.2,0.4-0.2,0.6,0c0.7,0.5,1.4,1,2.1,1.6c0.3,0.2,0.6,0.3,0.9,0.1	c0.2-0.1,0.3-0.1,0.5-0.2c0.5-0.1,0.8-0.4,0.8-0.9c0.1-0.8,0.2-1.6,0.3-2.4c0-0.4,0.2-0.6,0.6-0.6c1-0.2,2-0.2,3-0.2s2,0.1,2.9,0.3	c0.2,0,0.2,0.1,0.3,0.3c0.1,1,0.3,1.9,0.4,2.9c0,0.2,0.1,0.3,0.2,0.4c0.5,0.3,1,0.5,1.5,0.5c0.2,0,0.3,0,0.5-0.1	c0.7-0.5,1.3-1,2-1.5c0.3-0.3,0.5-0.3,0.8,0c1.6,1.1,2.9,2.4,4,4C34,39.5,34.1,39.7,34.1,39.8z'></path> <path class='gray-mid' d='M14.7,69.8l9.4,3.2c4.4,0.8,8.8,1.9,11.5,1.3c0,0,8.4-2.6,13.2-2.9c0,0,5.8,2.8,10.4,3.5c0,0,4-7.3,1.4-9.2	c-0.5,0.2-7.9-1.6-10.7-2.3C47.8,63,46.1,62,44.2,61c-1.7-0.9-2.6-1.5-4.5-1.7c-1.6-0.2-6.4-0.1-7.9-0.4c-2.9-0.5-4.2-1.3-8.2-2.3	c-0.2-0.1-1.1,0-1.4,0.3c-0.9,0.7-1.8,2.3,1.9,4.3c1.1,0.6,4.7,1.3,6.6,1.5c4.4,0.4,4.1,1.3,4.1,1.4c-1.1,2.9-6.7,2.8-8.2,3.4	L17,67.2c-2.7-2.5-4.5-3.6-5.5-4c-0.7-0.4-1.6-0.5-2-0.2C8.1,64,11.2,66.5,14.7,69.8'></path> <path class='green' d='M67.5,19.5c-0.4,0-0.7,0.3-0.7,0.7v13.3c0,0.3,0.4,0.5,0.7,0.2L76,23.5c0.2-0.3,0.2-0.7-0.1-1	C73.6,20.8,70.7,19.6,67.5,19.5z'></path> <path class='gray-body' d='M80,10c-0.4-0.2-0.5-0.8-0.3-1.2l2.4-3.6c0.2-0.4,0.7-0.5,1.1-0.3c5.1,3.1,9.4,7.3,12.6,12.4	c0.2,0.4,0.1,0.9-0.2,1.1l-3.5,2.7c-0.4,0.3-1,0.2-1.2-0.2C88.3,16.4,84.5,12.7,80,10z'></path> <path class='gray-body' d='M72.1,10.2c-0.4,0-0.6-0.3-0.6-0.7V7.6c0-0.5,0.3-0.8,0.7-0.8H76c0.4,0,0.7-0.3,0.7-0.7V0.7	C76.7,0.3,76.4,0,76,0H57.6c-0.4,0-0.7,0.3-0.7,0.7v5.4c0,0.4,0.3,0.7,0.7,0.7h3.9c0.4,0,0.7,0.4,0.7,0.8v1.9c0,0.3-0.3,0.6-0.6,0.7	c-11.1,2.4-19.5,12.4-19.5,24.4c0,13.7,10.9,24.8,24.6,24.9s24.9-11.1,24.9-24.9C91.6,22.6,83.2,12.6,72.1,10.2z M66.8,53.4	c-10.3,0-18.6-8.4-18.6-18.8c0-10.4,8.3-18.8,18.6-18.8c10.3,0,18.6,8.4,18.6,18.8C85.4,45,77.1,53.4,66.8,53.4z'></path> <path class='gray-body' d='M7.1,32l3.5,0.7c0.5,0.1,0.5,0.9,0,1l-3.5,0.7c-0.2,0-0.4,0.2-0.4,0.4L6,38.3c-0.1,0.5-0.9,0.5-1,0l-0.7-3.5	c0-0.2-0.2-0.4-0.4-0.4l-3.5-0.7c-0.5-0.1-0.5-0.9,0-1L3.9,32c0.2,0,0.4-0.2,0.4-0.4L5,28.1c0.1-0.5,0.9-0.5,1,0l0.7,3.5	C6.7,31.8,6.9,32,7.1,32'></path> <path class='gray-body' d='M16.3,28.7l2.5,0.5c0.4,0.1,0.4,0.6,0,0.7l-2.5,0.5c-0.1,0-0.3,0.1-0.3,0.3l-0.5,2.5c-0.1,0.4-0.6,0.4-0.7,0	l-0.5-2.5c0-0.1-0.1-0.3-0.3-0.3l-2.5-0.5c-0.4-0.1-0.4-0.6,0-0.7l2.5-0.5c0.1,0,0.3-0.1,0.3-0.3l0.5-2.5c0.1-0.4,0.6-0.4,0.7,0	l0.5,2.5C16,28.5,16.1,28.7,16.3,28.7'></path> </svg></div><p>Receive your prototype in as little as 24 hours</p></div><div class='columns small-12 text-center'><a class='button' href='https://ondemand.3dsystems.com/quotations/new/detail'>Start a Quote Now</a></div></div><p class='callout-bottom'><br /><strong>NOTE:</strong> Some orders may need a manual quote from our experts. Upload your model and receive your quote within 24 hours.</p></div></div></div><div class='columns small-12 medium-12 large-3'><div class='callout-box'><div class='callout-header text-center'><h5>Appearance Models</h5></div><div class='callout-content'><div class='row' data-equalizer-watch='odm-callout-box'><div class='columns small-12 medium-6 large-12 text-center'><div><svg id='Layer_1' style='enable-background:new 0 0 114 85;' version='1.1' viewbox='0 0 114 85' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='green' d='M79.1,66c8.7,0,16.1-7.3,16.2-15.9c0.1-8.9-7-16.5-16.3-16.6c-8.8-0.1-16.1,7.2-16.2,15.8	C62.7,59,70.5,66.1,79.1,66 M108.3,31.3c0,0.4-0.2,0.7-0.4,1c-1.1,1.5-2.2,3-3.3,4.4c-0.5,0.7-0.5,1.3-0.2,2.1	c0.2,0.4,0.3,0.8,0.4,1.2c0.4,1,1,1.7,2,1.8c1.7,0.2,3.4,0.4,5.1,0.7c1,0.1,1.3,0.3,1.5,1.4c0.5,3,0.7,6,0.4,9	c-0.1,1.2-0.3,2.4-0.5,3.5c-0.1,0.8-0.5,1.1-1.3,1.3c-1.9,0.4-3.8,0.6-5.7,0.8c-0.8,0.1-1,0.4-1.3,1.1c-0.2,0.4-0.3,0.8-0.5,1.2	c-0.5,1.2-0.7,2,0.2,3.1c1.1,1.3,2.2,2.7,3.1,4.1c0.5,0.7,0.5,1.2,0,2c-2.4,3.5-5.5,6.5-9,9c-0.6,0.4-1,0.4-1.7-0.1	c-1.6-1.2-3.2-2.4-4.8-3.6c-0.5-0.4-1-0.5-1.6-0.1c-0.4,0.3-1.2,0.7-1.6,0.9c-1.3,0.7-1.6,0.6-1.7,2c-0.1,1.7-0.3,3.3-0.6,4.9	c-0.2,0.9-0.5,1.2-1.3,1.4c-4.3,0.9-8.5,0.8-12.8,0c-0.8-0.1-1-0.4-1.1-1.2c-0.3-2-0.6-4.1-0.8-6.1c-0.1-0.6-0.4-0.9-0.9-1.1	c-0.4-0.1-0.8-0.3-1.2-0.5c-1.3-0.7-2.4-0.7-3.5,0.3c-1.3,1.1-2.7,2.1-4,3.1c-0.7,0.5-0.9,0.5-1.6,0c-3.6-2.5-6.7-5.6-9.3-9.3	c-0.4-0.6-0.4-1,0.1-1.7c1.2-1.6,2.3-3.1,3.5-4.7c0.6-0.8,0.6-0.9,0.1-1.8c-0.2-0.3-0.3-0.7-0.3-1c-0.2-1.2-0.9-1.9-2.1-2.1	c-1-0.2-2.1-0.2-3.1-0.4c-0.8-0.2-1.6-0.3-2.4-0.4c-0.6-0.1-1-0.5-1.2-1.2c-0.6-3-0.7-6-0.5-9c0.1-1.2,0.3-2.4,0.5-3.5	c0.2-1,0.4-1.3,1.4-1.4c1.9-0.3,3.8-0.6,5.7-0.9c0.6-0.1,1-0.5,1.3-1c0.1-0.2,0.3-0.5,0.4-0.7c0.7-1.3,0.6-2.6-0.1-3.9	c-0.4-0.6-0.9-1.1-1.4-1.7c-0.6-0.7-1.1-1.5-1.7-2.2c-0.5-0.6-0.5-1.1,0-1.8c2.5-3.6,5.6-6.6,9.1-9.1c0.5-0.4,0.8-0.4,1.4,0.1	c1.5,1.2,3.1,2.3,4.6,3.5c0.7,0.5,1.2,0.5,2,0.2c0.4-0.1,0.8-0.3,1.2-0.4c1.1-0.4,1.7-0.9,1.9-2.1c0.2-1.8,0.5-3.5,0.7-5.3	c0.1-1,0.3-1.2,1.3-1.4c2.3-0.3,4.5-0.5,6.8-0.5c2.2,0,4.4,0.2,6.6,0.7c0.4,0.1,0.5,0.2,0.6,0.6c0.3,2.2,0.6,4.3,0.9,6.5	c0.1,0.4,0.2,0.7,0.5,1c1.1,0.6,2.2,1,3.5,1.1c0.4,0,0.7-0.1,1-0.3c1.5-1.1,3-2.2,4.4-3.4c0.7-0.6,1.1-0.6,1.9-0.1	c3.5,2.5,6.5,5.5,9,9C108.1,30.7,108.3,30.9,108.3,31.3'></path> <path class='gray-mid' d='M42.4,13.7l7.8,1.6c1.2,0.2,1.2,2,0,2.2l-7.8,1.6c-0.4,0.1-0.8,0.4-0.9,0.9l-1.6,7.8c-0.2,1.2-2,1.2-2.2,0	L36.1,20c-0.1-0.4-0.4-0.8-0.9-0.9l-7.8-1.6c-1.2-0.2-1.2-2,0-2.2l7.8-1.6c0.4-0.1,0.8-0.4,0.9-0.9L37.7,5c0.2-1.2,2-1.2,2.2,0	l1.6,7.8C41.6,13.3,41.9,13.6,42.4,13.7'></path> <path class='gray-mid' d='M63.7,6.8L69.3,8c0.9,0.2,0.9,1.4,0,1.6l-5.6,1.1c-0.3,0.1-0.6,0.3-0.6,0.6L62,16.9c-0.2,0.9-1.4,0.9-1.6,0	l-1.1-5.6c-0.1-0.3-0.3-0.6-0.6-0.6l-5.6-1.1c-0.9-0.2-0.9-1.4,0-1.6l5.6-1.1c0.3-0.1,0.6-0.3,0.6-0.6l1.1-5.6	c0.2-0.9,1.4-0.9,1.6,0l1.1,5.6C63.1,6.5,63.4,6.8,63.7,6.8'></path> <path class='gray-body' d='M12.1,15.8l18.3,18.3l-10,10L2.1,25.8c-2.8-2.8-2.8-7.2,0-10C4.8,13,9.3,13,12.1,15.8'></path> <path class='gray-body' d='M31.3,55l-7.6-7.6l10-10l7.6,7.6C36.6,46.5,32.8,50.3,31.3,55'></path> <path class='gray-body' d='M45.4,49.1L45.4,49.1c0.2,0,0.4-0.1,0.6-0.1c5.9,0,10.6,4.7,10.6,10.6c0.3,4.4,2.4,7.6,6.2,9.5	c0.8,0.4,0.6,1.5-0.2,1.8c-7,2.8-12.9,2.1-17.7,1c-7.3-1.8-9.7-8.4-9.4-13.2C35.7,53.7,40,49.4,45.4,49.1'></path> <path class='white' d='M51,60.7c1.9,2.1,3.1-1.8,3.1,0.8c0.2,3,1.7,6.4,4.5,7.5c0.2,0.1,0.2,0.4,0,0.5c-4.9,1.6-8.5,1.3-11.9,0.2	c-2.2-0.5-3.9-2-4.9-3.5c-1-1.6,0.7-4.1,2.5-3.4c2.6,1.1,3.4,0,3.5-1C48.1,60.1,50.2,59.9,51,60.7z'></path> </svg></div></div><div class='columns small-12 medium-6 large-12 text-center'><p>Interested in appearance models? Give us a call and we’ll start your order now.</p></div></div><p class='callout-bottom text-center'><strong>CONTACT US</strong><br /><span class='SL_Swap' id='smartling-odm-contact-menu-advanced-prototyping'><a href='tel:17709013200'>770-901-3200</a> or<br /><a href='mailto:Quickparts.quote@3dsystems.com'>send us an email</a></span></p></div></div></div></div></div>
                                                        </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="low-volume-production--on-demand-manufacturing-low-volume-production-manufacturing link-about-item item-full-width">
                    <h3>Ordering a Part from One of Our Four Services Is Easy:</h3>
                                                                <div class="mega-content"><div class='row' data-equalizer='odm-callout-box' data-equalizer-mq='large-up'><div class='columns small-12 medium-12 large-9'><div class='callout-box'><div class='callout-header text-center'><h5>Quickparts Rapid Prototyping, Advanced Prototyping and Low-Volume Production</h5></div><div class='callout-content'><div class='row' data-equalizer-watch='odm-callout-box'><div class='columns small-12 medium-3 text-center'><div class='step-number'>1</div><div><svg style='enable-background:new 0 0 48 77;' version='1.1' viewbox='0 0 48 77' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='gray-mid' d='M16.4,28.8v4c0,0.5-0.4,0.9-0.9,0.9H6.7c-0.5,0-0.9,0.4-0.9,0.9v35.7c0,0.5,0.4,0.9,0.9,0.9	h34.6c0.5,0,0.9-0.4,0.9-0.9V34.5c0-0.5-0.4-0.9-0.9-0.9h-8.7c-0.5,0-0.9-0.4-0.9-0.9v-4c0-0.5,0.4-0.9,0.9-0.9h13.5	c1.1,0,1.9,0.9,1.9,1.9V75c0,1.1-0.9,1.9-1.9,1.9H1.9C0.9,77,0,76.1,0,75.1V29.8c0-1.1,0.9-1.9,1.9-1.9h13.5	C16,27.8,16.4,28.3,16.4,28.8'></path> <path class='green' d='M26.9,12.3V49c0,0.5-0.4,0.9-0.9,0.9h-4c-0.5,0-0.9-0.4-0.9-0.9V12.5c0-0.6-0.7-0.9-1.1-0.5l-8.4,8.4	c-0.4,0.4-1,0.4-1.3,0l-2.8-2.8c-0.4-0.4-0.4-1,0-1.3L19.9,3.7l0,0l3.4-3.4c0.4-0.4,1.1-0.4,1.5,0l3.4,3.4l0,0l12.4,12.4	c0.4,0.4,0.4,1,0,1.3l-2.8,2.8c-0.4,0.4-1,0.4-1.3,0L28,11.9C27.6,11.4,26.9,11.7,26.9,12.3'></path> </svg></div><p>Upload your model</p></div><div class='columns small-12 medium-5 text-center'><div class='step-number'>2</div><div><svg style='enable-background:new 0 0 114 81;' version='1.1' viewbox='0 0 114 81' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='gray-body' d='M94.2,13.9h-20c-1.1,0-2,0.9-2,2V36c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V15.9C96.2,14.8,95.3,13.9,94.2,13.9z	 M92.8,34.7H75.6V17.3h17.2V34.7z'></path> <path class='gray-body' d='M62.5,45.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C68.3,49.5,62.5,45.4,62.5,45.4'></path> <path class='gray-body' d='M45.4,45.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C51.1,49.5,45.4,45.4,45.4,45.4'></path> <path class='gray-body' d='M54,30.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C59.7,34.5,54,30.4,54,30.4'></path> <path class='gray-body' d='M16.9,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S15.6,28.3,16.9,28.3'></path> <path class='gray-body' d='M27.1,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S25.8,28.3,27.1,28.3'></path> <path class='gray-body' d='M37.3,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4C36,23.6,35,24.7,35,26S36,28.3,37.3,28.3'></path> <path class='gray-body' d='M22,37.8c1.3,0,2.4-1.1,2.4-2.4c0-1.3-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4C19.6,36.8,20.7,37.8,22,37.8'></path> <path class='gray-body' d='M32.2,37.8c1.3,0,2.4-1.1,2.4-2.4c0-1.3-1.1-2.4-2.4-2.4c-1.3,0-2.4,1.1-2.4,2.4C29.8,36.8,30.9,37.8,32.2,37.8	'></path> <path class='gray-body' d='M22,18.9c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S20.7,18.9,22,18.9'></path> <path class='gray-body' d='M32.2,18.9c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4c-1.3,0-2.4,1.1-2.4,2.4C29.8,17.8,30.9,18.9,32.2,18.9'></path> <path class='green' d='M90.2,59.7l-24.5-7c-0.8-0.2-1.7,0.6-1.4,1.4l7,24.6c0.2,0.7,1.1,0.9,1.7,0.3l4.3-6l7.7,7.7	c0.5,0.5,1.3,0.4,1.9-0.1l5.1-5.1c0.6-0.6,0.6-1.4,0.1-1.9l-7.7-7.7l6-4.3C91,60.9,90.9,59.9,90.2,59.7'></path> <path class='gray-mid' d='M94.3,69.2v-4.4c0-0.4,0.3-0.8,0.7-0.8h12.5c0.4,0,0.7-0.3,0.7-0.7V6.6c0-0.4-0.3-0.7-0.7-0.7H6.5	c-0.4,0-0.7,0.3-0.7,0.7v56.7c0,0.4,0.3,0.7,0.7,0.7H62c0.4,0,0.7,0.3,0.7,0.8v4.4c0,0.4-0.3,0.8-0.7,0.8H1.5C0.7,70,0,69.3,0,68.4	V1.6C0,0.7,0.7,0,1.5,0h110.9c0.8,0,1.5,0.7,1.5,1.6v66.9c0,0.9-0.7,1.6-1.5,1.6H95C94.6,70,94.3,69.7,94.3,69.2'></path> </svg></div><p>Choose your material, process, and finish</p></div><div class='columns small-12 medium-4 text-center'><div class='step-number'>3</div><div><svg id='Layer_1' style='enable-background:new 0 0 96 75;' version='1.1' viewbox='0 0 96 75' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='green' d='M21.1,55.3c3.9,0,7.2-3.3,7.2-7.1c0-3.9-3.1-7.3-7.3-7.4c-3.9,0-7.2,3.2-7.2,7C13.8,52.2,17.2,55.3,21.1,55.3z	 M34.1,39.8c0,0.2-0.1,0.3-0.2,0.4c-0.5,0.7-1,1.3-1.5,2c-0.2,0.3-0.3,0.6-0.1,1c0.1,0.2,0.2,0.3,0.2,0.5c0.1,0.5,0.4,0.8,0.9,0.8	c0.8,0.1,1.5,0.2,2.3,0.3c0.5,0.1,0.6,0.1,0.7,0.6c0.2,1.3,0.3,2.7,0.2,4c0,0.5-0.1,1.1-0.2,1.6c-0.1,0.4-0.2,0.5-0.6,0.6	c-0.8,0.2-1.7,0.3-2.5,0.4c-0.4,0-0.5,0.1-0.6,0.5c0,0.2-0.1,0.4-0.2,0.5c-0.3,0.5-0.3,0.9,0.1,1.4c0.5,0.6,1,1.2,1.4,1.8	c0.2,0.3,0.2,0.6,0,0.9c-1.1,1.6-2.4,2.9-4,4c-0.3,0.2-0.4,0.2-0.7,0c-0.7-0.5-1.4-1.1-2.1-1.6c-0.2-0.2-0.5-0.2-0.7,0	c-0.2,0.1-0.4,0.2-0.5,0.2c-0.6,0.1-0.9,0.5-0.9,1.1c-0.1,0.7-0.2,1.5-0.3,2.2c-0.1,0.4-0.2,0.5-0.6,0.6c-1.9,0.4-3.8,0.4-5.7,0	c-0.3-0.1-0.4-0.2-0.5-0.5c-0.1-0.9-0.2-1.8-0.4-2.7c0-0.3-0.2-0.4-0.4-0.5c-0.2,0-0.4-0.1-0.5-0.2c-0.6-0.3-1.1-0.3-1.5,0.1	c-0.6,0.5-1.2,0.9-1.8,1.4c-0.3,0.2-0.4,0.2-0.7,0c-1.6-1.1-3-2.5-4.1-4.1c-0.2-0.3-0.2-0.4,0.1-0.7c0.5-0.7,1-1.4,1.6-2.1	c0.3-0.4,0.3-0.4,0-0.8c-0.1-0.1-0.1-0.3-0.1-0.5c-0.1-0.5-0.4-0.8-0.9-0.9C8.8,52,8.4,52,7.9,51.9c-0.4-0.1-0.7-0.1-1.1-0.2	c-0.3-0.1-0.5-0.2-0.5-0.5c-0.3-1.3-0.3-2.7-0.2-4c0-0.5,0.1-1.1,0.2-1.6C5.9,45,6,44.9,6.5,44.8c0.8-0.1,1.7-0.3,2.5-0.4	c0.3,0,0.5-0.2,0.6-0.5c0.1-0.1,0.1-0.2,0.2-0.3c0.3-0.6,0.3-1.2-0.1-1.7c-0.2-0.3-0.4-0.5-0.6-0.8c-0.3-0.3-0.5-0.6-0.7-1	c-0.2-0.3-0.2-0.5,0-0.8c1.1-1.6,2.5-3,4.1-4.1c0.2-0.2,0.4-0.2,0.6,0c0.7,0.5,1.4,1,2.1,1.6c0.3,0.2,0.6,0.3,0.9,0.1	c0.2-0.1,0.3-0.1,0.5-0.2c0.5-0.1,0.8-0.4,0.8-0.9c0.1-0.8,0.2-1.6,0.3-2.4c0-0.4,0.2-0.6,0.6-0.6c1-0.2,2-0.2,3-0.2s2,0.1,2.9,0.3	c0.2,0,0.2,0.1,0.3,0.3c0.1,1,0.3,1.9,0.4,2.9c0,0.2,0.1,0.3,0.2,0.4c0.5,0.3,1,0.5,1.5,0.5c0.2,0,0.3,0,0.5-0.1	c0.7-0.5,1.3-1,2-1.5c0.3-0.3,0.5-0.3,0.8,0c1.6,1.1,2.9,2.4,4,4C34,39.5,34.1,39.7,34.1,39.8z'></path> <path class='gray-mid' d='M14.7,69.8l9.4,3.2c4.4,0.8,8.8,1.9,11.5,1.3c0,0,8.4-2.6,13.2-2.9c0,0,5.8,2.8,10.4,3.5c0,0,4-7.3,1.4-9.2	c-0.5,0.2-7.9-1.6-10.7-2.3C47.8,63,46.1,62,44.2,61c-1.7-0.9-2.6-1.5-4.5-1.7c-1.6-0.2-6.4-0.1-7.9-0.4c-2.9-0.5-4.2-1.3-8.2-2.3	c-0.2-0.1-1.1,0-1.4,0.3c-0.9,0.7-1.8,2.3,1.9,4.3c1.1,0.6,4.7,1.3,6.6,1.5c4.4,0.4,4.1,1.3,4.1,1.4c-1.1,2.9-6.7,2.8-8.2,3.4	L17,67.2c-2.7-2.5-4.5-3.6-5.5-4c-0.7-0.4-1.6-0.5-2-0.2C8.1,64,11.2,66.5,14.7,69.8'></path> <path class='green' d='M67.5,19.5c-0.4,0-0.7,0.3-0.7,0.7v13.3c0,0.3,0.4,0.5,0.7,0.2L76,23.5c0.2-0.3,0.2-0.7-0.1-1	C73.6,20.8,70.7,19.6,67.5,19.5z'></path> <path class='gray-body' d='M80,10c-0.4-0.2-0.5-0.8-0.3-1.2l2.4-3.6c0.2-0.4,0.7-0.5,1.1-0.3c5.1,3.1,9.4,7.3,12.6,12.4	c0.2,0.4,0.1,0.9-0.2,1.1l-3.5,2.7c-0.4,0.3-1,0.2-1.2-0.2C88.3,16.4,84.5,12.7,80,10z'></path> <path class='gray-body' d='M72.1,10.2c-0.4,0-0.6-0.3-0.6-0.7V7.6c0-0.5,0.3-0.8,0.7-0.8H76c0.4,0,0.7-0.3,0.7-0.7V0.7	C76.7,0.3,76.4,0,76,0H57.6c-0.4,0-0.7,0.3-0.7,0.7v5.4c0,0.4,0.3,0.7,0.7,0.7h3.9c0.4,0,0.7,0.4,0.7,0.8v1.9c0,0.3-0.3,0.6-0.6,0.7	c-11.1,2.4-19.5,12.4-19.5,24.4c0,13.7,10.9,24.8,24.6,24.9s24.9-11.1,24.9-24.9C91.6,22.6,83.2,12.6,72.1,10.2z M66.8,53.4	c-10.3,0-18.6-8.4-18.6-18.8c0-10.4,8.3-18.8,18.6-18.8c10.3,0,18.6,8.4,18.6,18.8C85.4,45,77.1,53.4,66.8,53.4z'></path> <path class='gray-body' d='M7.1,32l3.5,0.7c0.5,0.1,0.5,0.9,0,1l-3.5,0.7c-0.2,0-0.4,0.2-0.4,0.4L6,38.3c-0.1,0.5-0.9,0.5-1,0l-0.7-3.5	c0-0.2-0.2-0.4-0.4-0.4l-3.5-0.7c-0.5-0.1-0.5-0.9,0-1L3.9,32c0.2,0,0.4-0.2,0.4-0.4L5,28.1c0.1-0.5,0.9-0.5,1,0l0.7,3.5	C6.7,31.8,6.9,32,7.1,32'></path> <path class='gray-body' d='M16.3,28.7l2.5,0.5c0.4,0.1,0.4,0.6,0,0.7l-2.5,0.5c-0.1,0-0.3,0.1-0.3,0.3l-0.5,2.5c-0.1,0.4-0.6,0.4-0.7,0	l-0.5-2.5c0-0.1-0.1-0.3-0.3-0.3l-2.5-0.5c-0.4-0.1-0.4-0.6,0-0.7l2.5-0.5c0.1,0,0.3-0.1,0.3-0.3l0.5-2.5c0.1-0.4,0.6-0.4,0.7,0	l0.5,2.5C16,28.5,16.1,28.7,16.3,28.7'></path> </svg></div><p>Receive your prototype in as little as 24 hours</p></div><div class='columns small-12 text-center'><a class='button' href='https://ondemand.3dsystems.com/quotations/new/detail'>Start a Quote Now</a></div></div><p class='callout-bottom'><br /><strong>NOTE:</strong> Some orders may need a manual quote from our experts. Upload your model and receive your quote within 24 hours.</p></div></div></div><div class='columns small-12 medium-12 large-3'><div class='callout-box'><div class='callout-header text-center'><h5>Appearance Models</h5></div><div class='callout-content'><div class='row' data-equalizer-watch='odm-callout-box'><div class='columns small-12 medium-6 large-12 text-center'><div><svg id='Layer_1' style='enable-background:new 0 0 114 85;' version='1.1' viewbox='0 0 114 85' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='green' d='M79.1,66c8.7,0,16.1-7.3,16.2-15.9c0.1-8.9-7-16.5-16.3-16.6c-8.8-0.1-16.1,7.2-16.2,15.8	C62.7,59,70.5,66.1,79.1,66 M108.3,31.3c0,0.4-0.2,0.7-0.4,1c-1.1,1.5-2.2,3-3.3,4.4c-0.5,0.7-0.5,1.3-0.2,2.1	c0.2,0.4,0.3,0.8,0.4,1.2c0.4,1,1,1.7,2,1.8c1.7,0.2,3.4,0.4,5.1,0.7c1,0.1,1.3,0.3,1.5,1.4c0.5,3,0.7,6,0.4,9	c-0.1,1.2-0.3,2.4-0.5,3.5c-0.1,0.8-0.5,1.1-1.3,1.3c-1.9,0.4-3.8,0.6-5.7,0.8c-0.8,0.1-1,0.4-1.3,1.1c-0.2,0.4-0.3,0.8-0.5,1.2	c-0.5,1.2-0.7,2,0.2,3.1c1.1,1.3,2.2,2.7,3.1,4.1c0.5,0.7,0.5,1.2,0,2c-2.4,3.5-5.5,6.5-9,9c-0.6,0.4-1,0.4-1.7-0.1	c-1.6-1.2-3.2-2.4-4.8-3.6c-0.5-0.4-1-0.5-1.6-0.1c-0.4,0.3-1.2,0.7-1.6,0.9c-1.3,0.7-1.6,0.6-1.7,2c-0.1,1.7-0.3,3.3-0.6,4.9	c-0.2,0.9-0.5,1.2-1.3,1.4c-4.3,0.9-8.5,0.8-12.8,0c-0.8-0.1-1-0.4-1.1-1.2c-0.3-2-0.6-4.1-0.8-6.1c-0.1-0.6-0.4-0.9-0.9-1.1	c-0.4-0.1-0.8-0.3-1.2-0.5c-1.3-0.7-2.4-0.7-3.5,0.3c-1.3,1.1-2.7,2.1-4,3.1c-0.7,0.5-0.9,0.5-1.6,0c-3.6-2.5-6.7-5.6-9.3-9.3	c-0.4-0.6-0.4-1,0.1-1.7c1.2-1.6,2.3-3.1,3.5-4.7c0.6-0.8,0.6-0.9,0.1-1.8c-0.2-0.3-0.3-0.7-0.3-1c-0.2-1.2-0.9-1.9-2.1-2.1	c-1-0.2-2.1-0.2-3.1-0.4c-0.8-0.2-1.6-0.3-2.4-0.4c-0.6-0.1-1-0.5-1.2-1.2c-0.6-3-0.7-6-0.5-9c0.1-1.2,0.3-2.4,0.5-3.5	c0.2-1,0.4-1.3,1.4-1.4c1.9-0.3,3.8-0.6,5.7-0.9c0.6-0.1,1-0.5,1.3-1c0.1-0.2,0.3-0.5,0.4-0.7c0.7-1.3,0.6-2.6-0.1-3.9	c-0.4-0.6-0.9-1.1-1.4-1.7c-0.6-0.7-1.1-1.5-1.7-2.2c-0.5-0.6-0.5-1.1,0-1.8c2.5-3.6,5.6-6.6,9.1-9.1c0.5-0.4,0.8-0.4,1.4,0.1	c1.5,1.2,3.1,2.3,4.6,3.5c0.7,0.5,1.2,0.5,2,0.2c0.4-0.1,0.8-0.3,1.2-0.4c1.1-0.4,1.7-0.9,1.9-2.1c0.2-1.8,0.5-3.5,0.7-5.3	c0.1-1,0.3-1.2,1.3-1.4c2.3-0.3,4.5-0.5,6.8-0.5c2.2,0,4.4,0.2,6.6,0.7c0.4,0.1,0.5,0.2,0.6,0.6c0.3,2.2,0.6,4.3,0.9,6.5	c0.1,0.4,0.2,0.7,0.5,1c1.1,0.6,2.2,1,3.5,1.1c0.4,0,0.7-0.1,1-0.3c1.5-1.1,3-2.2,4.4-3.4c0.7-0.6,1.1-0.6,1.9-0.1	c3.5,2.5,6.5,5.5,9,9C108.1,30.7,108.3,30.9,108.3,31.3'></path> <path class='gray-mid' d='M42.4,13.7l7.8,1.6c1.2,0.2,1.2,2,0,2.2l-7.8,1.6c-0.4,0.1-0.8,0.4-0.9,0.9l-1.6,7.8c-0.2,1.2-2,1.2-2.2,0	L36.1,20c-0.1-0.4-0.4-0.8-0.9-0.9l-7.8-1.6c-1.2-0.2-1.2-2,0-2.2l7.8-1.6c0.4-0.1,0.8-0.4,0.9-0.9L37.7,5c0.2-1.2,2-1.2,2.2,0	l1.6,7.8C41.6,13.3,41.9,13.6,42.4,13.7'></path> <path class='gray-mid' d='M63.7,6.8L69.3,8c0.9,0.2,0.9,1.4,0,1.6l-5.6,1.1c-0.3,0.1-0.6,0.3-0.6,0.6L62,16.9c-0.2,0.9-1.4,0.9-1.6,0	l-1.1-5.6c-0.1-0.3-0.3-0.6-0.6-0.6l-5.6-1.1c-0.9-0.2-0.9-1.4,0-1.6l5.6-1.1c0.3-0.1,0.6-0.3,0.6-0.6l1.1-5.6	c0.2-0.9,1.4-0.9,1.6,0l1.1,5.6C63.1,6.5,63.4,6.8,63.7,6.8'></path> <path class='gray-body' d='M12.1,15.8l18.3,18.3l-10,10L2.1,25.8c-2.8-2.8-2.8-7.2,0-10C4.8,13,9.3,13,12.1,15.8'></path> <path class='gray-body' d='M31.3,55l-7.6-7.6l10-10l7.6,7.6C36.6,46.5,32.8,50.3,31.3,55'></path> <path class='gray-body' d='M45.4,49.1L45.4,49.1c0.2,0,0.4-0.1,0.6-0.1c5.9,0,10.6,4.7,10.6,10.6c0.3,4.4,2.4,7.6,6.2,9.5	c0.8,0.4,0.6,1.5-0.2,1.8c-7,2.8-12.9,2.1-17.7,1c-7.3-1.8-9.7-8.4-9.4-13.2C35.7,53.7,40,49.4,45.4,49.1'></path> <path class='white' d='M51,60.7c1.9,2.1,3.1-1.8,3.1,0.8c0.2,3,1.7,6.4,4.5,7.5c0.2,0.1,0.2,0.4,0,0.5c-4.9,1.6-8.5,1.3-11.9,0.2	c-2.2-0.5-3.9-2-4.9-3.5c-1-1.6,0.7-4.1,2.5-3.4c2.6,1.1,3.4,0,3.5-1C48.1,60.1,50.2,59.9,51,60.7z'></path> </svg></div></div><div class='columns small-12 medium-6 large-12 text-center'><p>Interested in appearance models? Give us a call and we’ll start your order now.</p></div></div><p class='callout-bottom text-center'><strong>CONTACT US</strong><br /><span class='SL_Swap' id='smartling-odm-contact-menu-low-vol'><a href='tel:17709013200'>770-901-3200</a> or<br /><a href='mailto:Quickparts.quote@3dsystems.com'>send us an email</a></span></p></div></div></div></div></div>
                                                        </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="appearance-models--on-demand-manufacturing-appearance-models link-about-item item-full-width">
                    <h3>Ordering a Part from One of Our Four Services Is Easy:</h3>
                                                                <div class="mega-content"><div class='row' data-equalizer='odm-callout-box' data-equalizer-mq='large-up'><div class='columns small-12 medium-12 large-9'><div class='callout-box'><div class='callout-header text-center'><h5>Quickparts Rapid Prototyping, Advanced Prototyping and Low-Volume Production</h5></div><div class='callout-content'><div class='row' data-equalizer-watch='odm-callout-box'><div class='columns small-12 medium-3 text-center'><div class='step-number'>1</div><div><svg style='enable-background:new 0 0 48 77;' version='1.1' viewbox='0 0 48 77' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='gray-mid' d='M16.4,28.8v4c0,0.5-0.4,0.9-0.9,0.9H6.7c-0.5,0-0.9,0.4-0.9,0.9v35.7c0,0.5,0.4,0.9,0.9,0.9	h34.6c0.5,0,0.9-0.4,0.9-0.9V34.5c0-0.5-0.4-0.9-0.9-0.9h-8.7c-0.5,0-0.9-0.4-0.9-0.9v-4c0-0.5,0.4-0.9,0.9-0.9h13.5	c1.1,0,1.9,0.9,1.9,1.9V75c0,1.1-0.9,1.9-1.9,1.9H1.9C0.9,77,0,76.1,0,75.1V29.8c0-1.1,0.9-1.9,1.9-1.9h13.5	C16,27.8,16.4,28.3,16.4,28.8'></path> <path class='green' d='M26.9,12.3V49c0,0.5-0.4,0.9-0.9,0.9h-4c-0.5,0-0.9-0.4-0.9-0.9V12.5c0-0.6-0.7-0.9-1.1-0.5l-8.4,8.4	c-0.4,0.4-1,0.4-1.3,0l-2.8-2.8c-0.4-0.4-0.4-1,0-1.3L19.9,3.7l0,0l3.4-3.4c0.4-0.4,1.1-0.4,1.5,0l3.4,3.4l0,0l12.4,12.4	c0.4,0.4,0.4,1,0,1.3l-2.8,2.8c-0.4,0.4-1,0.4-1.3,0L28,11.9C27.6,11.4,26.9,11.7,26.9,12.3'></path> </svg></div><p>Upload your model</p></div><div class='columns small-12 medium-5 text-center'><div class='step-number'>2</div><div><svg style='enable-background:new 0 0 114 81;' version='1.1' viewbox='0 0 114 81' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='gray-body' d='M94.2,13.9h-20c-1.1,0-2,0.9-2,2V36c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V15.9C96.2,14.8,95.3,13.9,94.2,13.9z	 M92.8,34.7H75.6V17.3h17.2V34.7z'></path> <path class='gray-body' d='M62.5,45.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C68.3,49.5,62.5,45.4,62.5,45.4'></path> <path class='gray-body' d='M45.4,45.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C51.1,49.5,45.4,45.4,45.4,45.4'></path> <path class='gray-body' d='M54,30.4c0,0-5.7,4.1-5.7,8.3c0,3.2,2.6,5.8,5.7,5.8c3.2,0,5.7-2.6,5.7-5.8C59.7,34.5,54,30.4,54,30.4'></path> <path class='gray-body' d='M16.9,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S15.6,28.3,16.9,28.3'></path> <path class='gray-body' d='M27.1,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S25.8,28.3,27.1,28.3'></path> <path class='gray-body' d='M37.3,28.3c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4C36,23.6,35,24.7,35,26S36,28.3,37.3,28.3'></path> <path class='gray-body' d='M22,37.8c1.3,0,2.4-1.1,2.4-2.4c0-1.3-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4C19.6,36.8,20.7,37.8,22,37.8'></path> <path class='gray-body' d='M32.2,37.8c1.3,0,2.4-1.1,2.4-2.4c0-1.3-1.1-2.4-2.4-2.4c-1.3,0-2.4,1.1-2.4,2.4C29.8,36.8,30.9,37.8,32.2,37.8	'></path> <path class='gray-body' d='M22,18.9c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4s-2.4,1.1-2.4,2.4S20.7,18.9,22,18.9'></path> <path class='gray-body' d='M32.2,18.9c1.3,0,2.4-1.1,2.4-2.4s-1.1-2.4-2.4-2.4c-1.3,0-2.4,1.1-2.4,2.4C29.8,17.8,30.9,18.9,32.2,18.9'></path> <path class='green' d='M90.2,59.7l-24.5-7c-0.8-0.2-1.7,0.6-1.4,1.4l7,24.6c0.2,0.7,1.1,0.9,1.7,0.3l4.3-6l7.7,7.7	c0.5,0.5,1.3,0.4,1.9-0.1l5.1-5.1c0.6-0.6,0.6-1.4,0.1-1.9l-7.7-7.7l6-4.3C91,60.9,90.9,59.9,90.2,59.7'></path> <path class='gray-mid' d='M94.3,69.2v-4.4c0-0.4,0.3-0.8,0.7-0.8h12.5c0.4,0,0.7-0.3,0.7-0.7V6.6c0-0.4-0.3-0.7-0.7-0.7H6.5	c-0.4,0-0.7,0.3-0.7,0.7v56.7c0,0.4,0.3,0.7,0.7,0.7H62c0.4,0,0.7,0.3,0.7,0.8v4.4c0,0.4-0.3,0.8-0.7,0.8H1.5C0.7,70,0,69.3,0,68.4	V1.6C0,0.7,0.7,0,1.5,0h110.9c0.8,0,1.5,0.7,1.5,1.6v66.9c0,0.9-0.7,1.6-1.5,1.6H95C94.6,70,94.3,69.7,94.3,69.2'></path> </svg></div><p>Choose your material, process, and finish</p></div><div class='columns small-12 medium-4 text-center'><div class='step-number'>3</div><div><svg id='Layer_1' style='enable-background:new 0 0 96 75;' version='1.1' viewbox='0 0 96 75' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='green' d='M21.1,55.3c3.9,0,7.2-3.3,7.2-7.1c0-3.9-3.1-7.3-7.3-7.4c-3.9,0-7.2,3.2-7.2,7C13.8,52.2,17.2,55.3,21.1,55.3z	 M34.1,39.8c0,0.2-0.1,0.3-0.2,0.4c-0.5,0.7-1,1.3-1.5,2c-0.2,0.3-0.3,0.6-0.1,1c0.1,0.2,0.2,0.3,0.2,0.5c0.1,0.5,0.4,0.8,0.9,0.8	c0.8,0.1,1.5,0.2,2.3,0.3c0.5,0.1,0.6,0.1,0.7,0.6c0.2,1.3,0.3,2.7,0.2,4c0,0.5-0.1,1.1-0.2,1.6c-0.1,0.4-0.2,0.5-0.6,0.6	c-0.8,0.2-1.7,0.3-2.5,0.4c-0.4,0-0.5,0.1-0.6,0.5c0,0.2-0.1,0.4-0.2,0.5c-0.3,0.5-0.3,0.9,0.1,1.4c0.5,0.6,1,1.2,1.4,1.8	c0.2,0.3,0.2,0.6,0,0.9c-1.1,1.6-2.4,2.9-4,4c-0.3,0.2-0.4,0.2-0.7,0c-0.7-0.5-1.4-1.1-2.1-1.6c-0.2-0.2-0.5-0.2-0.7,0	c-0.2,0.1-0.4,0.2-0.5,0.2c-0.6,0.1-0.9,0.5-0.9,1.1c-0.1,0.7-0.2,1.5-0.3,2.2c-0.1,0.4-0.2,0.5-0.6,0.6c-1.9,0.4-3.8,0.4-5.7,0	c-0.3-0.1-0.4-0.2-0.5-0.5c-0.1-0.9-0.2-1.8-0.4-2.7c0-0.3-0.2-0.4-0.4-0.5c-0.2,0-0.4-0.1-0.5-0.2c-0.6-0.3-1.1-0.3-1.5,0.1	c-0.6,0.5-1.2,0.9-1.8,1.4c-0.3,0.2-0.4,0.2-0.7,0c-1.6-1.1-3-2.5-4.1-4.1c-0.2-0.3-0.2-0.4,0.1-0.7c0.5-0.7,1-1.4,1.6-2.1	c0.3-0.4,0.3-0.4,0-0.8c-0.1-0.1-0.1-0.3-0.1-0.5c-0.1-0.5-0.4-0.8-0.9-0.9C8.8,52,8.4,52,7.9,51.9c-0.4-0.1-0.7-0.1-1.1-0.2	c-0.3-0.1-0.5-0.2-0.5-0.5c-0.3-1.3-0.3-2.7-0.2-4c0-0.5,0.1-1.1,0.2-1.6C5.9,45,6,44.9,6.5,44.8c0.8-0.1,1.7-0.3,2.5-0.4	c0.3,0,0.5-0.2,0.6-0.5c0.1-0.1,0.1-0.2,0.2-0.3c0.3-0.6,0.3-1.2-0.1-1.7c-0.2-0.3-0.4-0.5-0.6-0.8c-0.3-0.3-0.5-0.6-0.7-1	c-0.2-0.3-0.2-0.5,0-0.8c1.1-1.6,2.5-3,4.1-4.1c0.2-0.2,0.4-0.2,0.6,0c0.7,0.5,1.4,1,2.1,1.6c0.3,0.2,0.6,0.3,0.9,0.1	c0.2-0.1,0.3-0.1,0.5-0.2c0.5-0.1,0.8-0.4,0.8-0.9c0.1-0.8,0.2-1.6,0.3-2.4c0-0.4,0.2-0.6,0.6-0.6c1-0.2,2-0.2,3-0.2s2,0.1,2.9,0.3	c0.2,0,0.2,0.1,0.3,0.3c0.1,1,0.3,1.9,0.4,2.9c0,0.2,0.1,0.3,0.2,0.4c0.5,0.3,1,0.5,1.5,0.5c0.2,0,0.3,0,0.5-0.1	c0.7-0.5,1.3-1,2-1.5c0.3-0.3,0.5-0.3,0.8,0c1.6,1.1,2.9,2.4,4,4C34,39.5,34.1,39.7,34.1,39.8z'></path> <path class='gray-mid' d='M14.7,69.8l9.4,3.2c4.4,0.8,8.8,1.9,11.5,1.3c0,0,8.4-2.6,13.2-2.9c0,0,5.8,2.8,10.4,3.5c0,0,4-7.3,1.4-9.2	c-0.5,0.2-7.9-1.6-10.7-2.3C47.8,63,46.1,62,44.2,61c-1.7-0.9-2.6-1.5-4.5-1.7c-1.6-0.2-6.4-0.1-7.9-0.4c-2.9-0.5-4.2-1.3-8.2-2.3	c-0.2-0.1-1.1,0-1.4,0.3c-0.9,0.7-1.8,2.3,1.9,4.3c1.1,0.6,4.7,1.3,6.6,1.5c4.4,0.4,4.1,1.3,4.1,1.4c-1.1,2.9-6.7,2.8-8.2,3.4	L17,67.2c-2.7-2.5-4.5-3.6-5.5-4c-0.7-0.4-1.6-0.5-2-0.2C8.1,64,11.2,66.5,14.7,69.8'></path> <path class='green' d='M67.5,19.5c-0.4,0-0.7,0.3-0.7,0.7v13.3c0,0.3,0.4,0.5,0.7,0.2L76,23.5c0.2-0.3,0.2-0.7-0.1-1	C73.6,20.8,70.7,19.6,67.5,19.5z'></path> <path class='gray-body' d='M80,10c-0.4-0.2-0.5-0.8-0.3-1.2l2.4-3.6c0.2-0.4,0.7-0.5,1.1-0.3c5.1,3.1,9.4,7.3,12.6,12.4	c0.2,0.4,0.1,0.9-0.2,1.1l-3.5,2.7c-0.4,0.3-1,0.2-1.2-0.2C88.3,16.4,84.5,12.7,80,10z'></path> <path class='gray-body' d='M72.1,10.2c-0.4,0-0.6-0.3-0.6-0.7V7.6c0-0.5,0.3-0.8,0.7-0.8H76c0.4,0,0.7-0.3,0.7-0.7V0.7	C76.7,0.3,76.4,0,76,0H57.6c-0.4,0-0.7,0.3-0.7,0.7v5.4c0,0.4,0.3,0.7,0.7,0.7h3.9c0.4,0,0.7,0.4,0.7,0.8v1.9c0,0.3-0.3,0.6-0.6,0.7	c-11.1,2.4-19.5,12.4-19.5,24.4c0,13.7,10.9,24.8,24.6,24.9s24.9-11.1,24.9-24.9C91.6,22.6,83.2,12.6,72.1,10.2z M66.8,53.4	c-10.3,0-18.6-8.4-18.6-18.8c0-10.4,8.3-18.8,18.6-18.8c10.3,0,18.6,8.4,18.6,18.8C85.4,45,77.1,53.4,66.8,53.4z'></path> <path class='gray-body' d='M7.1,32l3.5,0.7c0.5,0.1,0.5,0.9,0,1l-3.5,0.7c-0.2,0-0.4,0.2-0.4,0.4L6,38.3c-0.1,0.5-0.9,0.5-1,0l-0.7-3.5	c0-0.2-0.2-0.4-0.4-0.4l-3.5-0.7c-0.5-0.1-0.5-0.9,0-1L3.9,32c0.2,0,0.4-0.2,0.4-0.4L5,28.1c0.1-0.5,0.9-0.5,1,0l0.7,3.5	C6.7,31.8,6.9,32,7.1,32'></path> <path class='gray-body' d='M16.3,28.7l2.5,0.5c0.4,0.1,0.4,0.6,0,0.7l-2.5,0.5c-0.1,0-0.3,0.1-0.3,0.3l-0.5,2.5c-0.1,0.4-0.6,0.4-0.7,0	l-0.5-2.5c0-0.1-0.1-0.3-0.3-0.3l-2.5-0.5c-0.4-0.1-0.4-0.6,0-0.7l2.5-0.5c0.1,0,0.3-0.1,0.3-0.3l0.5-2.5c0.1-0.4,0.6-0.4,0.7,0	l0.5,2.5C16,28.5,16.1,28.7,16.3,28.7'></path> </svg></div><p>Receive your prototype in as little as 24 hours</p></div><div class='columns small-12 text-center'><a class='button' href='https://ondemand.3dsystems.com/quotations/new/detail'>Start a Quote Now</a></div></div><p class='callout-bottom'><br /><strong>NOTE:</strong> Some orders may need a manual quote from our experts. Upload your model and receive your quote within 24 hours.</p></div></div></div><div class='columns small-12 medium-12 large-3'><div class='callout-box'><div class='callout-header text-center'><h5>Appearance Models</h5></div><div class='callout-content'><div class='row' data-equalizer-watch='odm-callout-box'><div class='columns small-12 medium-6 large-12 text-center'><div><svg id='Layer_1' style='enable-background:new 0 0 114 85;' version='1.1' viewbox='0 0 114 85' x='0px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' y='0px'> <path class='green' d='M79.1,66c8.7,0,16.1-7.3,16.2-15.9c0.1-8.9-7-16.5-16.3-16.6c-8.8-0.1-16.1,7.2-16.2,15.8	C62.7,59,70.5,66.1,79.1,66 M108.3,31.3c0,0.4-0.2,0.7-0.4,1c-1.1,1.5-2.2,3-3.3,4.4c-0.5,0.7-0.5,1.3-0.2,2.1	c0.2,0.4,0.3,0.8,0.4,1.2c0.4,1,1,1.7,2,1.8c1.7,0.2,3.4,0.4,5.1,0.7c1,0.1,1.3,0.3,1.5,1.4c0.5,3,0.7,6,0.4,9	c-0.1,1.2-0.3,2.4-0.5,3.5c-0.1,0.8-0.5,1.1-1.3,1.3c-1.9,0.4-3.8,0.6-5.7,0.8c-0.8,0.1-1,0.4-1.3,1.1c-0.2,0.4-0.3,0.8-0.5,1.2	c-0.5,1.2-0.7,2,0.2,3.1c1.1,1.3,2.2,2.7,3.1,4.1c0.5,0.7,0.5,1.2,0,2c-2.4,3.5-5.5,6.5-9,9c-0.6,0.4-1,0.4-1.7-0.1	c-1.6-1.2-3.2-2.4-4.8-3.6c-0.5-0.4-1-0.5-1.6-0.1c-0.4,0.3-1.2,0.7-1.6,0.9c-1.3,0.7-1.6,0.6-1.7,2c-0.1,1.7-0.3,3.3-0.6,4.9	c-0.2,0.9-0.5,1.2-1.3,1.4c-4.3,0.9-8.5,0.8-12.8,0c-0.8-0.1-1-0.4-1.1-1.2c-0.3-2-0.6-4.1-0.8-6.1c-0.1-0.6-0.4-0.9-0.9-1.1	c-0.4-0.1-0.8-0.3-1.2-0.5c-1.3-0.7-2.4-0.7-3.5,0.3c-1.3,1.1-2.7,2.1-4,3.1c-0.7,0.5-0.9,0.5-1.6,0c-3.6-2.5-6.7-5.6-9.3-9.3	c-0.4-0.6-0.4-1,0.1-1.7c1.2-1.6,2.3-3.1,3.5-4.7c0.6-0.8,0.6-0.9,0.1-1.8c-0.2-0.3-0.3-0.7-0.3-1c-0.2-1.2-0.9-1.9-2.1-2.1	c-1-0.2-2.1-0.2-3.1-0.4c-0.8-0.2-1.6-0.3-2.4-0.4c-0.6-0.1-1-0.5-1.2-1.2c-0.6-3-0.7-6-0.5-9c0.1-1.2,0.3-2.4,0.5-3.5	c0.2-1,0.4-1.3,1.4-1.4c1.9-0.3,3.8-0.6,5.7-0.9c0.6-0.1,1-0.5,1.3-1c0.1-0.2,0.3-0.5,0.4-0.7c0.7-1.3,0.6-2.6-0.1-3.9	c-0.4-0.6-0.9-1.1-1.4-1.7c-0.6-0.7-1.1-1.5-1.7-2.2c-0.5-0.6-0.5-1.1,0-1.8c2.5-3.6,5.6-6.6,9.1-9.1c0.5-0.4,0.8-0.4,1.4,0.1	c1.5,1.2,3.1,2.3,4.6,3.5c0.7,0.5,1.2,0.5,2,0.2c0.4-0.1,0.8-0.3,1.2-0.4c1.1-0.4,1.7-0.9,1.9-2.1c0.2-1.8,0.5-3.5,0.7-5.3	c0.1-1,0.3-1.2,1.3-1.4c2.3-0.3,4.5-0.5,6.8-0.5c2.2,0,4.4,0.2,6.6,0.7c0.4,0.1,0.5,0.2,0.6,0.6c0.3,2.2,0.6,4.3,0.9,6.5	c0.1,0.4,0.2,0.7,0.5,1c1.1,0.6,2.2,1,3.5,1.1c0.4,0,0.7-0.1,1-0.3c1.5-1.1,3-2.2,4.4-3.4c0.7-0.6,1.1-0.6,1.9-0.1	c3.5,2.5,6.5,5.5,9,9C108.1,30.7,108.3,30.9,108.3,31.3'></path> <path class='gray-mid' d='M42.4,13.7l7.8,1.6c1.2,0.2,1.2,2,0,2.2l-7.8,1.6c-0.4,0.1-0.8,0.4-0.9,0.9l-1.6,7.8c-0.2,1.2-2,1.2-2.2,0	L36.1,20c-0.1-0.4-0.4-0.8-0.9-0.9l-7.8-1.6c-1.2-0.2-1.2-2,0-2.2l7.8-1.6c0.4-0.1,0.8-0.4,0.9-0.9L37.7,5c0.2-1.2,2-1.2,2.2,0	l1.6,7.8C41.6,13.3,41.9,13.6,42.4,13.7'></path> <path class='gray-mid' d='M63.7,6.8L69.3,8c0.9,0.2,0.9,1.4,0,1.6l-5.6,1.1c-0.3,0.1-0.6,0.3-0.6,0.6L62,16.9c-0.2,0.9-1.4,0.9-1.6,0	l-1.1-5.6c-0.1-0.3-0.3-0.6-0.6-0.6l-5.6-1.1c-0.9-0.2-0.9-1.4,0-1.6l5.6-1.1c0.3-0.1,0.6-0.3,0.6-0.6l1.1-5.6	c0.2-0.9,1.4-0.9,1.6,0l1.1,5.6C63.1,6.5,63.4,6.8,63.7,6.8'></path> <path class='gray-body' d='M12.1,15.8l18.3,18.3l-10,10L2.1,25.8c-2.8-2.8-2.8-7.2,0-10C4.8,13,9.3,13,12.1,15.8'></path> <path class='gray-body' d='M31.3,55l-7.6-7.6l10-10l7.6,7.6C36.6,46.5,32.8,50.3,31.3,55'></path> <path class='gray-body' d='M45.4,49.1L45.4,49.1c0.2,0,0.4-0.1,0.6-0.1c5.9,0,10.6,4.7,10.6,10.6c0.3,4.4,2.4,7.6,6.2,9.5	c0.8,0.4,0.6,1.5-0.2,1.8c-7,2.8-12.9,2.1-17.7,1c-7.3-1.8-9.7-8.4-9.4-13.2C35.7,53.7,40,49.4,45.4,49.1'></path> <path class='white' d='M51,60.7c1.9,2.1,3.1-1.8,3.1,0.8c0.2,3,1.7,6.4,4.5,7.5c0.2,0.1,0.2,0.4,0,0.5c-4.9,1.6-8.5,1.3-11.9,0.2	c-2.2-0.5-3.9-2-4.9-3.5c-1-1.6,0.7-4.1,2.5-3.4c2.6,1.1,3.4,0,3.5-1C48.1,60.1,50.2,59.9,51,60.7z'></path> </svg></div></div><div class='columns small-12 medium-6 large-12 text-center'><p>Interested in appearance models? Give us a call and we’ll start your order now.</p></div></div><p class='callout-bottom text-center'><strong>CONTACT US</strong><br /><span class='SL_Swap' id='smartling-odm-contact-menu-appearance-models'><a href='tel:17709013200'>770-901-3200</a> or<br /><a href='mailto:Quickparts.quote@3dsystems.com'>send us an email</a></span></p></div></div></div></div></div>
                                                        </div>
                        

                    
        
    

                                </li>
                                                        <li class="has-dropdown large-3" link_class="on-demand-manufacturing-1"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="quickparts-rapid-prototyping--on-demand-manufacturing-fast-turn-prototyping" >

                    <a href="/on-demand-manufacturing/fast-turn-prototyping" class="top-nav-link">Quickparts Rapid Prototyping</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="advanced-prototyping--on-demand-manufacturing-advanced-prototyping" >

                    <a href="/on-demand-manufacturing/advanced-prototyping" class="top-nav-link">Advanced Prototyping</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="low-volume-production--on-demand-manufacturing-low-volume-production-manufacturing" >

                    <a href="/on-demand-manufacturing/low-volume-production-manufacturing" class="top-nav-link">Low-Volume Production</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="appearance-models--on-demand-manufacturing-appearance-models" >

                    <a href="/on-demand-manufacturing/appearance-models" class="top-nav-link">Appearance Models</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/on-demand-manufacturing">All Quickparts – On Demand</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                                    
                            <li class="has-dropdown" link_class="resources--resources" data-equalizer="nav-dropdown" data-equalizer-mq="large-up">

                    <a href="/resources" class="top-nav-link">Resources</a>
                                                                    <ul class="dropdown row">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Resources</a>
                                </h5>
                            </li>
                                                            <li class="link-about large-9 show-for-large-up">
                                    <div class="resources--resources link-about-item item-full-width">
                                        <h3>Resources</h3>
                                                                                    <img class="lazy right" data-image="/sites/default/files/inline-images/3d-systems-bolton-works-engine-in-design-x-menu.jpg" />
                                                                                                                            <div class="mega-content"><p>Explore our customer stories, blog, videos and archived webinars to learn more about how our customers are optimizing their designs, transforming their workflows, bringing innovative products to market and driving new business models.</p></div>
                                                                                                                        <a class="button blue top-nav-link" href="/resources"
                                           target="">Learn more</a>
                                                                            </div>
                                            
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="webinars--webinars link-about-item item-full-width">
                    <h3>Webinars</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/laptop-and-cofeshop-menu.jpg" />
                                                                <div class="mega-content"><p>View our webinar recordings to learn more about customer applications, solutions and our products and services.</p></div>
                                                                <a class="button blue top-nav-link" href="/webinars" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="events--news-events link-about-item item-full-width">
                    <h3>Events</h3>
                                                                <div class="mega-content"><p><img alt='IMTS events menu' data-align='right' data-entity-type='file' data-entity-uuid='05c3c4ed-7a54-439a-83d1-449f8f26d85b' src='/sites/default/files/inline-images/events-menu.jpg' />3D Systems takes part in many different marketing events on a regular basis. These range from trade shows to seminars and online webinars. We also participate indirectly in a host of other engagements. 3D Systems is represented via our extensive reseller network at many events.</p></div>
                                                                <a class="button blue top-nav-link" href="/news/events" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="customer-stories--case-studies link-about-item item-full-width">
                    <h3>Customer Stories</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/3d-systems-renault-sport-formula-one-car-customer-story-nav-img.jpg" />
                                                                <div class="mega-content"><p>Find out how customers are transforming their design and manufacturing processes with solutions ranging from digitization, design and simulation through manufacturing, inspection and management.</p></div>
                                                                <a class="button blue top-nav-link" href="/case-studies" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="blog--blog link-about-item item-full-width">
                    <h3>Blog</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/blog-menu.jpg" />
                                                                <div class="mega-content"><p>Keep up-to-date with the latest customer applications, innovations and insights in digital design and manufacturing.</p></div>
                                                                <a class="button blue top-nav-link" href="/blog" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="video-gallery--video-gallery link-about-item item-full-width">
                    <h3>Video Gallery</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/video-menu.jpg" />
                                                                <div class="mega-content"><p>View our videos to learn more about our customer applications and solutions. Sort by industry or application.</p></div>
                                                                <a class="button blue top-nav-link" href="/video/gallery" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                </li>
                                                        <li class="has-dropdown large-3" link_class="resources--resources"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="webinars--webinars" >

                    <a href="/webinars" class="top-nav-link">Webinars</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="events--news-events" >

                    <a href="/news/events" class="top-nav-link">Events</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="customer-stories--case-studies" >

                    <a href="/case-studies" class="top-nav-link">Customer Stories</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="blog--blog" >

                    <a href="/blog" class="top-nav-link">Blog</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="video-gallery--video-gallery" >

                    <a href="/video/gallery" class="top-nav-link">Video Gallery</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/resources">All Resources</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                                    
                            <li class="has-dropdown" link_class="support--support" data-equalizer="nav-dropdown" data-equalizer-mq="large-up">

                    <a href="/support" class="top-nav-link">Support</a>
                                                                    <ul class="dropdown row">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Support</a>
                                </h5>
                            </li>
                                                            <li class="link-about large-9 show-for-large-up">
                                    <div class="support--support link-about-item item-full-width">
                                        <h3>Support</h3>
                                                                                    <img class="lazy right" data-image="/sites/default/files/2017-08/3d-systems-printer-support-nav.jpg" />
                                                                                                                            <div class="mega-content"><p>We are committed to providing the highest level of support and service to our customers. Connect with the right expert for your product and services.</p></div>
                                                                                                                        <a class="button blue top-nav-link" href="/support"
                                           target="">Learn more</a>
                                                                            </div>
                                            
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="_d-printers--support-3d-printers link-about-item item-full-width">
                    <h3>3D Printers</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/hardware-support-menu.jpg" />
                                                                <div class="mega-content"><p>Link to our support portal community, contact us for service, get the latest software downloads, user manuals and more.</p></div>
                                                                <a class="button blue top-nav-link" href="/support/3d-printers" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="software--support-software link-about-item item-full-width">
                    <h3>Software</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/software-support-menu.jpg" />
                                                                <div class="mega-content"><p>Connect with our support portal, search through the knowledge base, download the latest versions, request support, training and more.</p></div>
                                                                <a class="button blue top-nav-link" href="/support/software" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="healthcare--support-healthcare link-about-item item-full-width">
                    <h3>Healthcare</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/healthcare-support-menu.jpg" />
                                                                <div class="mega-content"><p>Our customer service and technical support teams for simulation, surgical planning and medical device manufacturing are committed to the highest levels of service. This support is available in real time via telephone, email or the web.</p></div>
                                                                <a class="button blue top-nav-link" href="/support/healthcare" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="on-demand-manufacturing--support-on-demand-manufacturing link-about-item item-full-width">
                    <h3>On Demand Manufacturing</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/on-demand-manufacturing-services-support-menu_1.png" />
                                                                <div class="mega-content"><p>With a global team of experts to support your manufacturing needs, we are committed to customer success and delivering quality, innovation and reliability.</p></div>
                                                                <a class="button blue top-nav-link" href="/support/on-demand-manufacturing" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="creative-services--support-creative-services link-about-item item-full-width">
                    <h3>Creative Services</h3>
                                            <img class="lazy right" data-image="/sites/default/files/inline-images/creative-services-support.jpg" />
                                                                <div class="mega-content"><p>We are committed to doing our utmost to provide our clients with support and assistance.</p></div>
                                                                <a class="button blue top-nav-link" href="/support/creative-services" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="materials-support--support-materials-sds link-about-item item-full-width">
                    <h3>Materials Support</h3>
                                                                <div class="mega-content"><p>Find support information on our 3D printer materials and our safety data sheets (SDS).</p></div>
                                                                <a class="button blue top-nav-link" href="/support/materials/sds" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                </li>
                                                        <li class="has-dropdown large-3" link_class="support--support"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="_d-printers--support-3d-printers" >

                    <a href="/support/3d-printers" class="top-nav-link">3D Printers</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="software--support-software" >

                    <a href="/support/software" class="top-nav-link">Software</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="healthcare--support-healthcare" >

                    <a href="/support/healthcare" class="top-nav-link">Healthcare</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="on-demand-manufacturing--support-on-demand-manufacturing" >

                    <a href="/support/on-demand-manufacturing" class="top-nav-link">On Demand Manufacturing</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="creative-services--support-creative-services" >

                    <a href="/support/creative-services" class="top-nav-link">Creative Services</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="materials-support--support-materials-sds" >

                    <a href="/support/materials/sds" class="top-nav-link">Materials Support</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/support">All Support</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                                    
                            <li class="has-dropdown" link_class="how-to-buy--how-to-buy" data-equalizer="nav-dropdown" data-equalizer-mq="large-up">

                    <a href="/how-to-buy" class="top-nav-link">How to Buy</a>
                                                                    <ul class="dropdown row">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">How to Buy</a>
                                </h5>
                            </li>
                                                            <li class="link-about large-9 show-for-large-up">
                                    <div class="how-to-buy--how-to-buy link-about-item item-full-width">
                                        <h3>How to Buy</h3>
                                                                                    <img class="lazy right" data-image="/sites/default/files/inline-images/how-to-buy-menu.png" />
                                                                                                                            <div class="mega-content"><p>Contact us for more information on buying our 3D printers, materials, software, services, scanners and haptics and healthcare solutions.</p></div>
                                                                                                                        <a class="button blue top-nav-link" href="/how-to-buy"
                                           target="">Learn more</a>
                                                                            </div>
                                            
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="_d-printers--how-to-buy-3d-printers link-about-item item-full-width">
                    <h3>3D Printers</h3>
                                                                <div class="mega-content"><p>From plastics to metals, a 3D printer can open up new possibilities in digital manufacturing and workflows. Our printer sales are handled via an extensive global partner network and our channel managers.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/3d-printers" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="_d-printer-materials-https--www3dsystemscom-shop-cartridges link-about-item item-offset-1">
                    <h3>3D Printer Materials</h3>
                                                                <div class="mega-content"><p>Our professional and production 3D printer materials are sold through our extensive global partner network.</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="legacy-desktop-materials-https--www3dsystemscom-shop-cartridges link-about-item item-offset-1">
                    <h3>Legacy Desktop Materials</h3>
                                                                <div class="mega-content"><p>For materials for our legacy desktop 3D printers, visit our shop site to order online.</p></div>
                                                                <a class="button blue top-nav-link" href="https://www.3dsystems.com/shop/cartridges" target="_blank">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="scanners-and-haptics--how-to-buy-scanners-haptics link-about-item item-offset-1">
                    <h3>Scanners and Haptics</h3>
                                                                <div class="mega-content"><p>Scan and capture the real world into 3D data with the Sense and Capture scanners coupled with powerful scan software to deliver both precision and ease-of-use.</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="capture-scanner--how-to-buy-geomagic-capture link-about-item item-offset-1">
                    <h3>Capture Scanner</h3>
                                                                <div class="mega-content"><p>Bring physical objects directly into CAD, supercharge your product development process, and automate precise 3D inspection with Geomagic Capture - the powerful, integrated, industrial-grade 3D scanner and software system.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/geomagic-capture" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="sense-scanner-https--www3dsystemscom-shop-sense-order link-about-item item-offset-1">
                    <h3>Sense Scanner</h3>
                                                                <div class="mega-content"><p>Our Sense scanner is sold online through our 3dsystems.com shop site.</p></div>
                                                                <a class="button blue top-nav-link" href="https://www.3dsystems.com/shop/sense/order" target="_blank">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="touch-haptic--how-to-buy-geomagic-touch link-about-item item-offset-1">
                    <h3>Touch Haptic</h3>
                                                                <div class="mega-content"><p>Feel the power of digital sculpting with the haptic devices by 3D Systems and develop your own haptic applications with the advanced Phantom haptics and OpenHaptics toolkit.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/geomagic-touch" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="touch-x-haptic--how-to-buy-geomagic-touch-x link-about-item item-offset-1">
                    <h3>Touch X Haptic</h3>
                                                                <div class="mega-content"><p>The Touch X haptic device&nbsp;allow users to&nbsp;<em>feel</em>&nbsp;3D on-screen objects by applying force feedback on the user’s hand, and the Touch X delivers expanded true-to-life sensations with a more fluid feel and lower friction.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/geomagic-touch-x" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="software--how-to-buy-software link-about-item item-offset-1">
                    <h3>Software</h3>
                                                                <div class="mega-content"><p>3D Systems offers a comprehensive line of software solutions that cover everything from scanning to part and tool design to subtractive and additive manufacturing and inspection. Use our software solutions to increase your productivity, shorten your delivery time, and get quality results.</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="geomagic-design-and-inspection-software--how-to-buy-software-geomagic link-about-item item-offset-1">
                    <h3>Geomagic Design and Inspection Software</h3>
                                                                <div class="mega-content"><p>Geomagic Design X is the industry's most comprehensive reverse engineering software, combines history-based CAD with 3D scan data processing so you can create feature-based, editable solid models compatible with your existing CAD software.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/software/geomagic" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="cimatron-cad-cam-software--how-to-buy-software-cimatron link-about-item item-offset-1">
                    <h3>Cimatron CAD/CAM Software</h3>
                                                                <div class="mega-content"><p>Dramatically increase your productivity, competitiveness and profitability with a wide range of dedicated applicative tools as well as full range of CNC technologies from simple 2.5 axis milling and drilling to complex 5-axis machining.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/software/cimatron" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="gibbscam-production-software--how-to-buy-software-gibbscam link-about-item item-offset-1">
                    <h3>GibbsCAM Production Software</h3>
                                                                <div class="mega-content"><p>GibbsCAM is a full-featured CAM system that provides powerful CNC programming capabilities without sacrificing ease of use.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/software/gibbscam" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="_dxpert-metal-additive-manufacturing-software--how-to-buy-software-3dxpert link-about-item item-offset-1">
                    <h3>3DXpert Metal Additive Manufacturing Software</h3>
                                                                <div class="mega-content"><p>Use an integrated solution to address all your metal 3D printing needs. Prepare and optimize parts for printing quickly and easily and print quality parts in record time.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/software/3dxpert" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="_d-sprint-for-plastic-3d-printing--how-to-buy-software-3d-sprint link-about-item item-offset-1">
                    <h3>3D Sprint for Plastic 3D Printing</h3>
                                                                <div class="mega-content"><p>Experience true productivity with exclusive additive manufacturing software for 3D Systems Plastic Printers.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/software/3d-sprint" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="quickparts-–-on-demand-manufacturing-services--how-to-buy-on-demand-manufacturing link-about-item item-full-width">
                    <h3>Quickparts – On Demand Manufacturing Services</h3>
                                                                <div class="mega-content"><p>On Demand Manufacturing Services&nbsp;(Quickparts)&nbsp;has changed the way product development and manufacturing professionals source custom-designed parts. Get instant, custom generated quotes for the production of parts, anywhere in the world.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/on-demand-manufacturing" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="healthcare-solutions--how-to-buy-healthcare-solutions link-about-item item-offset-1">
                    <h3>Healthcare solutions</h3>
                                                                <div class="mega-content"><p>3D Systems helps improve patient outcomes through 3D printing, training simulators, surgical planning and personalized medical technologies.</p></div>
                                                        </div>
                        
        
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                                                                
                <div class="medical-simulators--how-to-buy-medical-simulators link-about-item item-offset-1">
                    <h3>Medical Simulators</h3>
                                                                <div class="mega-content"><p>3D Systems' product line is at the forefront of virtual reality medical simulation. The training simulators offer clinicians the most realistic, hands-on experience to master critical skills to ensure procedural efficiency without patient risk.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/medical-simulators" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="virtual-surgical-planning-vsp--how-to-buy-virtual-surgical-planning link-about-item item-offset-1">
                    <h3>Virtual Surgical Planning (VSP)</h3>
                                                                <div class="mega-content"><p>3D Systems Virtual Surgical Planning (VSP®) technology is a market cleared, service based approach to personalized surgery, combining expertise in medical imaging, surgical simulation, and 3D printing.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/virtual-surgical-planning" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="anatomical-models--how-to-buy-anatomical-models link-about-item item-offset-1">
                    <h3>Anatomical Models</h3>
                                                                <div class="mega-content"><p>Using medical image data, 3D Systems services use different additive manufacturing processes and materials to produce physical anatomical models, with the option to sterilize for reference during surgery.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/anatomical-models" target="">Learn
                            more</a>
                                    </div>
                        

                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                                                                
                <div class="medical-device-manufacturing--how-to-buy-medical-device-manufacturing link-about-item item-offset-1">
                    <h3>Medical Device Manufacturing</h3>
                                                                <div class="mega-content"><p>Our Medical Device Manufacturing services combine our expertise and Direct Metal Printing capabilities for prototyping, trial series, and large volume manufacturing for implants and instrumentation used for orthopedic, spinal, CMF, dental, and veterinary applications.</p></div>
                                                                <a class="button blue top-nav-link" href="/how-to-buy/medical-device-manufacturing" target="">Learn
                            more</a>
                                    </div>
                        

                    
        
    

                    
        
    

                                </li>
                                                        <li class="has-dropdown large-3" link_class="how-to-buy--how-to-buy"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="_d-printers--how-to-buy-3d-printers" >

                    <a href="/how-to-buy/3d-printers" class="top-nav-link">3D Printers</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="_d-printer-materials-https--www3dsystemscom-shop-cartridges" >

                    <a href="https://www.3dsystems.com/shop/cartridges" class="top-nav-link">3D Printer Materials</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">3D Printer Materials</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="_d-printer-materials-https--www3dsystemscom-shop-cartridges"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="legacy-desktop-materials-https--www3dsystemscom-shop-cartridges" >

                    <a href="https://www.3dsystems.com/shop/cartridges" class="top-nav-link">Legacy Desktop Materials</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="https://www.3dsystems.com/shop/cartridges">All 3D Printer Materials</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="scanners-and-haptics--how-to-buy-scanners-haptics" >

                    <a href="/how-to-buy/scanners-haptics" class="top-nav-link">Scanners and Haptics</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Scanners and Haptics</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="scanners-and-haptics--how-to-buy-scanners-haptics"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="capture-scanner--how-to-buy-geomagic-capture" >

                    <a href="/how-to-buy/geomagic-capture" class="top-nav-link">Capture Scanner</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="sense-scanner-https--www3dsystemscom-shop-sense-order" >

                    <a href="https://www.3dsystems.com/shop/sense/order" class="top-nav-link">Sense Scanner</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="touch-haptic--how-to-buy-geomagic-touch" >

                    <a href="/how-to-buy/geomagic-touch" class="top-nav-link">Touch Haptic</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="touch-x-haptic--how-to-buy-geomagic-touch-x" >

                    <a href="/how-to-buy/geomagic-touch-x" class="top-nav-link">Touch X Haptic</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/how-to-buy/scanners-haptics">All Scanners and Haptics</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="software--how-to-buy-software" >

                    <a href="/how-to-buy/software" class="top-nav-link">Software</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Software</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="software--how-to-buy-software"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="geomagic-design-and-inspection-software--how-to-buy-software-geomagic" >

                    <a href="/how-to-buy/software/geomagic" class="top-nav-link">Geomagic Design and Inspection Software</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="cimatron-cad-cam-software--how-to-buy-software-cimatron" >

                    <a href="/how-to-buy/software/cimatron" class="top-nav-link">Cimatron CAD/CAM Software</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="gibbscam-production-software--how-to-buy-software-gibbscam" >

                    <a href="/how-to-buy/software/gibbscam" class="top-nav-link">GibbsCAM Production Software</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="_dxpert-metal-additive-manufacturing-software--how-to-buy-software-3dxpert" >

                    <a href="/how-to-buy/software/3dxpert" class="top-nav-link">3DXpert Metal Additive Manufacturing Software</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="_d-sprint-for-plastic-3d-printing--how-to-buy-software-3d-sprint" >

                    <a href="/how-to-buy/software/3d-sprint" class="top-nav-link">3D Sprint for Plastic 3D Printing</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/how-to-buy/software">All Software</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="quickparts-–-on-demand-manufacturing-services--how-to-buy-on-demand-manufacturing" >

                    <a href="/how-to-buy/on-demand-manufacturing" class="top-nav-link">Quickparts – On Demand Manufacturing Services</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li class="has-dropdown" link_class="healthcare-solutions--how-to-buy-healthcare-solutions" >

                    <a href="/how-to-buy/healthcare-solutions" class="top-nav-link">Healthcare solutions</a>
                                                                    <ul class="dropdown">

                            <li class="title back hide-for-large-up">
                                <h5>
                                    <a href="javascript:void(0);">Healthcare solutions</a>
                                </h5>
                            </li>
                                                        <li class="has-dropdown" link_class="healthcare-solutions--how-to-buy-healthcare-solutions"">
                                    
                                    <ul class="menu nav-bar" data-equalizer-watch="nav-dropdown">
                    
                                                                                                                                                                                                                                                                                                                                    

            
                                                                                                
                            <li link_class="medical-simulators--how-to-buy-medical-simulators" >

                    <a href="/how-to-buy/medical-simulators" class="top-nav-link">Medical Simulators</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="virtual-surgical-planning-vsp--how-to-buy-virtual-surgical-planning" >

                    <a href="/how-to-buy/virtual-surgical-planning" class="top-nav-link">Virtual Surgical Planning (VSP)</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="anatomical-models--how-to-buy-anatomical-models" >

                    <a href="/how-to-buy/anatomical-models" class="top-nav-link">Anatomical Models</a>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                
                            <li link_class="medical-device-manufacturing--how-to-buy-medical-device-manufacturing" >

                    <a href="/how-to-buy/medical-device-manufacturing" class="top-nav-link">Medical Device Manufacturing</a>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/how-to-buy/healthcare-solutions">All Healthcare solutions</a>
                            </li>
                        </ul>
                                    </li>
                    
                                    </ul>
                    
    

                            </li>
                            <li class="parent-link hide-for-large-up">
                                <a class="parent-link top-nav-link" href="/how-to-buy">All How to Buy</a>
                            </li>
                        </ul>
                                    </li>
                                                                                                                                                                                                                                                                                                                                                

            
                                                                                                                    
                            <li link_class="contact-us--contact" data-equalizer="nav-dropdown" data-equalizer-mq="large-up">

                    <a href="/contact" class="top-nav-link">Contact Us</a>
                                    </li>
                    
                                    <li class="nav-arrow-rail"><span></span></li>
                </ul>
                    
    

                            </section>
        </nav>
    </div>




  </nav>

<section class="views-element-container block-views-block-smart-banner-block-1 clearfix" id="block-views-block-smart-banner-block-1">
    
    
                                    


    


                                                            
    
            <div class="view-mode-top_banner">
            <section class="view-mode-top_banner banner-photo-video light has-background">
                <div class="banner-container">
                    <div class="banner-background background-fade ">
                        <div>
                                                                    

<div class="banner-image-container" data-interchange="[/sites/default/files/styles/scale_width_640px_/public/2017-02/laptop-and-cofeshop-topbanner.jpg?itok=IrmU7Qvx, (small)], [/sites/default/files/styles/scale_width_1024px_/public/2017-02/laptop-and-cofeshop-topbanner.jpg?itok=TrtE3rXn, (medium)], [/sites/default/files/styles/scale_width_1440px_/public/2017-02/laptop-and-cofeshop-topbanner.jpg?itok=SFA5aU9G, (large)], [/sites/default/files/styles/scale_crop_1920_/public/2017-02/laptop-and-cofeshop-topbanner.jpg?itok=d0nU0IS1, (xlarge)]"></div>

                    
                        </div>
                    </div>
                                            <div class="banner-content">
                            <div class="row tbl-fixed">
                                <div class="columns large-6">
                                    <div class="banner-text">
                                                <h1>Our Blog</h1>
                <p>Keep up-to-date with the latest customer applications, innovations and insights in digital design and manufacturing. </p>
        
                                    </div>
                                </div>
                                                            </div>
                        </div>
                                        <div class="banner-ornaments banner-ornaments-left svg-container">
                        <div class="svg-container-inner">
                            <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg"
                                 viewBox="0 0 301 175">
                                <title>bottom-left-triangles</title>
                                <polygon id="green_40cc8f_triangle" data-name="green 40cc8f triangle" class="green-left"
                                         points="0 0 0 175 87.07 146.2 0 0"/>
                                <polygon id="blue_287deb_triangle-2" data-name="blue 287deb triangle-2"
                                         class="lightblue-left" points="0 122.08 0 65.58 300.32 122.08 0 122.08"/>
                                <polygon id="gray_triangle_copy" data-name="gray triangle copy" class="gray-left"
                                         points="0 122.08 0 175 160 122.08 0 122.08"/>
                                <polygon id="orange_triangle" data-name="orange triangle" class="orange-left"
                                         points="0 175 0 25 40 161.8 0 175"/>
                            </svg>
                        </div>
                    </div>
                    <div class="banner-ornaments banner-ornaments-right svg-container">
                        <div class="svg-container-inner">
                            <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
                                 xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
                                 viewBox="511.3 680.5 100.7 94.3" enable-background="new 511.3 680.5 100.7 94.3"
                                 xml:space="preserve">
                          <polygon class="lightblue-right" points="511.3,735.8 612,735.8 612,680.5 "/>
                                <path class="bluegreen-right" d="M612,751v-15.2h-86.5L612,751z"/>
                                <polygon class="green-right"
                                         points="552.7,713.2 574.5,735.8 612,774.8 612,735.8 612,680.5 "/>
                      </svg>
                        </div>
                    </div>
                </div>

            </section>
        </div>
    
                    
        
    </section>

  </div>

                                
        <header class="row" role="banner" aria-label="Site header">
                    </header>

                    <div id="region-header" class="row">
                <div class="large-12 columns">
                      <div>
    <section id="block-ddd-breadcrumbs" class="block-ddd-breadcrumbs clearfix">
  
  
    

  
            <nav role="navigation" aria-labelledby="system-breadcrumb">
    <h2 id="system-breadcrumb" class="visually-hidden">You are here</h2>
    <ul class="breadcrumbs">
          <li>
                  <a href="/resources">Resources</a>
              </li>
          <li class="current"><a href="#">Our Blog</a></li>
    </ul>
  </nav>

    
    
  </section>

  </div>

                </div>
            </div>
        
        <div class="row">
                                            </div>

        
        
        <div class="row" >
            <main id="main" class="large-12 columns" role="main" >

                                    <div class="region-highlighted panel callout"></div>                                <a id="main-content"></a>
                                <section>
                    <div id="region-tertiary-nav">
                          <div>
    




<section id="block-product-navigation" class="block-product-navigation " data-equalizer="tert-nav-container" data-equalizer-mq="large-up">
    
        <div id="sticky-bottom-nav"  class="sticky-bottom static-first" data-equalizer-watch="tert-nav-container">
        
        <div class="row">

            <div class="large-12 columns tert-nav-list">

                <ul class="links-list" data-link-count="4" data-equalizer="tert-nav" data-equalizer-mq="large-up">
                                            <li><a href="/press-releases" class="tert-nav-link " target="" data-equalizer-watch="tert-nav">Press Releases</a></li>
                                            <li><a href="/video/gallery" class="tert-nav-link " target="" data-equalizer-watch="tert-nav">Video Gallery</a></li>
                                            <li><a href="/blog" class="tert-nav-link  selected" target="" data-equalizer-watch="tert-nav">Blog</a></li>
                                            <li><a href="/press-room/leadership-team" class="tert-nav-link " target="" data-equalizer-watch="tert-nav">Leadership Team</a></li>
                                    </ul>

            </div>

            <div class="large-12 columns tert-nav-active-page hide-for-large-up">

                <ul>
                                            <li><a href="#" class="tert-nav-link " target="">Press Releases</a></li>
                                            <li><a href="#" class="tert-nav-link " target="">Video Gallery</a></li>
                                            <li><a href="#" class="tert-nav-link  selected" target="">Blog</a></li>
                                            <li><a href="#" class="tert-nav-link " target="">Leadership Team</a></li>
                                    </ul>

            </div>

        </div>

            </div>
    <div class="tertiary-placeholder" data-equalizer-watch="tert-nav-container"></div>
    
    </section>

  </div>

                    </div>

                    <div id="region-content">
                          <div>
    <section id="block-ddd-content" class="block-ddd-content clearfix">
  
  
    

  
          <article id="node-35041"  data-history-node-id="35041" role="article" about="/blog" typeof="schema:WebPage">

  
  

                        
  
    <div class="view-mode-full">
    
  </div>

  
  
  
</article>

    
    
  </section>


<section id="blog-post-related" data-equalizer>
    <div data-equalizer="blog-post">
        <div><div class="ddd-filters js-view-dom-id-dda0b9326daad004dec5fcf96cc7c1cafae41824feec270c30f027f0da4fe9ed">
  
  
  

  
  <form class="views-exposed-form" data-drupal-selector="views-exposed-form-content-list-related-blog-posts" action="/blog" method="get" id="views-exposed-form-content-list-related-blog-posts" accept-charset="UTF-8">
  

<div class="js-form-item form-item js-form-type-select form-item-field-industries-target-id js-form-item-field-industries-target-id form-no-label">
        
<select data-drupal-selector="edit-field-industries-target-id" id="edit-field-industries-target-id" name="field_industries_target_id" class="form-select"><option value="All" selected="selected" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="All Industries">All Industries</option><option value="111" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Teaching &amp; Training">Teaching &amp; Training</option><option value="81" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Aerospace &amp; Defense">Aerospace &amp; Defense</option><option value="641" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Archeology">Archeology</option><option value="226" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Architecture">Architecture</option><option value="636" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Art">Art</option><option value="96" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Automotive">Automotive</option><option value="101" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Durable Goods">Durable Goods</option><option value="91" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Entertainment">Entertainment</option><option value="236" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Foundries">Foundries</option><option value="116" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Healthcare">Healthcare</option><option value="231" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Jewelry">Jewelry</option><option value="241" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Mining">Mining</option></select>
        </div>


<div class="js-form-item form-item js-form-type-select form-item-field-technologies-target-id js-form-item-field-technologies-target-id form-no-label">
        
<select data-drupal-selector="edit-field-technologies-target-id" id="edit-field-technologies-target-id" name="field_technologies_target_id" class="form-select"><option value="All" selected="selected" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="All Technologies">All Technologies</option><option value="571" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="3D Printing">3D Printing</option><option value="446" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Direct Metal Printing (DMP)">-Direct Metal Printing (DMP)</option><option value="451" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Stereolithography (SLA)">-Stereolithography (SLA)</option><option value="456" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Selective Laser Sintering (SLS)">-Selective Laser Sintering (SLS)</option><option value="461" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-MultiJet Printing (MJP)">-MultiJet Printing (MJP)</option><option value="466" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-ColorJet Printing (CJP)">-ColorJet Printing (CJP)</option><option value="471" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-PlasticJet Printing (PJP)">-PlasticJet Printing (PJP)</option><option value="476" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Entry-Level Industrial (DLP)">-Entry-Level Industrial (DLP)</option><option value="1301" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Figure 4">-Figure 4</option><option value="576" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Investment Casting">Investment Casting</option><option value="581" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-QuickCast Patterns">-QuickCast Patterns</option><option value="586" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-ProJet Patterns">-ProJet Patterns</option><option value="591" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-CastForm Patterns">-CastForm Patterns</option><option value="596" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Low Volume Tooling &amp; Parts">Low Volume Tooling &amp; Parts</option><option value="601" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-CNC Machining">-CNC Machining</option><option value="606" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-QuickSheet Metal">-QuickSheet Metal</option><option value="611" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Injection Mold Tooling">-Injection Mold Tooling</option><option value="616" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Metal Die Casting">-Metal Die Casting</option><option value="621" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Cast Urethane">-Cast Urethane</option><option value="626" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-QuickMold Tooling">-QuickMold Tooling</option><option value="631" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Rapid Injection Molded Parts">-Rapid Injection Molded Parts</option><option value="721" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Software">Software</option><option value="736" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-3D Printing software">-3D Printing software</option><option value="731" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Design Software">-Design Software</option><option value="741" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Manufacturing software">-Manufacturing software</option><option value="746" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Inspection software">-Inspection software</option><option value="751" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-Healthcare software">-Healthcare software</option><option value="726" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="-3D Scanning software">-3D Scanning software</option><option value="766" data-area-of-interest="" data-product-type="" data-not-product-type="" data-product-bu="" data-label="Medical Simulator">Medical Simulator</option></select>
        </div>


<div class="js-form-item form-item js-form-type-textfield form-item-title js-form-item-title form-no-label">
        <input data-drupal-selector="edit-title" type="text" id="edit-title" name="title" value="" size="30" maxlength="128" class="form-text" />

        </div>
<div data-drupal-selector="edit-actions" class="form-actions js-form-wrapper form-wrapper" id="edit-actions"><input class="success button radius js-form-submit form-submit" data-drupal-selector="edit-submit-content-list" type="submit" id="edit-submit-content-list" value="Apply"><span></span></input>
</div>


</form>

  

  <div data-equalizer>
      <div class="item-list">
  
  <ul class="content-list small-block-grid-1 medium-block-grid-2 large-block-grid-4">

          <li class="content-item text-left">
<a href="/blog/2018/2018-09/shared-vision-future-metal-additive-manufacturing" id="node-61496"  data-history-node-id="61496" role="article" about="/blog/2018/2018-09/shared-vision-future-metal-additive-manufacturing" class="with-border">

        <div class="view-mode-grid_details">
        <div class="field-wrapper field field-node--field-thumbnail field-name-field-thumbnail field-type-image field-label-hidden">
    <div class="field-items">
          <div class="field-item">
                                                        
    
          <div class="responsive-image-container image-jpg" style="width:940px;">
            <img data-full-size="/sites/default/files/styles/thumbnail_full_size/public/2018-09/DMP%20Factory%20500_factory%20setup.jpg?itok=1gLz1S_l"
                 data-twothirds-size="/sites/default/files/styles/thumbnail_twothirds_size/public/2018-09/DMP%20Factory%20500_factory%20setup.jpg?itok=NQGouVdW"
                 data-onethird-size="/sites/default/files/styles/thumbnail_onethird_size/public/2018-09/DMP%20Factory%20500_factory%20setup.jpg?itok=P6Ukqj4X"
                 class="client-side-resize image-thumbnail image-responsive responsive-loading"
                 alt="DMP Factory 500 modular metal additive manufacturing solution"
                 width="940"
                 height="494"
            />
            <div class="image-spacer" style="padding-bottom:52.553191489362%;"></div>
        </div>
    
</div>
      </div>
</div>

        <p>September 26, 2018</p>
        <h3 class="node-title" data-equalizer-watch="blog-post"><span class="field-wrapper">A Shared Vision for the Future of Metal Additive Manufacturing</span>
</h3>
        <div class="clearfix"><strong class="left">Read more ></strong></div>
    </div>
</a>
</li>
          <li class="content-item text-left">
<a href="/blog/2018/2018-09/why-additive-manufacturing-software-matters" id="node-61416"  data-history-node-id="61416" role="article" about="/blog/2018/2018-09/why-additive-manufacturing-software-matters" class="with-border">

        <div class="view-mode-grid_details">
        <div class="field-wrapper field field-node--field-thumbnail field-name-field-thumbnail field-type-image field-label-hidden">
    <div class="field-items">
          <div class="field-item">
                                                        
    
          <div class="responsive-image-container image-jpg" style="width:940px;">
            <img data-full-size="/sites/default/files/styles/thumbnail_full_size/public/2018-09/web-3dxpert-nozzle-supports-structures-3d-metal-additive-printingNozzle.jpg?itok=y6VIzHpy"
                 data-twothirds-size="/sites/default/files/styles/thumbnail_twothirds_size/public/2018-09/web-3dxpert-nozzle-supports-structures-3d-metal-additive-printingNozzle.jpg?itok=pxnC59BQ"
                 data-onethird-size="/sites/default/files/styles/thumbnail_onethird_size/public/2018-09/web-3dxpert-nozzle-supports-structures-3d-metal-additive-printingNozzle.jpg?itok=WVpNzs30"
                 class="client-side-resize image-thumbnail image-responsive responsive-loading"
                 alt="3dxpert-nozzle-supports-structures-3d-metal-additive-manufacturing-software"
                 width="940"
                 height="494"
            />
            <div class="image-spacer" style="padding-bottom:52.553191489362%;"></div>
        </div>
    
</div>
      </div>
</div>

        <p>September 24, 2018</p>
        <h3 class="node-title" data-equalizer-watch="blog-post"><span class="field-wrapper">Why Additive Manufacturing Software Matters</span>
</h3>
        <div class="clearfix"><strong class="left">Read more ></strong></div>
    </div>
</a>
</li>
          <li class="content-item text-left">
<a href="/blog/2018/2018-09/create-more-shapes-more-ways-right-materials" id="node-61396"  data-history-node-id="61396" role="article" about="/blog/2018/2018-09/create-more-shapes-more-ways-right-materials" class="with-border">

        <div class="view-mode-grid_details">
        <div class="field-wrapper field field-node--field-thumbnail field-name-field-thumbnail field-type-image field-label-hidden">
    <div class="field-items">
          <div class="field-item">
                                                        
    
          <div class="responsive-image-container image-jpg" style="width:940px;">
            <img data-full-size="/sites/default/files/styles/thumbnail_full_size/public/2018-09/Idaho%20Piston.jpg?itok=yXbuVZ7R"
                 data-twothirds-size="/sites/default/files/styles/thumbnail_twothirds_size/public/2018-09/Idaho%20Piston.jpg?itok=QQBXw-aN"
                 data-onethird-size="/sites/default/files/styles/thumbnail_onethird_size/public/2018-09/Idaho%20Piston.jpg?itok=QFHAGKn9"
                 class="client-side-resize image-thumbnail image-responsive responsive-loading"
                 alt="sls-printed-production-part"
                 width="940"
                 height="494"
            />
            <div class="image-spacer" style="padding-bottom:52.553191489362%;"></div>
        </div>
    
</div>
      </div>
</div>

        <p>September 19, 2018</p>
        <h3 class="node-title" data-equalizer-watch="blog-post"><span class="field-wrapper">Create More Shapes in More Ways with the Right Materials</span>
</h3>
        <div class="clearfix"><strong class="left">Read more ></strong></div>
    </div>
</a>
</li>
          <li class="content-item text-left">
<a href="/blog/2018/2018-09/imts-and-advancement-digital-manufacturing" id="node-61161"  data-history-node-id="61161" role="article" about="/blog/2018/2018-09/imts-and-advancement-digital-manufacturing" class="with-border">

        <div class="view-mode-grid_details">
        <div class="field-wrapper field field-node--field-thumbnail field-name-field-thumbnail field-type-image field-label-hidden">
    <div class="field-items">
          <div class="field-item">
                                                        
    
          <div class="responsive-image-container image-jpg" style="width:940px;">
            <img data-full-size="/sites/default/files/styles/thumbnail_full_size/public/2018-09/vj-3d-systems-imts-2018-press.jpg?itok=xiHQDtYH"
                 data-twothirds-size="/sites/default/files/styles/thumbnail_twothirds_size/public/2018-09/vj-3d-systems-imts-2018-press.jpg?itok=5HBdue9u"
                 data-onethird-size="/sites/default/files/styles/thumbnail_onethird_size/public/2018-09/vj-3d-systems-imts-2018-press.jpg?itok=FWJZbba3"
                 class="client-side-resize image-thumbnail image-responsive responsive-loading"
                 alt="Vyomesh Joshi, CEO of 3D Systems, presents to the press at IMTS 2018"
                 width="940"
                 height="494"
            />
            <div class="image-spacer" style="padding-bottom:52.553191489362%;"></div>
        </div>
    
</div>
      </div>
</div>

        <p>September 7, 2018</p>
        <h3 class="node-title" data-equalizer-watch="blog-post"><span class="field-wrapper">IMTS and the advancement of digital manufacturing</span>
</h3>
        <div class="clearfix"><strong class="left">Read more ></strong></div>
    </div>
</a>
</li>
          <li class="content-item text-left">
<a href="/blog/2018/2018-08/secret-design-innovation-and-productivity-software" id="node-60366"  data-history-node-id="60366" role="article" about="/blog/2018/2018-08/secret-design-innovation-and-productivity-software" class="with-border">

        <div class="view-mode-grid_details">
        <div class="field-wrapper field field-node--field-thumbnail field-name-field-thumbnail field-type-image field-label-hidden">
    <div class="field-items">
          <div class="field-item">
                                                        
    
          <div class="responsive-image-container image-png" style="width:940px;">
            <img data-full-size="/sites/default/files/styles/thumbnail_full_size/public/2018-08/MTI_3DXpert.png?itok=GE8AWsTK"
                 data-twothirds-size="/sites/default/files/styles/thumbnail_twothirds_size/public/2018-08/MTI_3DXpert.png?itok=U5e01p8k"
                 data-onethird-size="/sites/default/files/styles/thumbnail_onethird_size/public/2018-08/MTI_3DXpert.png?itok=i9GBlyU4"
                 class="client-side-resize image-thumbnail image-responsive responsive-loading"
                 alt="3dxpert-integrated-software-metal-am-design"
                 width="940"
                 height="494"
            />
            <div class="image-spacer" style="padding-bottom:52.553191489362%;"></div>
        </div>
    
</div>
      </div>
</div>

        <p>August 16, 2018</p>
        <h3 class="node-title" data-equalizer-watch="blog-post"><span class="field-wrapper">The Secret to Design Innovation and Productivity Is in the Software</span>
</h3>
        <div class="clearfix"><strong class="left">Read more ></strong></div>
    </div>
</a>
</li>
          <li class="content-item text-left">
<a href="/blog/2018/2018-08/reducing-cost-investment-casting-3d-printed-investment-casting-patterns" id="node-60156"  data-history-node-id="60156" role="article" about="/blog/2018/2018-08/reducing-cost-investment-casting-3d-printed-investment-casting-patterns" class="with-border">

        <div class="view-mode-grid_details">
        <div class="field-wrapper field field-node--field-thumbnail field-name-field-thumbnail field-type-image field-label-hidden">
    <div class="field-items">
          <div class="field-item">
                                                        
    
          <div class="responsive-image-container image-jpg" style="width:940px;">
            <img data-full-size="/sites/default/files/styles/thumbnail_full_size/public/2018-08/thumb-3dsystem-investment-casting-stator-ring-rajeev.jpg?itok=Y91fLrVZ"
                 data-twothirds-size="/sites/default/files/styles/thumbnail_twothirds_size/public/2018-08/thumb-3dsystem-investment-casting-stator-ring-rajeev.jpg?itok=YKyy471B"
                 data-onethird-size="/sites/default/files/styles/thumbnail_onethird_size/public/2018-08/thumb-3dsystem-investment-casting-stator-ring-rajeev.jpg?itok=JTrvbvMo"
                 class="client-side-resize image-thumbnail image-responsive responsive-loading"
                 alt="3D printed investment casting patterns by On Demand Manufacturing"
                 width="940"
                 height="494"
            />
            <div class="image-spacer" style="padding-bottom:52.553191489362%;"></div>
        </div>
    
</div>
      </div>
</div>

        <p>August 2, 2018</p>
        <h3 class="node-title" data-equalizer-watch="blog-post"><span class="field-wrapper">Reducing the Cost of Investment Casting With 3D Printed Investment Casting Patterns</span>
</h3>
        <div class="clearfix"><strong class="left">Read more ></strong></div>
    </div>
</a>
</li>
          <li class="content-item text-left">
<a href="/blog/2018/2018-07/intermountain-3d-offers-new-value-earns-new-business-sls-printing" id="node-60101"  data-history-node-id="60101" role="article" about="/blog/2018/2018-07/intermountain-3d-offers-new-value-earns-new-business-sls-printing" class="with-border">

        <div class="view-mode-grid_details">
        <div class="field-wrapper field field-node--field-thumbnail field-name-field-thumbnail field-type-image field-label-hidden">
    <div class="field-items">
          <div class="field-item">
                                                        
    
          <div class="responsive-image-container image-png" style="width:940px;">
            <img data-full-size="/sites/default/files/styles/thumbnail_full_size/public/2018-07/intermountain-3d-swim-leg-modified-3d-systems_0.png?itok=W11LFhyr"
                 data-twothirds-size="/sites/default/files/styles/thumbnail_twothirds_size/public/2018-07/intermountain-3d-swim-leg-modified-3d-systems_0.png?itok=Wwjv0xlm"
                 data-onethird-size="/sites/default/files/styles/thumbnail_onethird_size/public/2018-07/intermountain-3d-swim-leg-modified-3d-systems_0.png?itok=HkVfdSyk"
                 class="client-side-resize image-thumbnail image-responsive responsive-loading"
                 alt="intermountain-3d-swim-leg-modified-3d-systems"
                 width="940"
                 height="494"
            />
            <div class="image-spacer" style="padding-bottom:52.553191489362%;"></div>
        </div>
    
</div>
      </div>
</div>

        <p>July 26, 2018</p>
        <h3 class="node-title" data-equalizer-watch="blog-post"><span class="field-wrapper">Intermountain 3D Offers New Value, Earns New Business with SLS Printing</span>
</h3>
        <div class="clearfix"><strong class="left">Read more ></strong></div>
    </div>
</a>
</li>
          <li class="content-item text-left">
<a href="/blog/2018/2018-07/metal-additive-design-strategies-where-form-follows-function-achieve-part-count" id="node-59946"  data-history-node-id="59946" role="article" about="/blog/2018/2018-07/metal-additive-design-strategies-where-form-follows-function-achieve-part-count" class="with-border">

        <div class="view-mode-grid_details">
        <div class="field-wrapper field field-node--field-thumbnail field-name-field-thumbnail field-type-image field-label-hidden">
    <div class="field-items">
          <div class="field-item">
                                                        
    
          <div class="responsive-image-container image-jpg" style="width:940px;">
            <img data-full-size="/sites/default/files/styles/thumbnail_full_size/public/2018-07/exhaust-part-count-reduction-thumb_1.jpg?itok=w-7PkcFx"
                 data-twothirds-size="/sites/default/files/styles/thumbnail_twothirds_size/public/2018-07/exhaust-part-count-reduction-thumb_1.jpg?itok=vxFrtU6O"
                 data-onethird-size="/sites/default/files/styles/thumbnail_onethird_size/public/2018-07/exhaust-part-count-reduction-thumb_1.jpg?itok=OAueL-Ek"
                 class="client-side-resize image-thumbnail image-responsive responsive-loading"
                 alt="Part count reduction using metal additive manufacturing by 3D Systems"
                 width="940"
                 height="494"
            />
            <div class="image-spacer" style="padding-bottom:52.553191489362%;"></div>
        </div>
    
</div>
      </div>
</div>

        <p>July 19, 2018</p>
        <h3 class="node-title" data-equalizer-watch="blog-post"><span class="field-wrapper">Metal Additive Design Strategies: Where Form Follows Function to Achieve Part Count Reduction</span>
</h3>
        <div class="clearfix"><strong class="left">Read more ></strong></div>
    </div>
</a>
</li>
          <li class="content-item text-left">
<a href="/blog/2018/2018-07/best-way-designers-and-manufacturers-find-extra-time-day" id="node-59861"  data-history-node-id="59861" role="article" about="/blog/2018/2018-07/best-way-designers-and-manufacturers-find-extra-time-day" class="with-border">

        <div class="view-mode-grid_details">
        <div class="field-wrapper field field-node--field-thumbnail field-name-field-thumbnail field-type-image field-label-hidden">
    <div class="field-items">
          <div class="field-item">
                                                        
    
          <div class="responsive-image-container image-jpeg" style="width:940px;">
            <img data-full-size="/sites/default/files/styles/thumbnail_full_size/public/2018-07/3d-systems-impossible-creations-scan-to-cad-mjp-mascot.jpeg?itok=jw6otLYO"
                 data-twothirds-size="/sites/default/files/styles/thumbnail_twothirds_size/public/2018-07/3d-systems-impossible-creations-scan-to-cad-mjp-mascot.jpeg?itok=GfnLaKh-"
                 data-onethird-size="/sites/default/files/styles/thumbnail_onethird_size/public/2018-07/3d-systems-impossible-creations-scan-to-cad-mjp-mascot.jpeg?itok=3kWOw_lk"
                 class="client-side-resize image-thumbnail image-responsive responsive-loading"
                 alt="3d-systems-impossible-creations-scan-to-cad-mjp-mascot"
                 width="940"
                 height="494"
            />
            <div class="image-spacer" style="padding-bottom:52.553191489362%;"></div>
        </div>
    
</div>
      </div>
</div>

        <p>July 17, 2018</p>
        <h3 class="node-title" data-equalizer-watch="blog-post"><span class="field-wrapper">The Best Way For Designers and Manufacturers to Find Extra Time in the Day</span>
</h3>
        <div class="clearfix"><strong class="left">Read more ></strong></div>
    </div>
</a>
</li>
          <li class="content-item text-left">
<a href="/blog/2018/2018-07/qa-katie-weimer" id="node-59826"  data-history-node-id="59826" role="article" about="/blog/2018/2018-07/qa-katie-weimer" class="with-border">

        <div class="view-mode-grid_details">
        <div class="field-wrapper field field-node--field-thumbnail field-name-field-thumbnail field-type-image field-label-hidden">
    <div class="field-items">
          <div class="field-item">
                                                        
    
          <div class="responsive-image-container image-jpeg" style="width:940px;">
            <img data-full-size="/sites/default/files/styles/thumbnail_full_size/public/2018-07/anatomical-modeling-on-demand_900px_thumb.jpeg?itok=-j9RSRD2"
                 data-twothirds-size="/sites/default/files/styles/thumbnail_twothirds_size/public/2018-07/anatomical-modeling-on-demand_900px_thumb.jpeg?itok=NOG1utCB"
                 data-onethird-size="/sites/default/files/styles/thumbnail_onethird_size/public/2018-07/anatomical-modeling-on-demand_900px_thumb.jpeg?itok=iighk75X"
                 class="client-side-resize image-thumbnail image-responsive responsive-loading"
                 alt="anatomical-modeling-on-demand"
                 width="940"
                 height="494"
            />
            <div class="image-spacer" style="padding-bottom:52.553191489362%;"></div>
        </div>
    
</div>
      </div>
</div>

        <p>July 12, 2018</p>
        <h3 class="node-title" data-equalizer-watch="blog-post"><span class="field-wrapper">Q&amp;A with Katie Weimer </span>
</h3>
        <div class="clearfix"><strong class="left">Read more ></strong></div>
    </div>
</a>
</li>
          <li class="content-item text-left">
<a href="/blog/2018/2018-07/how-help-older-dragons-lose-weight-look-great-3d-printing" id="node-59771"  data-history-node-id="59771" role="article" about="/blog/2018/2018-07/how-help-older-dragons-lose-weight-look-great-3d-printing" class="with-border">

        <div class="view-mode-grid_details">
        <div class="field-wrapper field field-node--field-thumbnail field-name-field-thumbnail field-type-image field-label-hidden">
    <div class="field-items">
          <div class="field-item">
                                                        
    
          <div class="responsive-image-container image-jpg" style="width:940px;">
            <img data-full-size="/sites/default/files/styles/thumbnail_full_size/public/2018-07/dragon-thumbnail.jpg?itok=IwHARfFU"
                 data-twothirds-size="/sites/default/files/styles/thumbnail_twothirds_size/public/2018-07/dragon-thumbnail.jpg?itok=L4eAZnuU"
                 data-onethird-size="/sites/default/files/styles/thumbnail_onethird_size/public/2018-07/dragon-thumbnail.jpg?itok=h_Bi7hPl"
                 class="client-side-resize image-thumbnail image-responsive responsive-loading"
                 alt="3D printed dragons for the Royal Pagoda, Kew Gardens"
                 width="940"
                 height="494"
            />
            <div class="image-spacer" style="padding-bottom:52.553191489362%;"></div>
        </div>
    
</div>
      </div>
</div>

        <p>July 10, 2018</p>
        <h3 class="node-title" data-equalizer-watch="blog-post"><span class="field-wrapper">How to Help Older Dragons Lose Weight, Look Great with 3D Printing </span>
</h3>
        <div class="clearfix"><strong class="left">Read more ></strong></div>
    </div>
</a>
</li>
          <li class="content-item text-left">
<a href="/blog/2018/2018-06/how-bring-additive-manufacturing-maximum-impact" id="node-59676"  data-history-node-id="59676" role="article" about="/blog/2018/2018-06/how-bring-additive-manufacturing-maximum-impact" class="with-border">

        <div class="view-mode-grid_details">
        <div class="field-wrapper field field-node--field-thumbnail field-name-field-thumbnail field-type-image field-label-hidden">
    <div class="field-items">
          <div class="field-item">
                                                        
    
          <div class="responsive-image-container image-JPG" style="width:940px;">
            <img data-full-size="/sites/default/files/styles/thumbnail_full_size/public/2018-06/3d-systems-k2m-dmp-medical-device-for-spine-metal-3d-printing-s.JPG?itok=XO1pLcq9"
                 data-twothirds-size="/sites/default/files/styles/thumbnail_twothirds_size/public/2018-06/3d-systems-k2m-dmp-medical-device-for-spine-metal-3d-printing-s.JPG?itok=33yozPmZ"
                 data-onethird-size="/sites/default/files/styles/thumbnail_onethird_size/public/2018-06/3d-systems-k2m-dmp-medical-device-for-spine-metal-3d-printing-s.JPG?itok=tPbCh8wJ"
                 class="client-side-resize image-thumbnail image-responsive responsive-loading"
                 alt="How to Bring on Additive Manufacturing for Maximum Impact"
                 width="940"
                 height="494"
            />
            <div class="image-spacer" style="padding-bottom:52.553191489362%;"></div>
        </div>
    
</div>
      </div>
</div>

        <p>June 27, 2018</p>
        <h3 class="node-title" data-equalizer-watch="blog-post"><span class="field-wrapper">How to Bring on Additive Manufacturing for Maximum Impact</span>
</h3>
        <div class="clearfix"><strong class="left">Read more ></strong></div>
    </div>
</a>
</li>
    
  </ul>

</div>

  </div>
  
    <nav class="pager" role="navigation" aria-labelledby="pagination-heading">
    <h4 id="pagination-heading" class="visually-hidden">Pagination</h4>
    <ul class="pagination pager__items js-pager__items">
                                                        <li class="pager__item is-active current">
                                          <a href="?field_industries_target_id=All&amp;field_technologies_target_id=All&amp;title=&amp;page=0" title="Current page">
            <span class="visually-hidden">
              Current page
            </span>1</a>
        </li>
              <li class="pager__item">
                                          <a href="?field_industries_target_id=All&amp;field_technologies_target_id=All&amp;title=&amp;page=1" title="Go to page 2">
            <span class="visually-hidden">
              Page
            </span>2</a>
        </li>
              <li class="pager__item">
                                          <a href="?field_industries_target_id=All&amp;field_technologies_target_id=All&amp;title=&amp;page=2" title="Go to page 3">
            <span class="visually-hidden">
              Page
            </span>3</a>
        </li>
              <li class="pager__item">
                                          <a href="?field_industries_target_id=All&amp;field_technologies_target_id=All&amp;title=&amp;page=3" title="Go to page 4">
            <span class="visually-hidden">
              Page
            </span>4</a>
        </li>
              <li class="pager__item">
                                          <a href="?field_industries_target_id=All&amp;field_technologies_target_id=All&amp;title=&amp;page=4" title="Go to page 5">
            <span class="visually-hidden">
              Page
            </span>5</a>
        </li>
              <li class="pager__item">
                                          <a href="?field_industries_target_id=All&amp;field_technologies_target_id=All&amp;title=&amp;page=5" title="Go to page 6">
            <span class="visually-hidden">
              Page
            </span>6</a>
        </li>
              <li class="pager__item">
                                          <a href="?field_industries_target_id=All&amp;field_technologies_target_id=All&amp;title=&amp;page=6" title="Go to page 7">
            <span class="visually-hidden">
              Page
            </span>7</a>
        </li>
              <li class="pager__item">
                                          <a href="?field_industries_target_id=All&amp;field_technologies_target_id=All&amp;title=&amp;page=7" title="Go to page 8">
            <span class="visually-hidden">
              Page
            </span>8</a>
        </li>
              <li class="pager__item">
                                          <a href="?field_industries_target_id=All&amp;field_technologies_target_id=All&amp;title=&amp;page=8" title="Go to page 9">
            <span class="visually-hidden">
              Page
            </span>9</a>
        </li>
                          <li class="unavailable pager__item pager__item--ellipsis" role="presentation"><a href="">&hellip;</a></li>
                          <li class="pager__item pager__item--next">
          <a href="?field_industries_target_id=All&amp;field_technologies_target_id=All&amp;title=&amp;page=1" title="Go to next page" rel="next">
            <span class="visually-hidden">Next page</span>
            <span aria-hidden="true">Next ›</span>
          </a>
        </li>
                          <li class="pager__item pager__item--last">
          <a href="?field_industries_target_id=All&amp;field_technologies_target_id=All&amp;title=&amp;page=88" title="Go to last page">
            <span class="visually-hidden">Last page</span>
            <span aria-hidden="true">Last »</span>
          </a>
        </li>
          </ul>
  </nav>


  
  

  
  
</div>
</div>

    </div>
</section>


  </div>

                    </div>
                </section>
            </main>
                                </div>
                    <div>
                <div id="pre-footer">
                      <div>
    <section class="views-element-container block-views-block-bottom-ctas-block-1-2 clearfix" id="block-views-block-bottom-ctas-block-1-2">
  
  
    

  
          <div><div class="js-view-dom-id-7451269d0852231ae22b0e481f839caa58316aa7808a2517004132d797627cb1">
  
  
  

  
  
  

  <div data-equalizer>
      <div class="item-list">
  
  <ul class="small-block-grid-1 medium-block-grid-2 no-spacing">

          <li><div class="views-field views-field-field-bottom-ctas"><div class="field-content"></div></div></li>
    
  </ul>

</div>

  </div>
  
  

  
  

  
  
</div>
</div>

    
    
  </section>

  </div>

                </div>
            </div>
                            <footer>
                <div id="meta-footer">
                      <div>
    <nav role="navigation" aria-labelledby="block-ddd-footer-menu" id="block-ddd-footer" class="block-ddd-footer">
            
  <h2 class="block-title visually-hidden" id="block-ddd-footer-menu">Footer menu</h2>
  

            
<div class="full">
            
        
          
                      <div >
          
                      
              
                              <div class="top-links">
              
                <a href="" data-drupal-link-system-path="&lt;front&gt;">top links</a>
                                  
          
          
                      
                              <ul>
              
                              <li class="link-how-to-buy">
              
                <a href="/how-to-buy" link_class="" mega_content="" target="" data-drupal-link-system-path="node/53656">How to Buy</a>
                                              </li>
                                        
              
                              <li class="link-contact-us">
              
                <a href="/contact" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44316">Contact us</a>
                                              </li>
                                        
              
                              <li class="link-customer-support">
              
                <a href="/support" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44236">Customer Support</a>
                                              </li>
                                            </ul>
                                                      
                                              </div>
                                        
                              <div class="row">
                  <div class="small-12 columns">
                    <ul class="small-block-grid-1 medium-block-grid-2 large-block-grid-5">

              
                              <li class="link-solutions">
              
                <a href="/solutions" link_class="" mega_content="" target="" data-drupal-link-system-path="node/35206">Solutions</a>
                                  
          
          
                      
                              <ul>
              
                              <li class="link-by-application">
              
                <a href="/solutions#by-application" link_class="" mega_content="" target="" data-drupal-link-system-path="node/35206">By Application</a>
                                              </li>
                                        
              
                              <li class="link-by-industry">
              
                <a href="/solutions#by-industry" link_class="" mega_content="" target="" data-drupal-link-system-path="node/35206">By Industry</a>
                                              </li>
                                        
              
                              <li class="link-by-workflow">
              
                <a href="/solutions#by-workflow" link_class="" mega_content="" target="" data-drupal-link-system-path="node/35206">By Workflow</a>
                                              </li>
                                        
              
                              <li class="link-by-products-&amp;amp;-services">
              
                <a href="/solutions#by-products-services" link_class="" mega_content="" target="" data-drupal-link-system-path="node/35206">By Products &amp; Services</a>
                                              </li>
                                            </ul>
                                                      
                                              </li>
                                        
              
                              <li class="link-resources">
              
                <a href="/resources" link_class="" mega_content="" target="" data-drupal-link-system-path="node/19846">Resources</a>
                                  
          
          
                      
                              <ul>
              
                              <li class="link-webinars">
              
                <a href="/webinars" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44361">Webinars</a>
                                              </li>
                                        
              
                              <li class="link-customer-stories">
              
                <a href="/case-studies" link_class="" mega_content="" target="" data-drupal-link-system-path="node/19966">Customer Stories</a>
                                              </li>
                                        
              
                              <li class="link-blog">
              
                <a href="/blog" link_class="" mega_content="" target="" data-drupal-link-system-path="node/35041" class="is-active">Blog</a>
                                              </li>
                                        
              
                              <li class="link-video-gallery">
              
                <a href="/video/gallery" link_class="" mega_content="" target="" data-drupal-link-system-path="node/29761">Video Gallery</a>
                                              </li>
                                            </ul>
                                                      
                                              </li>
                                        
              
                              <li class="link-support">
              
                <a href="/support" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44236">Support</a>
                                  
          
          
                      
                              <ul>
              
                              <li class="link-hardware">
              
                <a href="/support/3d-printers" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44241">Hardware</a>
                                              </li>
                                        
              
                              <li class="link-software">
              
                <a href="/support/software" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44246">Software</a>
                                              </li>
                                        
              
                              <li class="link-healthcare">
              
                <a href="/support/healthcare" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44256">Healthcare</a>
                                              </li>
                                        
              
                              <li class="link-on-demand-manufacturing">
              
                <a href="/support/on-demand-manufacturing" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44251">On Demand Manufacturing</a>
                                              </li>
                                        
              
                              <li class="link-creative-services">
              
                <a href="/support/creative-services" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44261">Creative Services</a>
                                              </li>
                                            </ul>
                                                      
                                              </li>
                                        
              
                              <li class="link-how-to-buy">
              
                <a href="/how-to-buy" link_class="" mega_content="" target="" data-drupal-link-system-path="node/53656">How to Buy</a>
                                  
          
          
                      
                              <ul>
              
                              <li class="link-printers">
              
                <a href="/how-to-buy/3d-printers" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44276">Printers</a>
                                              </li>
                                        
              
                              <li class="link-scanners">
              
                <a href="/how-to-buy/scanners-haptics" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44296">Scanners</a>
                                              </li>
                                        
              
                              <li class="link-software-&amp;amp;-haptic-devices">
              
                <a href="/how-to-buy/software" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44301">Software &amp; Haptic devices</a>
                                              </li>
                                        
              
                              <li class="link-on-demand-manufacturing-services">
              
                <a href="/how-to-buy/on-demand-manufacturing" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44306">On Demand Manufacturing Services</a>
                                              </li>
                                        
              
                              <li class="link-healthcare-solutions">
              
                <a href="/how-to-buy/healthcare-solutions" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44311">Healthcare Solutions</a>
                                              </li>
                                            </ul>
                                                      
                                              </li>
                                        
              
                              <li class="link-about">
              
                <a href="/about-us" link_class="" mega_content="" target="" data-drupal-link-system-path="node/44266">About</a>
                                  
          
          
                      
                              <ul>
              
                              <li class="link-our-story">
              
                <a href="/our-story" link_class="" mega_content="" target="" data-drupal-link-system-path="node/30526">Our Story</a>
                                              </li>
                                        
              
                              <li class="link-press-room">
              
                <a href="/press-releases" link_class="" mega_content="" target="" data-drupal-link-system-path="node/35416">Press Room</a>
                                              </li>
                                        
              
                              <li class="link-investor-relations">
              
                <a href="/investor" link_class="" mega_content="" target="" data-drupal-link-system-path="node/29636">Investor Relations</a>
                                              </li>
                                        
              
                              <li class="link-careers">
              
                <a href="/careers" link_class="" mega_content="" target="" data-drupal-link-system-path="node/52776">Careers</a>
                                              </li>
                                        
              
                              <li class="link-events">
              
                <a href="/news/events" link_class="" mega_content="" target="" data-drupal-link-system-path="node/52771">Events</a>
                                              </li>
                                            </ul>
                                                      
                                              </li>
                                                </ul>
                  </div>
                  </div>
                                                          </div>
                  

            
            <ul class="social">
            <li><p>Connect with us:</p></li>
            <li>
                <a href="https://www.youtube.com/channel/UCsx-A5uSO_gYgi5A4RXFCag"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     viewBox="0 0 142.8 142.4" enable-background="new 0 0 142.8 142.4" xml:space="preserve">
<g>
    <polygon fill="#FFFFFF" points="64.1,80.8 83.8,70.4 64.1,60 	"/>
    <path fill="#FFFFFF" d="M71.6,0C32.4,0,0.4,31.9,0.4,71.2c0,39.3,31.9,71.2,71.2,71.2s71.2-31.9,71.2-71.2
		C142.8,31.9,110.9,0,71.6,0z M108.2,74c0,6-0.7,11.9-0.7,11.9s-0.7,5.1-2.9,7.3c-2.8,2.9-5.9,3-7.3,3.1
		c-10.2,0.7-25.6,0.8-25.6,0.8s-19-0.2-24.9-0.7c-1.6-0.3-5.3-0.2-8.1-3.2c-2.2-2.2-2.9-7.3-2.9-7.3S35,80,35,74v-5.6
		c0-6,0.7-11.9,0.7-11.9s0.7-5.1,2.9-7.3c2.8-2.9,5.9-3,7.3-3.1c10.2-0.7,25.6-0.7,25.6-0.7h0c0,0,15.4,0,25.6,0.7
		c1.4,0.2,4.6,0.2,7.3,3.1c2.2,2.2,2.9,7.3,2.9,7.3s0.7,6,0.7,11.9V74z"/>
</g>
</svg>
</a>
            </li>
            <li>
                <a href="https://twitter.com/3dsystems"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     viewBox="0 0 142.8 142.4" enable-background="new 0 0 142.8 142.4" xml:space="preserve">
<path fill="#FFFFFF" d="M71.8,0C32.6,0,0.6,32,0.6,71.2c0,39.3,31.9,71.2,71.2,71.2c39.3,0,71.2-31.9,71.2-71.2
	C143,32,111.1,0,71.8,0z M99,56.9c0,0.6,0,1.2,0,1.9c0,19-14.1,40.9-39.9,40.9c-7.9,0-15.3-2.4-21.5-6.5c1.1,0.1,2.2,0.2,3.3,0.2
	c6.6,0,12.6-2.3,17.4-6.2c-6.1-0.1-11.3-4.3-13.1-10c0.9,0.2,1.7,0.3,2.6,0.3c1.3,0,2.5-0.2,3.7-0.5c-6.4-1.3-11.3-7.1-11.3-14.1
	v-0.2c1.9,1.1,4.1,1.7,6.4,1.8c-3.8-2.6-6.2-7-6.2-12c0-2.6,0.7-5.1,1.9-7.2c6.9,8.7,17.3,14.4,28.9,15c-0.2-1.1-0.4-2.1-0.4-3.3
	c0-7.9,6.3-14.4,14-14.4c4,0,7.7,1.7,10.2,4.5c3.2-0.6,6.2-1.8,8.9-3.5c-1,3.4-3.3,6.2-6.2,8c2.8-0.3,5.5-1.1,8.1-2.3
	C104.1,52.3,101.8,54.9,99,56.9z"/>
</svg>
</a>
            </li>
            <li>
                <a href="https://www.facebook.com/3dsystemscorp"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     viewBox="0 0 142.8 142.4" enable-background="new 0 0 142.8 142.4" xml:space="preserve">
<path fill="#FFFFFF" d="M72.4,0C33.2,0,1.2,32,1.2,71.2c0,39.3,31.9,71.2,71.2,71.2s71.2-31.9,71.2-71.2C143.6,32,111.7,0,72.4,0z
	 M91.3,47l-6.8,0c-5.4,0-6.4,2.5-6.4,6.3v8.2h12.8l-1.7,12.9H78.1v33.1H64.7V74.4H53.6V61.5h11.2V52c0-11.1,6.7-17.1,16.6-17.1
	c4.7,0,8.8,0.4,10,0.5V47z"/>
</svg></a>
            </li>
            <li>
                <a href="https://www.linkedin.com/company/162213"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     viewBox="0 0 142.8 142.4" enable-background="new 0 0 142.8 142.4" xml:space="preserve">
<path fill="#FFFFFF" d="M72,0C32.8,0,0.9,32,0.9,71.2c0,39.3,31.9,71.2,71.2,71.2c39.3,0,71.2-31.9,71.2-71.2C143.2,32,111.3,0,72,0
	z M51.7,104.4H37.5V59.4h14.2V104.4z M44.2,53.8h-0.1c-5.1,0-8.5-3.4-8.5-7.8c0-4.4,3.4-7.8,8.7-7.8c5.2,0,8.4,3.4,8.5,7.8
	C52.9,50.4,49.6,53.8,44.2,53.8z M108.4,104.4H92.3V81.1c0-6.1-2.5-10.2-8-10.2c-4.2,0-6.6,2.8-7.7,5.5c-0.4,1-0.3,2.3-0.3,3.7v24.3
	H60.3c0,0,0.2-41.2,0-44.9h15.9v7.1c0.9-3.1,6-7.5,14.2-7.5c10.1,0,18,6.5,18,20.4V104.4z"/>
</svg></a>
            </li>
            <li>
                <a href="https://plus.google.com/103168178485811849235"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     viewBox="0 0 142.8 142.4" enable-background="new 0 0 142.8 142.4" xml:space="preserve">
<path fill="#FFFFFF" d="M72.7,0C33.4,0,1.5,32,1.5,71.2c0,39.3,31.9,71.2,71.2,71.2c39.3,0,71.2-31.9,71.2-71.2
	C143.9,32,111.9,0,72.7,0z M57.2,98.2c-14.9,0-26.9-12.1-26.9-26.9c0-14.9,12-26.9,26.9-26.9c7,0,13.3,2.7,18.1,7
	c-5.6,5.3-5.4,5.6-7.7,7.9c-2.8-2.3-5.8-3.9-10.4-3.9c-8.8,0-15.7,7.2-15.7,16c0,8.8,6.9,16,15.7,16c8.7,0,12.3-3.8,14.5-10.7
	c-4.2,0-14.5,0-14.5,0V65.9H83C84.8,78.8,79.4,98.2,57.2,98.2z M115,73.1h-9.3v9.6H99v-9.6h-9.6v-6.7H99v-9.3h6.7v9.3h9.3V73.1z"/>
</svg>
</a>
            </li>
            <li>
                <a href="https://www.instagram.com/3dsystems/"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     viewBox="0 0 142.8 142.4" enable-background="new 0 0 142.8 142.4" xml:space="preserve">
<g>
    <path fill="#FFFFFF" d="M88.8,56.8H95c1.1,0,2.1-0.9,2.1-2.1v-6.2c0-1.1-0.9-2.1-2.1-2.1h-6.2c-1.1,0-2.1,0.9-2.1,2.1v6.2
		C86.7,55.9,87.6,56.8,88.8,56.8z"/>
    <path fill="#FFFFFF" d="M92.4,71.3c0,11-9,20-20.1,20c-11.1,0-20.1-9-20.1-20c0-1.8,0.4-4.7,1.4-6.3h-8.2V96c0,1.1,0.9,2.1,2.1,2.1
		H97c1.1,0,2.1-0.9,2.1-2.1V65h-8.2C92.2,66.6,92.4,69.5,92.4,71.3z"/>
    <ellipse fill="#FFFFFF" cx="72.3" cy="71.3" rx="12.7" ry="12.7"/>
    <path fill="#FFFFFF" d="M72.3,0C33,0,1.1,32,1.1,71.2c0,39.3,31.9,71.2,71.2,71.2c39.3,0,71.2-31.9,71.2-71.2
		C143.5,32,111.5,0,72.3,0z M105.3,96.4c0,4.3-3.5,7.8-7.8,7.8H47.1c-4.3,0-7.8-3.5-7.8-7.8V46c0-4.3,3.5-7.8,7.8-7.8h50.3
		c4.3,0,7.8,3.5,7.8,7.8V96.4z"/>
</g>
</svg></a>
            </li>
            <li><a href="/blog"><svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
    <defs><style>.cls-1{fill:#8a8c8e;}</style></defs>
    <title>blog-icon</title>
    <path class="cls-1" d="M16,0A16,16,0,1,0,32,16,16,16,0,0,0,16,0ZM6.6,25.41a0.78,0.78,0,1,1,.78-0.78A0.78,0.78,0,0,1,6.6,25.41Zm2.72-.78a1.43,1.43,0,1,1,1.43-1.43A1.43,1.43,0,0,1,9.32,24.63Zm14-5.7a3.86,3.86,0,0,1-.56.08,0.36,0.36,0,0,0-.33.22,3.93,3.93,0,0,1-3.33,2.5,3.83,3.83,0,0,1-2.51-.61,0.22,0.22,0,0,0-.33,0,4.25,4.25,0,0,1-2,1.14,4.51,4.51,0,0,1-4.7-1.57,3.79,3.79,0,0,1-.58-1,0.31,0.31,0,0,0-.26-0.2A4.42,4.42,0,0,1,8,11a0.52,0.52,0,0,0,.38-0.43A5.22,5.22,0,0,1,12.5,6.47a3.75,3.75,0,0,1,1.07-.11,5.29,5.29,0,0,1,4.06,1.88,0.27,0.27,0,0,0,.35.09,4.22,4.22,0,0,1,5.24,1.81L22.34,11H10.47a0.65,0.65,0,0,0,0,1.29H21l-1.44,1.44H10.47a0.65,0.65,0,0,0,0,1.29h8.29l-0.38,1.16,0,0.1H10.47a0.65,0.65,0,0,0,0,1.29h8.68l0.24,0a1.15,1.15,0,0,0,.35-0.06l1.54-.5a1.23,1.23,0,0,0,.49-0.3L26,12.51A4.48,4.48,0,0,1,26.65,14,4.18,4.18,0,0,1,23.35,18.94ZM27,10.33l-5.85,5.85a0.38,0.38,0,0,1-.15.09l-1.54.5-0.1,0a0.23,0.23,0,0,1-.21-0.33l0.5-1.54a0.38,0.38,0,0,1,.09-0.15l5.85-5.85a0.92,0.92,0,0,1,.65-0.31A1,1,0,0,1,27,9,0.88,0.88,0,0,1,27,10.33Z"/>
</svg></a></li>
        </ul>
    
    <div class="policies-copyright">
        <span><a href="/privacy-policy">Privacy Policy</a></span>
        <span><a href="#" class="optanon-toggle-display" onclick="Optanon.TriggerGoogleAnalyticsEvent('OneTrust Cookie Consent', 'Footer Open Preferences');">Cookie Settings</a></span>
        <span><a href="/sales-terms-conditions">Sales Terms</a></span>
        <span><a href="/term-use">Terms and Conditions</a></span>
        <span class="copyright">Copyright &copy; 2018 3D Systems, Inc. All rights reserved.</span>
    </div>
</div>
  </nav>

  </div>

                </div>
            </footer>
        
        <a class="exit-off-canvas"></a>

    </div>
</div>

  </div>


<script type="application/json" data-drupal-selector="drupal-settings-json">{"path":{"baseUrl":"\/","scriptPath":null,"pathPrefix":"","currentPath":"node\/35041","currentPathIsAdmin":false,"isFront":false,"currentLanguage":"en"},"pluralDelimiter":"\u0003","data":{"extlink":{"extTarget":true,"extTargetNoOverride":null,"extNofollow":null,"extFollowNoOverride":null,"extClass":"0","extLabel":"(link is external)","extImgClass":false,"extSubdomains":true,"extExclude":"(.*3dsystems\\.com|.*3dsystems\\.teamplatform\\.com|.*\\.exe$)","extInclude":"(.*\\.pdf$|www2\\.3dsystems\\.com.*|3dprinters\\.3dsystems\\.com.*|quickparts\\.3dsystems\\.com.*)","extCssExclude":".paragraph--type--content-button-link","extCssExplicit":"","extAlert":false,"extAlertText":"","mailtoClass":"0","mailtoLabel":"(link sends email)"}},"ajaxTrustedUrl":{"\/blog":true},"user":{"uid":0,"permissionsHash":"5463f553d24a13315a36b6734b804179b117ed4b72f17807ef6a0e977fe1f5de"}}</script>
<script src="/sites/default/files/js/js_x01LrJjelcEe_hbywT1HsjsHhijqYhibFyLJNW8GhzI.js"></script>

        <script>
        // Load YouTube player API
        var tag = document.createElement('script');

        tag.src = "https://www.youtube.com/iframe_api";
        var firstScriptTag = document.getElementsByTagName('script')[0];
        firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);

        (function ($) {
            $(document).foundation();
        })(jQuery);
    </script>
    <script src="https://player.vimeo.com/api/player.js" type="text/javascript"></script>
    <script src="//play.vidyard.com/v0/api.js" type="text/javascript"></script>
    <script>
        WebFontConfig = {
            google: { families: [ 'Noto Sans:400,700,400italic,700italic' ] }
        };
        (function() {
            var wf = document.createElement('script');
            wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
                '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
            wf.type = 'text/javascript';
            wf.async = 'true';
            var s = document.getElementsByTagName('script')[0];
            s.parentNode.insertBefore(wf, s);
        })();
    </script>
<script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","licenseKey":"0715772ba7","applicationID":"70699815","transactionName":"YVRTY0QAXRBXU0FYDFgecFRCCFwNGXRHRBNXXW1AUwNVDERdal8MUlRtdlUCVhBFbGJUAVBeQ1p4DlcGd1NWVBBFHA9UXgRQCGFVV1cMRFxjUkUUXxdFcVZSBkVC","queueTime":0,"applicationTime":1942,"atts":"TRNQFQwaTh4=","errorBeacon":"bam.nr-data.net","agent":""}</script></body>
</html>
