UNPKG

@numericelements/knot-sequence

Version:

A library for generating and manipulating knot sequences for b-spline curves and surfaces

11 lines (8 loc) 399 B
'use strict'; /** * Named constants for knot indices constructor types */ const KNOT_INDEX_INCREASING_SEQUENCE = "KnotIndexIncreasingSequence"; const KNOT_INDEX_STRICTLY_INCREASING_SEQUENCE = "KnotIndexStrictlyIncreasingSequence"; exports.KNOT_INDEX_INCREASING_SEQUENCE = KNOT_INDEX_INCREASING_SEQUENCE; exports.KNOT_INDEX_STRICTLY_INCREASING_SEQUENCE = KNOT_INDEX_STRICTLY_INCREASING_SEQUENCE;