Harriethijssen / tutorial-getting.started-view.and.data

A quickstart tutorial demonstrating how to set up a Node.js server and client-side JavaScript code to display and interact with a 3D model using the Autodesk View & Data API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Autodesk View & Data API – Getting Started Tutorial

Audience

This documentation is designed for people familiar with JavaScript programming and object-oriented programming concepts. You should also be familiar with the Autodesk View & Data technology from a user's point of view. You can play with the technology here – simply Drag 'n Drop a 2D/3D file, and enjoy the result in your browser with no extension or plug-in installed on your computer or device.

This conceptual documentation is designed to let you quickly start exploring and developing applications with the Autodesk View & Data API.

What do you need for your project?

The View & Data web service consists of two APIs. The first API is a REST API which allows you to upload and translate 2D/3D models into a light-weight format that can be downloaded and displayed by the Second API – a client-side JavaScript API that allows you to embed, customize and automate an interactive 2D/3D model viewer on your web page.

Depending on your needs, you may prefer to write a server or a desktop application to consume the REST API. Your choice will be mainly based on how many files you need to translate, and the frequency:

  • If you need to translate only one (or very few) of your own models to be viewed by other people, then you may prefer to use a desktop application to do this, or one of our demo pages.

  • If you need to translate multiple models in a batch process or allow other users to upload their own files, then a web server implementation will be needed.

Later in this workshop, you will need to decide which routes you want to go with depending of your needs.

What are you going to achieve in this workshop?

When you finish the workshop you will be able to:

  • Create a dynamic application that works in all modern browsers.
  • View 2D/3D models in a browser or device without plug-in or additional software.
  • Create and run Node.js application .
  • Extend the View & Data API WEBGL viewer to interact with the 2D/3D models.
  • Identify resources for learning more about the Autodesk View & Data API.

The tutorial guides you through the entire process of building a simple application, including writing and running viewer extensions. Experiments at the end of each step provide suggestions for you to learn more about the Autodesk View & Data API and the application you are building.

========================= Start

About

A quickstart tutorial demonstrating how to set up a Node.js server and client-side JavaScript code to display and interact with a 3D model using the Autodesk View & Data API

License:MIT License