setW method
Sets the w component of the vector at the given index.
Implementation
@override
InterleavedBufferAttribute setW(int index, w) {
if ( this.normalized ) w = MathUtils.normalize( w, this.array );
data!.array[index * data!.stride + offset + 3] = w;
return this;
}