Project Layout
Summary
In this chapter, we will discuss the directory structure of the Additive Manufacturing tutorial.
Concepts
- Project directory structure
- Overview of provided files
The Additive Manufacturing tutorial has the following directory structure to start:
additive_manufacturing
├── data
│ ├── microengine.scs
│ └── thumbnails
├── favicon.ico
├── img
├── index.html
├── package.json
├── src
│ ├── css
│ └── js
A brief overview of the directory structure:
- data/ – contains the necessary .scs model data and subdirectories
- thumbnails/ – thumbnails for models that will be used
- microengine.scs – example converted model for use during tutorial
- img/ – static image assets used by the application
- src/ – source code for the application
- css/ – style sheets for the application
- js/ – our application Javascript files
- favicon.ico – TS3D favicon
- index.html – entry point of our application
- package.json – lists all development dependencies to install
top_level:1
tutorials:1