# marching-simplex-table

> Construct the table entries for the marching simplex method

Latest version **1.0.0** (published 2014-11-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install marching-simplex-table
pnpm add marching-simplex-table
yarn add marching-simplex-table
bun add marching-simplex-table
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2014-11-22 |
| First published | 2014-11-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Mikola Lysenko |
| Maintainers | mikolalysenko |
| Keywords | marching, simplex, table, isosurface |

## Links

- npm: https://www.npmjs.com/package/marching-simplex-table
- Repository: https://github.com/mikolalysenko/marching-simplex-table
- Issues: https://github.com/mikolalysenko/marching-simplex-table/issues
- npm.io page: https://npm.io/package/marching-simplex-table

## Dependencies (1)

- [convex-hull](https://npm.io/package/convex-hull.md) ^1.0.3

## 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

- 1.0.0 (latest) — 2014-11-22

## README

marching-simplex-table
======================
Constructs a look up table for the marching simplex isosurface extraction algorithm.  The entries of this table correspond to the different topologies that can occur for marching simplices.

# Example

```javascript
var makeTable = require('marching-simplex-table')

console.log(makeTable(2))
console.log(makeTable(3))
```

# Install

```
npm install marching-simplex-table
```

# API

#### `require('marching-simplex-table')(d)`
Constructs the marching simplex table for all simplices of dimension `d`.  The result is a table with 2^(d+1) entries, each corresponding to the (d-1) dimensional cells needed to generate the boundary of the simplex.  Each (d-1) cell is coded as an ordered list of edges in the original simplex giving the vertices of the resulting simplex.

* `d` is the dimension of the table to generate

**Returns** A table of simplex topologies

# Credits
(c) 2014 Mikola Lysenko. MIT License

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