Browse Source

increment version and release history to reflect embree 2.0 support

Former-commit-id: 0f47c2475be69100a6ecbb797e74ec9284a3ffa1
Alec Jacobson (jalec 11 years ago
parent
commit
18ebc74e4d
3 changed files with 3 additions and 2 deletions
  1. 1 0
      RELEASE_HISTORY.txt
  2. 1 1
      VERSION.txt
  3. 1 1
      examples/bbw/main.cpp

+ 1 - 0
RELEASE_HISTORY.txt

@@ -1,3 +1,4 @@
+0.3.7  Embree2.0 support
 0.3.6  boost extra, patches, mosek 7 support, libiglbbw (mosek optional)
 0.3.5  More examples, naive primitive sorting
 0.3.3  Many more examples, ambient occlusion with Embree.

+ 1 - 1
VERSION.txt

@@ -3,4 +3,4 @@
 # Anyone may increment Minor to indicate a small change.
 # Major indicates a large change or large number of changes (upload to website)
 # World indicates a substantial change or release
-0.3.6
+0.3.7

+ 1 - 1
examples/bbw/main.cpp

@@ -257,7 +257,7 @@ int main(int argc, char * argv[])
   // Default bbw data and flags
   BBWData bbw_data;
   bbw_data.qp_solver = QP_SOLVER_IGL_ACTIVE_SET;
-  //bbw_data.qp_solver = QP_SOLVER_MOSEK;
+  bbw_data.qp_solver = QP_SOLVER_MOSEK;
   // Weights matrix
   MatrixXd W;
   if(!bbw(VV,TT,b,bc,bbw_data,W))