# @m4xdev/particle

> A simple 3D particle library.

Latest version **0.0.4** (published 2023-04-17) · ISC license · 0 weekly downloads

## Install

```sh
npm install @m4xdev/particle
pnpm add @m4xdev/particle
yarn add @m4xdev/particle
bun add @m4xdev/particle
```

## Health

**Score 30/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2023-04-17 |
| First published | 2023-04-15 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 7.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Maxwell DeVos |
| Maintainers | maxdevos49 |
| Keywords | particle, particles, particle1d, particle2d, particle3d, vector, vectors, vector1d, vector2d, vector3d, immutable |

## Links

- npm: https://www.npmjs.com/package/@m4xdev/particle
- Repository: https://github.com/maxdevos49/particle
- Homepage: https://github.com/maxdevos49/particle#readme
- Issues: https://github.com/maxdevos49/particle/issues
- npm.io page: https://npm.io/package/@m4xdev/particle

## Dependencies (1)

- [@m4xdev/vector](https://npm.io/package/@m4xdev/vector.md) ^0.0.2

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 0.0.4 (latest) — 2023-04-17
- 0.0.3 — 2023-04-17
- 0.0.2 — 2023-04-17
- 0.0.1 — 2023-04-15

## README

# Particle 3D library

A simple light weight particle library. All utilities are immutable and return a new particle object literal.

# Example
```ts
const stationaryParticle = Particle3D.create();

const gravityForce = Vector3.create(0,-1);

const movedParticle = Particle3D.applyForce(stationaryParticle, gravityForce);
// movedParticle === {position: {x:0, y:-1, z:0}, velocity: {x:0, y:-0, z:0}}


```

---
_Source: https://npm.io/package/@m4xdev/particle · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
