vcglib/wrap/gui
Paolo Cignoni 7befff7bec make point2 derived Eigen's Matrix, and a set of minimal fixes to make meshlab compile
with both old and new version. The fixes include:
- dot product: vec0 * vec1 => vec0.dot(vec1) (I added .dot() to the old Point classes too)
- Transpose: Transpose is an Eigen type, so we cannot keep it if Eigen is used. Therefore
  I added a .tranpose() to old matrix classes, and modified most of the Transpose() to transpose()
  both in vcg and meshlab. In fact, transpose() are free with Eigen, it simply returns a transpose
  expression without copies. On the other be carefull:  m = m.transpose() won't work as expected,
  here me must evaluate to a temporary: m = m.transpose().eval(); However, this operation in very
  rarely needed: you transpose at the same sime you set m, or you use m.transpose() directly.
- the last issue is Normalize which both modifies *this and return a ref to it. This behavior
  don't make sense anymore when using expression template, e.g., in (a+b).Normalize(), the type
  of a+b if not a Point (or whatever Vector types), it an expression of the addition of 2 points,
  so we cannot modify the value of *this, since there is no value. Therefore I've already changed
  all those .Normalize() of expressions to the Eigen's version .normalized().
- Finally I've changed the Zero to SetZero in the old Point classes too.
2008-10-28 00:59:46 +00:00
..
activecoordinateframe.cpp improved comments 2008-03-21 16:09:02 +00:00
activecoordinateframe.h Added doxygen documentation 2008-03-21 16:08:43 +00:00
coordinateframe.cpp make point2 derived Eigen's Matrix, and a set of minimal fixes to make meshlab compile 2008-10-28 00:59:46 +00:00
coordinateframe.h made generic functions static 2008-04-10 11:09:34 +00:00
frustum.h *** empty log message *** 2005-04-14 11:35:09 +00:00
rubberband.cpp first version, adapted from meshlab's editmeasure plugin 2008-02-16 12:00:35 +00:00
rubberband.h Added doxygen documentation 2008-03-11 09:08:46 +00:00
trackball.cpp Added by default rotation on middle + alt, (almost a standard on various 3d packages). Kind patch submitted by Sebastian Herholz. 2008-09-22 23:10:00 +00:00
trackball.h *** empty log message *** 2007-12-21 12:29:34 +00:00
trackmode.cpp Port to eigen2: state of the mess: 2008-10-27 19:35:17 +00:00
trackmode.h added snap to CylinderMode 2008-02-15 20:57:22 +00:00
trackrecorder.h "void" added 2005-04-14 21:29:03 +00:00
trackutils.h Port to eigen2: state of the mess: 2008-10-27 19:35:17 +00:00
view.h Port to eigen2: state of the mess: 2008-10-27 19:35:17 +00:00