This repository contains practical examples for tasks in the "Interactive 3D Graphics" Udacity course. The course covers essential concepts like 3D graphics principles, including meshes, transforms, lighting, animation, and building interactive 3D applications that smoothly run in web browsers.
Install Node Version Manager (nvm).
This project uses a specific version of Node.js and npm. To manage the correct version, we recommend using nvm
.
- To install
nvm
run the following command:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
- After the installation, restart your terminal or run:
source ~/.zshrc
- We have an .nvmrc file with the correct Node.js version for this project. Switch to the correct Node.js version by running:
nvm use
To run the project, follow these steps:
- Install all the dependencies by running:
npm install
- To bundle all the projects and start the development server with Rollup, use:
npm run dev
This will bundle your code using Rollup, start the development server, and enable live reloading for any changes.
- To bundle and serve a specific project (e.g., 01), use:
npm run dev page:01
This command will bundle and serve only the specified project (in this case, page 01), allowing you to focus on a particular project while still benefiting from live reloading.
- Open
localhost:8080
in a web browser to view the project.
Interactive 3D Graphics on Udacity. Course Link