Module: types

types

A module that documents all types in the library.
Source:

Type Definitions

Connectivity

An array of positive integers.
Source:

ConnectivityList

A module:types.Matrix of positive integers. Each row of the matrix is a module:types.Connectivity.
Source:

Matrix

A 2D js array of numbers that: 1) has non-zero number of rows. (mat.length > 0). 2) has consistent non-zero column length. (mat[0].length === mat[1].length ... === mat[m-1].length > 0)
Source:

Vector

A 1D js array of numbers that has non-zero length.
Source: