An open API service indexing awesome lists of open source software.

https://github.com/claudemuller/raycast-simulation.ts

A Raycasting simulation written in TypeScript with p5.js
https://github.com/claudemuller/raycast-simulation.ts

p5js raycasting simulation typescript

Last synced: 10 months ago
JSON representation

A Raycasting simulation written in TypeScript with p5.js

Awesome Lists containing this project

README

          

# Raycast Simualtion

A [Ray casting](https://en.wikipedia.org/wiki/Ray_casting) simulation written in TypeScript with [p5.js](https://p5js.org/).

![Raycast](screenshot.png)

## Requirements

- [node](https://nodejs.org/en)
- [yarn](https://yarnpkg.com/)
- or [npm](https://www.npmjs.com/)

## Installing Dependencies

```bash
yarn

// Or..
npm install
```

## Building

```bash
yarn start

// Or..
npm run start
```

## Run Tests

```bash
yarn test

// Or..
npm test
```