setXY method

  1. @override
InterleavedBufferAttribute setXY(
  1. int index,
  2. double x,
  3. double y
)
override

Sets the x and y components of the item at the given index.

Implementation

@override
InterleavedBufferAttribute setXY(int index, x, y) {
		index = index * this.data!.stride + this.offset;

		if ( this.normalized ) {
			x = MathUtils.normalize( x, this.array );
			y = MathUtils.normalize( y, this.array );
		}

		this.data!.array[ index + 0 ] = x;
		this.data!.array[ index + 1 ] = y;

		return this;
}