This isn't finished, and has lots of debugging code still in, but it's working better...
[synfig.git] / synfig-core / trunk / src / synfig / valuenode_bline.cpp
index 82e5a42..83a7c66 100644 (file)
@@ -423,7 +423,7 @@ ValueNode_BLine::operator()(Time t)const
 
                        // Find "end" of dynamic group - ie. search forward along
                        // the bline from the current point until we find a point
-                       // which is more 'on'than the current one
+                       // which is more 'on' than the current one
                        end_iter=iter;
 //                     for(++end_iter;begin_iter!=list.end();++end_iter)
                        for(++end_iter;end_iter!=list.end();++end_iter)
@@ -570,7 +570,7 @@ ValueNode_BLine::operator()(Time t)const
                                        curr_coord_sys[0]=(begin_pos_at_current_time - end_pos_at_current_time).norm();
                                        curr_coord_sys[1]=curr_coord_sys[0].perp();
 
-                                       // Invert (transpose) the last of these matricies, since we use it for transform back
+                                       // Invert (transpose) the last of these matrices, since we use it for transform back
                                        swap(curr_coord_sys[0][1],curr_coord_sys[1][0]);
                                }