moveIndividualAlongCurve method
- Move an individual element along the curve by a specific amount
*
- @param {number} index Which element to update
- @param {number} offset Move by how much
- @param {number} index Which element to update
Implementation
moveIndividualAlongCurve(index, int offset) {
this.offsets[index] += offset;
this.writeChanges(index);
}