spline3_hermite_bounds
spline3_hermite_bounds(result, result_offset, result_stride, p0, p1, m0, m1)
Compute y0,y1 bounds of a cubic Hermite spline.
Lower bound will be written into result[offset], upper bounds will be written into result[offset+result_stride]
Kind: global function
Author: Alex Goldring
Copyright: Company Named Limited (c) 2025
| Param | Type | Description |
|---|---|---|
| result | Array.<number> | Float32Array | output will be written here, only y0 and y1 |
| result_offset | number | offset into the result array |
| result_stride | number | useful for mixing multidimensional results |
| p0 | number | |
| p1 | number | |
| m0 | number | |
| m1 | number |