diff --git a/apps/test/trackball/main.cpp b/apps/test/trackball/main.cpp index 040ca3e2..615a929e 100644 --- a/apps/test/trackball/main.cpp +++ b/apps/test/trackball/main.cpp @@ -1,5 +1,179 @@ -#include +#include +using namespace std; + +template class pippo { +public: + int a() { return 1; } +}; + +template <> class pippo { +public: + int a() { return 2; } +}; int main() { + pippo p; + cerr << p.a() << endl; + return 0; +} +/* +#include +#include + +#include +#include +#include +#include + +using namespace vcg; + +bool fullscreen = false; +//int width =1024; +//int height = 768; +int width = 800; +int height = 600; + + + +SDL_Surface *screen = NULL; + +bool init() { + + if(SDL_Init(SDL_INIT_VIDEO) != 0) { + return false; + } + + const SDL_VideoInfo *info = SDL_GetVideoInfo(); + int bpp = info->vfmt->BitsPerPixel; + + SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 5); + SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); + + int flags = SDL_OPENGL; + if(fullscreen) + flags |= SDL_FULLSCREEN; + + screen = SDL_SetVideoMode(width, height, bpp, flags); + if(!screen) { + return false; + } + + SDL_WM_SetIcon(SDL_LoadBMP("inspector.bmp"), NULL); + SDL_WM_SetCaption(" Inspector", "Inspector"); + + + glDisable(GL_DITHER); + glShadeModel(GL_SMOOTH); + glHint( GL_FOG_HINT, GL_NICEST ); + glEnable(GL_DEPTH_TEST); + glDepthFunc( GL_LEQUAL ); + glDisable(GL_LIGHTING); + + return true; +} + + + + +int wmain(int argc, unsigned short **argv) { + if(!init()) return -1; + + Trackball trackball; + + int quit = 0; + int x, y; + SDL_Event event; + while( !quit ) { + while( SDL_PollEvent( &event ) ){ + switch( event.type ) { + case SDL_QUIT: quit = 1; break; + + case SDL_KEYDOWN: + switch(event.key.keysym.sym) { + case SDLK_RSHIFT: + case SDLK_LSHIFT: + trackball.ButtonDown(Trackball::KEY_SHIFT); + break; + + case SDLK_RCTRL: + case SDLK_LCTRL: + trackball.ButtonDown(Trackball::KEY_CTRL); + break; + + case SDLK_RALT: + case SDLK_LALT: + trackball.ButtonDown(Trackball::KEY_ALT); + break; + } + break; + + case SDL_KEYUP: + switch(event.key.keysym.sym) { + case SDLK_q: exit(0); break; + + case SDLK_RSHIFT: + case SDLK_LSHIFT: + trackball.ButtonUp(Trackball::KEY_SHIFT); + break; + + case SDLK_RCTRL: + case SDLK_LCTRL: + trackball.ButtonUp(Trackball::KEY_CTRL); + break; + + case SDLK_RALT: + case SDLK_LALT: + trackball.ButtonUp(Trackball::KEY_ALT); + break; + } + break; + case SDL_MOUSEBUTTONDOWN: + x = event.button.x; + y = event.button.y; + trackball.MouseDown(x, y, Trackball::BUTTON_LEFT); + break; + case SDL_MOUSEBUTTONUP: + x = event.button.x; + y = event.button.y; + trackball.MouseUp(x, y, Trackball::BUTTON_LEFT); + break; + case SDL_MOUSEMOTION: + while(SDL_PeepEvents(&event, 1, SDL_GETEVENT, SDL_MOUSEMOTIONMASK)); + x = event.motion.x; + y = event.motion.y; + trackball.MouseMove(x, y); + break; + } + + } + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + glMatrixMode(GL_PROJECTION); + glLoadIdentity(); + gluPerspective(60, 1, 0.1, 100); + glMatrixMode(GL_MODELVIEW); + glLoadIdentity(); + gluLookAt(0,0,4, 0,0,0, 0,1,0); + glRotatef(130, 1, 1, 0); + glTranslatef(0, 0.7, 1); + + + trackball.SetPosition(Similarityf(Point3f(1, 0, 0))); + trackball.local.sca = 0.5; + trackball.GetView(); + trackball.Apply(); + trackball.Draw(); + + glColor3f(0, 1, 0); + glutWireCube(1); + + SDL_GL_SwapBuffers(); + } + + + // Clean up + SDL_Quit(); + + return -1; -} \ No newline at end of file +} + */ \ No newline at end of file diff --git a/apps/test/trackball/trackball.vcproj b/apps/test/trackball/trackball.vcproj index 1eadb49d..143d750b 100644 --- a/apps/test/trackball/trackball.vcproj +++ b/apps/test/trackball/trackball.vcproj @@ -20,6 +20,7 @@ @@ -59,6 +61,7 @@ Name="VCCLCompilerTool" Optimization="2" InlineFunctionExpansion="1" + AdditionalIncludeDirectories="c:\sf\vcg" PreprocessorDefinitions="WIN32;NDEBUG" MinimalRebuild="FALSE" WarningLevel="3"/> @@ -66,6 +69,7 @@ Name="VCCustomBuildTool"/> @@ -89,10 +93,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + class Similarity { public: Similarity() {} + Similarity(const Quaternion &q) { SetRotate(q); } + Similarity(const Point3 &p) { SetTranslate(p); } + Similarity(S s) { SetScale(s); } Similarity operator*(const Similarity &affine) const; Similarity &operator*=(const Similarity &affine); - Point3 operator*(const Point3 &p) const; + //Point3 operator*(const Point3 &p) const; Similarity &SetIdentity(); @@ -61,6 +64,7 @@ public: template Similarity &Invert(Similarity &m); template Similarity Inverse(const Similarity &m); +template Point3 operator*(const Point3 &p, const Similarity &m); template Similarity Similarity::operator*(const Similarity &a) const { @@ -77,13 +81,6 @@ template Similarity &Similarity::operator*=(const Similarity &a) tra = (rot.Rotate(a.tra)) * sca + tra; return *this; } - -template Point3 Similarity::operator*(const Point3 &p) const { - Point3 r = rot.Rotate(p); - r *= sca; - r += tra; - return r; -} template Similarity &Similarity::SetIdentity() { rot.FromAxis(0, Point3(1, 0, 0)); @@ -127,7 +124,7 @@ template Matrix44 Similarity::Matrix() const { } template void Similarity::FromMatrix(const Matrix44 &m) { - sca = pow(m.Determinant(), 1/3); + sca = (S)pow(m.Determinant(), 1/3); assert(sca != 0); Matrix44 t = m * Matrix44().SetScale(1/sca, 1/sca, 1/sca); rot.FromMatrix(t); @@ -157,6 +154,13 @@ template Similarity Interpolate(const Similarity &a, const Simil return r; } +template Point3 operator*(const Point3 &p, const Similarity &m) { + Point3 r = m.rot.Rotate(p); + r *= m.sca; + r += m.tra; + return r; +} + typedef Similarity Similarityf; typedef SimilaritySimilarityd;