resize Method
- If newLength is less than current length, just reset current length to newLength, effectively trimming active entries but preserving original capacity.
- If newLength is greater than current length, reallocate to (exactly) newLength, copy existing entries, and pad with padValue up to newLength.
resize(newLength: number, padValue: number0): void
Parameter | Type | Description |
---|---|---|
newLength | number | new data count |
padValue | number | value to use for padding if the length increases. |
Returns - void
Defined in
- geometry3d/GrowableFloat64Array.ts Line 196
Last Updated: 28 October, 2024
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.