vcglib/wrap/gui/coordinateframe.cpp

369 lines
12 KiB
C++
Raw Normal View History

2008-02-16 15:12:30 +01:00
/****************************************************************************
* MeshLab o o *
* A versatile mesh processing toolbox o o *
* _ O _ *
* Copyright(C) 2008 \/)\/ *
* Visual Computing Lab /\/| *
* ISTI - Italian National Research Council | *
* \ *
* All rights reserved. *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) *
* for more details. *
* *
****************************************************************************/
/****************************************************************************
History
$Log: not supported by cvs2svn $
Revision 1.7 2008/02/26 18:22:42 benedetti
corrected after quaternion/similarity/trackball changes
Revision 1.6 2008/02/22 20:34:35 benedetti
corrected typo
2008-02-22 21:34:35 +01:00
Revision 1.5 2008/02/22 20:04:02 benedetti
many user interface improvements, cleaned up a little
Revision 1.4 2008/02/17 20:52:53 benedetti
some generalization made
2008-02-17 21:52:53 +01:00
Revision 1.3 2008/02/16 14:12:30 benedetti
first version
2008-02-16 15:12:30 +01:00
****************************************************************************/
#include <GL/glew.h>
#include <wrap/gl/math.h>
#include <wrap/gl/space.h>
#include <wrap/gl/addons.h>
#include "coordinateframe.h"
using namespace vcg;
CoordinateFrame::CoordinateFrame(float s)
:basecolor(Color4b::White),xcolor(Color4b::Red)
,ycolor(Color4b::Green),zcolor(Color4b::Blue),size(s),linewidth(2.0)
,font(),drawaxis(true),drawlabels(true),drawvalues(false)
{
font.setFamily("Helvetica");
}
void CoordinateFrame::Render(QGLWidget* glw)
{
assert( glw!= NULL);
glPushAttrib(GL_ALL_ATTRIB_BITS);
glDisable(GL_LIGHTING);
glDisable(GL_TEXTURE_2D);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_LINE_SMOOTH);
glEnable(GL_POINT_SMOOTH);
glLineWidth(linewidth);
glPointSize(linewidth*1.5);
Point3d o(0,0,0);
Point3d a(size,0,0);
Point3d b(0,size,0);
Point3d c(0,0,size);
// Get gl state values
double mm[16],mp[16];
GLint vp[4];
glGetDoublev(GL_MODELVIEW_MATRIX,mm);
glGetDoublev(GL_PROJECTION_MATRIX,mp);
glGetIntegerv(GL_VIEWPORT,vp);
float slope_a=calcSlope(-a,a,2*size,10,mm,mp,vp);
float slope_b=calcSlope(-b,b,2*size,10,mm,mp,vp);
float slope_c=calcSlope(-c,c,2*size,10,mm,mp,vp);
float scalefactor = size*0.02f;
if(drawaxis){
glBegin(GL_LINES);
glColor(xcolor);
glVertex(-a); glVertex(a);
glColor(ycolor);
glVertex(-b); glVertex(b);
glColor(zcolor);
glVertex(-c); glVertex(c);
glEnd();
glColor(basecolor);
// assi positivi
drawTickedLine(o,a,size,slope_a,linewidth); // Draws x axis
drawTickedLine(o,b,size,slope_b,linewidth); // Draws y axis
drawTickedLine(o,c,size,slope_c,linewidth); // Draws z axis
//assi negativi
drawTickedLine(o,-a,size,slope_a,linewidth); // Draws x axis
drawTickedLine(o,-b,size,slope_b,linewidth); // Draws y axis
drawTickedLine(o,-c,size,slope_c,linewidth); // Draws z axis
glPushMatrix();
glTranslate(a);
glScalef(scalefactor,scalefactor,scalefactor);
Add_Ons::Cone(10,linewidth*1.5,linewidth*0.5,true);
glPopMatrix();
glPushMatrix();
glTranslate(b);
glRotatef(90,0,0,1);
glScalef(scalefactor,scalefactor,scalefactor);
Add_Ons::Cone(10,linewidth*1.5,linewidth*0.5,true);
glPopMatrix();
glPushMatrix();
glTranslate(c);
glRotatef(-90,0,1,0);
glScalef(scalefactor,scalefactor,scalefactor);
Add_Ons::Cone(10,linewidth*1.5,linewidth*0.5,true);
glPopMatrix();
}
if(drawlabels){
font.setBold(true);
2008-02-17 21:52:53 +01:00
font.setPixelSize(12);
2008-02-22 21:34:35 +01:00
float d=size+scalefactor*linewidth*1.5;
2008-02-16 15:12:30 +01:00
glColor(xcolor);
glw->renderText(d,0,0,QString("X"),font);
2008-02-16 15:12:30 +01:00
glColor(ycolor);
glw->renderText(0,d,0,QString("Y"),font);
2008-02-16 15:12:30 +01:00
glColor(zcolor);
glw->renderText(0,0,d,QString("Z"),font);
2008-02-16 15:12:30 +01:00
}
if(drawvalues){
font.setBold(false);
font.setPixelSize(8);
float i;
glColor(Color4b::LightGray);
for(i=slope_a;i<size;i+=slope_a){
glw->renderText( i,0,0,QString(" %1").arg(i,3,'f',1),font);
glw->renderText(-i,0,0,QString("-%1").arg(i,3,'f',1),font);
}
for(i=slope_b;i<size;i+=slope_b){
glw->renderText(0, i,0,QString(" %1").arg(i,3,'f',1),font);
glw->renderText(0,-i,0,QString("-%1").arg(i,3,'f',1),font);
}
for(i=slope_c;i<size;i+=slope_c){
glw->renderText(0,0, i,QString(" %1").arg(i,3,'f',1),font);
glw->renderText(0,0,-i,QString("-%1").arg(i,3,'f',1),font);
}
}
glPopAttrib();
assert(!glGetError());
}
void CoordinateFrame::drawTickedLine(const Point3d &a,const Point3d &b, float dim,float tickDist,float linewidth)
{
Point3d v(b-a);
v = v /dim; // normalize without computing square roots and powers
glBegin(GL_POINTS);
float i;
for(i=tickDist;i<dim;i+=tickDist)
glVertex3f(a[0] + i*v[0],a[1] + i*v[1],a[2] + i*v[2]);
glEnd();
glPushAttrib(GL_POINT_BIT);
glPointSize(linewidth*3);
glBegin(GL_POINTS);
glVertex3f(a[0] + dim*v[0],a[1] + dim*v[1],a[2] + dim*v[2]);
glEnd();
glPopAttrib();
}
float CoordinateFrame::calcSlope(const Point3d &a,const Point3d &b,float dim,int spacing,double *mm,double *mp,GLint *vp)
{
Point3d p1,p2;
gluProject(a[0],a[1],a[2],mm,mp,vp,&p1[0],&p1[1],&p1[2]);
gluProject(b[0],b[1],b[2],mm,mp,vp,&p2[0],&p2[1],&p2[2]);
p1[2]=p2[2]=0;
float tickNum = spacing/Distance(p2,p1);// pxl spacing
float slope = dim*tickNum;
float nslope = math::Min(
math::Min(niceRound(slope), 0.5f*niceRound(2.0f*slope)),
0.2f*niceRound(5.0f*slope));
nslope = math::Max<float>(niceRound(dim*.001f),nslope); // prevent too small slope
return nslope;
}
float CoordinateFrame::niceRound(float val)
{
return powf(10.f,ceil(log10(val)));
}
MovableCoordinateFrame::MovableCoordinateFrame(float size)
:CoordinateFrame(size),position(0,0,0),rotation(0,Point3f(1,0,0))
{
// nothing here
}
void MovableCoordinateFrame::Render(QGLWidget* gla)
{
glPushMatrix();
glTranslate(position);
Matrix44f mrot;
rotation.ToMatrix(mrot);
glMultMatrix(Inverse(mrot));
2008-02-16 15:12:30 +01:00
CoordinateFrame::Render(gla);
glPopMatrix();
}
void MovableCoordinateFrame::GetTransform(Matrix44f & transform)
{
// costruisco la matrice che porta le coordinate in spazio di mondo
// resetto la trasf
transform.SetIdentity();
// ruoto
Matrix44f rot;
rotation.ToMatrix(rot);
transform = Inverse(rot) * transform ;
2008-02-16 15:12:30 +01:00
// sposto in posizione
Matrix44f pos;
pos.SetTranslate(position);
transform = pos * transform;
}
void MovableCoordinateFrame::Reset(bool reset_position,bool reset_alignment)
{
if(reset_position)
position = Point3f(0,0,0);
if(reset_alignment)
rotation = Quaternionf(0,Point3f(1,0,0));
}
void MovableCoordinateFrame::SetPosition(const Point3f newpos)
{
position = newpos;
}
void MovableCoordinateFrame::SetRotation(const Quaternionf newrot)
{
rotation = newrot;
}
Point3f MovableCoordinateFrame::GetPosition()
{
return position;
}
Quaternionf MovableCoordinateFrame::GetRotation()
{
return rotation;
}
2008-02-17 21:52:53 +01:00
void MovableCoordinateFrame::Rot(float angle_deg,const Point3f axis)
2008-02-16 15:12:30 +01:00
{
Similarityf s;
s.SetRotate(angle_deg*M_PI/180.0f,(rotation).Rotate(axis));
2008-02-16 15:12:30 +01:00
Move(s);
}
2008-02-17 21:52:53 +01:00
void MovableCoordinateFrame::AlignWith(const Point3f pri,const Point3f secondary,const char c1, const char c2)
2008-02-16 15:12:30 +01:00
{
const float EPSILON=1e-6;
Point3f primary=pri;
if( primary.Norm() < EPSILON*size )
return;
primary.Normalize(); // ho l'asse primario, lo normalizzo
2008-02-17 21:52:53 +01:00
Plane3f plane(0,primary); // piano di proiezione per la seconda rotazione
Point3f x(1,0,0),y(0,1,0),z(0,0,1);
Point3f first(0,0,0),second(0,0,0),third(0,0,0);
if(c1=='X'){ first = x;
if((c2=='Y')||(c2==' ')){ second = y; third = z; }
else if(c2=='Z'){ second = z; third = y; }
else assert (0);
} else if(c1=='Y'){ first = y;
if((c2=='Z')||(c2==' ')){ second = z; third = x; }
else if(c2=='X'){ second = x; third = z; }
else assert (0);
} else if(c1=='Z'){ first = z;
if((c2=='X')||(c2==' ')){ second = x; third = y; }
else if(c2=='Y'){ second = y; third = x; }
else assert (0);
} else assert (0);
Point3f old_first = Inverse(rotation).Rotate(first); // l'asse 1
Point3f old_second_pro = plane.Projection(Inverse(rotation).Rotate(second)); //la proiezione dell'asse 2
Point3f old_third_pro = plane.Projection(Inverse(rotation).Rotate(third)); //la proiezione dell'asse 3
// allinea l'asse 1 corrente all'asse primary
RotateToAlign(old_first,primary); // prima rotazione
2008-02-16 15:12:30 +01:00
Point3f secondary_pro = plane.Projection(secondary); // la proiezione di secondary
2008-02-17 21:52:53 +01:00
Point3f new_second_pro = plane.Projection(Inverse(rotation).Rotate(second)); // la proiezione dell'asse 2 dopo la prima rotazione
2008-02-16 15:12:30 +01:00
// se c'e` un asse secondary e la sua proiezione non e` 0
if( secondary.Norm() > EPSILON*size && secondary_pro.Norm() > EPSILON ){
2008-02-17 21:52:53 +01:00
// allinea la proiezione dell'asse 2 dopo la prima rotazione alla proiezione dell'asse secondary
2008-02-16 15:12:30 +01:00
secondary_pro.Normalize();
2008-02-17 21:52:53 +01:00
RotateToAlign(new_second_pro,secondary_pro);
2008-02-16 15:12:30 +01:00
return;
}
2008-02-17 21:52:53 +01:00
// creco di riallineare l'asse 2
if ( old_second_pro.Norm() > EPSILON ) {
// allinea la proiezione dell'asse 2 dopo la prima rotazione alla proiezione dell'asse 2
old_second_pro.Normalize();
RotateToAlign(new_second_pro,old_second_pro);
2008-02-16 15:12:30 +01:00
return;
}
2008-02-17 21:52:53 +01:00
// cerco di riallineare l'asse 3
Point3f new_third_pro = plane.Projection(Inverse(rotation).Rotate(third)); //la proiezione dell'asse 3 dopo la prima rotazione
assert(old_third_pro.Norm() > EPSILON ); // la proiezione dell'asse 3 non dovrebbe essere 0
// allinea la proiezione dell'asse 3 dopo la prima rotazione alla proiezione dell'asse 3
old_third_pro.Normalize();
RotateToAlign(new_third_pro,old_third_pro);
2008-02-16 15:12:30 +01:00
}
void MovableCoordinateFrame::Move(const Similarityf track)
{
position = position + track.tra;
rotation = rotation * Inverse(track.rot);
2008-02-16 15:12:30 +01:00
}
void MovableCoordinateFrame::RotateToAlign(const Point3f source, const Point3f dest)
{
const float EPSILON=1e-6;
// source e dest devono essere versori
assert( math::Abs(source.Norm() - 1) < EPSILON);
assert( math::Abs(dest.Norm() - 1) < EPSILON);
Point3f axis = dest ^ source;
float sinangle = axis.Norm();
float cosangle = dest * source;
float angle = math::Atan2(sinangle,cosangle);
if( math::Abs(angle) < EPSILON )
return; // angolo ~ 0, annullo
if( math::Abs(math::Abs(angle)-M_PI) < EPSILON){
// devo trovare un asse su cui flippare
Plane3f plane(0,source);
axis=plane.Projection(Point3f(1,0,0)); // proietto un punto a caso sul piano normale a source
if(axis.Norm() < EPSILON){ // source era ~ [1,0,0]...
axis=plane.Projection(Point3f(0,1,0));
assert(axis.Norm() > EPSILON); // quest'altro punto deve andare bene
}
}
rotation = rotation * Quaternionf(angle,axis);
}