*** empty log message ***

This commit is contained in:
Paolo Cignoni 2006-08-23 15:41:32 +00:00
parent 837f3482f5
commit c5e02633d8
2 changed files with 10 additions and 3 deletions

View File

@ -25,6 +25,13 @@
History
$Log: not supported by cvs2svn $
Revision 1.10 2006/02/13 13:15:52 cignoni
Added Scale and Translate methods.
Added many drawing hints and raised the default num. of steps when drawing circles.
Added MouseDown without coords (for remembering changes of keys modifiers)
Added ZMode to the default modes under Alt+left
Added DrawPostApply (to be completed)
Revision 1.9 2005/10/17 01:29:46 cignoni
Main restructuring. Removed the Draw function and slightly changed the meaning of the trackball itself.
See the notes at the beginning of trackball.h
@ -175,7 +182,7 @@ namespace vcg {
//operating
void GetView();\
void GetView();
void Apply(bool Draw=true);
void DrawPostApply();
void ApplyInverse();

View File

@ -8,7 +8,7 @@
* \ *
* All rights reserved. *
* *
* This program is free software; you can redistribute it and/or modify *
* 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. *
@ -86,7 +86,7 @@ using namespace vcg;
void TrackMode::Apply(Trackball *trackball, float WheelNotch) {
trackball->track.sca*=pow(1.2f,-WheelNotch);
trackball->track.sca*=pow(1.2f,WheelNotch);
}
void ScaleMode::Apply(Trackball *tb, Point3f new_point) {