diff -Nauwr include/S3DVertex.h include/S3DVertex.h --- include/S3DVertex.h 2005-08-20 22:17:44.000000000 +0200 +++ include/S3DVertex.h 2005-08-29 09:43:04.000000000 +0200 @@ -79,6 +79,10 @@ //! default constructor S3DVertex2TCoords() {}; + //! constructor + S3DVertex2TCoords(f32 x, f32 y, f32 z, f32 nx, f32 ny, f32 nz, SColor c, f32 tu, f32 tv, f32 tu2=0, f32 tv2=0) + : Pos(x,y,z), Normal(nx,ny,nz), Color(c), TCoords(tu,tv), TCoords2(tu2,tv2) {} + //! constructor with two different texture coords S3DVertex2TCoords(f32 x, f32 y, f32 z, const SColor& c, f32 tu, f32 tv, f32 tu2, f32 tv2) : Pos(x,y,z), Color(c), TCoords(tu,tv), TCoords2(tu2,tv2) {}