https://github.com/mahmoudmahm00d/calculation-project
Simulates the Parachute Jump Physics
https://github.com/mahmoudmahm00d/calculation-project
Last synced: 3 months ago
JSON representation
Simulates the Parachute Jump Physics
- Host: GitHub
- URL: https://github.com/mahmoudmahm00d/calculation-project
- Owner: mahmoudmahm00d
- Created: 2023-06-20T19:05:44.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-06T09:11:56.000Z (over 1 year ago)
- Last Synced: 2024-02-27T10:44:18.585Z (over 1 year ago)
- Language: JavaScript
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Parachute Fall Simulator
This repository contains a Node.js project that uses the three.js library to render 3D graphics in a web browser.
## Cloning the Repository
To clone this repository, run the following command in your terminal:
``` bash
git clone https://github.com/mahmoudmahm00d/calculation-project.git
```## Setup
Before running the project, you need to install its dependencies. To do so, run the following command in the project directory:
``` bash
npm install
```This will install the required packages listed in the `package.json` file.
## Running Locally
To run the project locally, use the following command:
``` bash
npx vite
```This will start the Node.js server and make the project available at `http://localhost:3000`.
Open a web browser and navigate to `http://localhost:3000` to see the rendered 3D graphics.
You can make changes to the project files and the server will automatically restart and reload the web page with the changes applied.
## Dependencies
This project uses the following dependencies:
- `vite`: A build tool and development server that supports hot-reloading and optimized builds.
- `three`: A JavaScript 3D graphics library.These dependencies are listed in the `package.json` file and are automatically installed when running `npm install`.