Browse Source

*** empty log message ***

David Rose 25 years ago
parent
commit
8a704c7e28
1 changed files with 4 additions and 0 deletions
  1. 4 0
      panda/src/parametrics/curve.cxx

+ 4 - 0
panda/src/parametrics/curve.cxx

@@ -1534,6 +1534,10 @@ compute_seg_col(int c,
       LVecBase4f ov = GB * LVecBase4f(3.0*t*t, 2.0*t, 1.0, 0.0);
       if (parametrics_cat.is_debug()) {
 	parametrics_cat.debug()
+	  << "Matrix is:\n";
+	GB.write(parametrics_cat.debug(false), 2);
+	parametrics_cat.debug(false)
+	  << "vector is " << LVecBase4f(3.0*t*t, 2.0*t, 1.0, 0.0) << "\n"
 	  << "orig tangent = " << ov << "\n";
       }
       P.set_col(c, ov);