Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sutac/renderer3d
This is a project that explores 3D rendering. It allows you to draw 3D objects loaded from .obj files and provides a simple engine for creating interactive experiences.
https://github.com/sutac/renderer3d
3d 3d-graphics rendering rendering-3d-graphics rendering-engine svelte sveltekit typescript
Last synced: 4 days ago
JSON representation
This is a project that explores 3D rendering. It allows you to draw 3D objects loaded from .obj files and provides a simple engine for creating interactive experiences.
- Host: GitHub
- URL: https://github.com/sutac/renderer3d
- Owner: sutaC
- Created: 2024-05-01T18:47:33.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-14T21:48:23.000Z (5 months ago)
- Last Synced: 2024-06-14T22:55:08.511Z (5 months ago)
- Topics: 3d, 3d-graphics, rendering, rendering-3d-graphics, rendering-engine, svelte, sveltekit, typescript
- Language: TypeScript
- Homepage: https://renderer.sutac.pl/
- Size: 580 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Renderer3D
This is a project that explores 3D rendering. It allows you to draw 3D objects loaded from `.obj` files and provides a simple engine for creating interactive experiences.
## Where to find the official release?
The github repository for this project is public and can be found [here](https://github.com/sutaC/Renderer3D)
The official deploy is available at [this address](https://sutac-renderer3d.netlify.app/)
> The project is made and managed by [sutaC](https://github.com/sutaC)
## Documentation
The documentation is generated using TypeDoc and can be found [here](./docs/index.html)
> To generate documentation, simply use the command `npm run document`
## Technologies
- Svelte / SvelteKit
- Typescript
- TypeDoc## Running project
1. Install dependencies using:
```bash
npm install
```3. Start a development server
```bash
npm run dev# or start the server and open the app in a new browser tab
npm run dev -- --open
```## Building
To create a production version of your app:
```bash
npm run build
```You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.