JOML-CI / JOML

A Java math library for OpenGL rendering calculations
MIT License
729 stars 104 forks source link

typo in vector4f.set #278

Closed brunesto closed 3 years ago

brunesto commented 3 years ago

Hello, Vector4f.java, at line 518

public Vector4f set(float[] xyzw) { this.x = xyzw[0]; this.y = xyzw[1]; this.z = xyzw[2]; this.w = xyzw[2]; // ?? return this; }

httpdigest commented 3 years ago

Sorry about that. Thanks for reporting!