protected void set(TexCoordGenerationRetained tr) { super.set(tr); genMode = tr.genMode; format = tr.format; enable = tr.enable; planeS.set(tr.planeS); planeT.set(tr.planeT); planeR.set(tr.planeR); }
/** * Retrieves a copy of the plane equation used to generate the Q coordinate. * * @param planeQ the Q coordinate plane equation */ final void getPlaneQ(Vector4f planeQ) { planeQ.set(this.planeQ); }
/** * Retrieves a copy of the plane equation used to generate the T coordinate. * * @param planeT the T coordinate plane equation */ final void getPlaneT(Vector4f planeT) { planeT.set(this.planeT); }
/** * Retrieves a copy of the plane equation used to generate the R coordinate. * * @param planeR the R coordinate plane equation */ final void getPlaneR(Vector4f planeR) { planeR.set(this.planeR); }
/** * Retrieves a copy of the plane equation used to generate the S coordinate. * * @param planeS the S coordinate plane equation */ final void getPlaneS(Vector4f planeS) { planeS.set(this.planeS); }