update copyright notice

This commit is contained in:
Hartmut Seichter 2021-01-03 10:49:59 +01:00
parent 8253756e4c
commit 77e254872f
44 changed files with 213 additions and 116 deletions

View file

@ -19,7 +19,7 @@ int main(int argc,char **argv) {
auto scale = pw::matrix_transform<float>::scale_matrix({2,2,2});
amesh.apply(scale);
amesh.transform(scale);
std::cout << "after scale" << std::endl;
@ -34,7 +34,7 @@ int main(int argc,char **argv) {
auto rot_mat = aa.to_matrix();
amesh.apply(rot_mat);
amesh.transform(rot_mat);
std::cout << "after rotate" << std::endl;