dmnsgn / geom-merge

Merges multiple geometries into one

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

geom-merge

Merge a list of geometries (simplicial complex) into one geometry and concat all other attributes.

Installation

npm install geom-merge

Usage

import merge from "geom-merge";
import { cube, sphere } from "primitive-geometry";

const geometry = merge([cube, sphere]);

API

merge(geometries): geometry

Parameters

  • geometries: Array<geometry> – array of geometry objects

Returns

geometry: { positions: TypedArray|Array, cells: TypedArray|Array, ...otherAttributesMerged: TypedArray|Array } - new geometry with merged attributes and cells from provided geometries.

Note 1: Each geometry object requires at least positions and cells. Other properties like uvs or normals will be merged as well if available in all geometries.

Note 2: This module doesn't perform CSG operations

License

MIT. See license file.

About

Merges multiple geometries into one

License:MIT License


Languages

Language:JavaScript 64.6%Language:HTML 35.4%