Skip to content

Commit

Permalink
Fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard10 committed Oct 13, 2021
1 parent 2b7a9a1 commit ba376fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions forgi/threedee/utilities/broken_ml_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,9 @@ void testdot(){
Basis b3 = b1*b2;
std::cout<<"B3:\n";
b3.print();
assert (b3[0][0]==8);
assert (b3[1][0]==20);
assert (b3[1][2]==32);
assert (b3.coords[0][0]==8);
assert (b3.coords[1][0]==20);
assert (b3.coords[1][2]==32);

Vect a=Vect(1.,2.,5.);
Vect b=b1.apply_to(a);
Expand Down

0 comments on commit ba376fd

Please sign in to comment.