X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fbuilders%2Fvertexbuilder.h;h=cfb4b31b46ba0d1ec003daac38ac6e57323d2175;hp=5c29734607a9775e123ebef26446293cac6f01e3;hb=a3cc9f4469153396c7ad0868f3cbb2d2f698d710;hpb=e1d07383b29e8581230b50f45606192d1f21f5dd diff --git a/source/builders/vertexbuilder.h b/source/builders/vertexbuilder.h index 5c297346..cfb4b31b 100644 --- a/source/builders/vertexbuilder.h +++ b/source/builders/vertexbuilder.h @@ -89,12 +89,6 @@ public: void tangent(const Vector3 &t) { attrib(get_attribute_semantic(TANGENT3), mtx*Vector4(t.x, t.y, t.z, 0)); } - void binormal(float x, float y, float z) - { binormal(Vector3(x, y, z)); } - - void binormal(const Vector3 &b) - { attrib(get_attribute_semantic(BINORMAL3), mtx*Vector4(b.x, b.y, b.z, 0)); } - void texcoord(float s) { texcoord(s, 0, 0, 1); }