code cleanup
authorsubhransu mohanty <sub.mohanty@samsung.com>
Wed, 10 Jul 2019 08:15:35 +0000 (17:15 +0900)
committerJunsuChoi <jsuya.choi@samsung.com>
Thu, 18 Jul 2019 11:04:28 +0000 (20:04 +0900)
example/lottie2gif.cpp
example/vectortest.cpp
src/vector/vmatrix.cpp
src/vector/vmatrix.h

index 939f63a..23d24a5 100644 (file)
@@ -2,6 +2,7 @@
 #include <rlottie.h>
 
 #include<iostream>
+#include<string>
 #include<vector>
 #include<array>
 
index 8038b58..a43afe5 100644 (file)
 
 int main()
 {
-    VInterpolator ip({0.667, 1}, {0.333 , 0});
-    for (float i = 0.0 ; i < 1.0 ; i+=0.05) {
-        std::cout<<ip.value(i)<<"\t";
-    }
-    std::cout<<std::endl;
     return 0;
 }
index f602468..f69d15a 100644 (file)
@@ -20,7 +20,6 @@
 #include <vglobal.h>
 #include <cassert>
 #include <cmath>
-#include <cstring>
 
 V_BEGIN_NAMESPACE
 
@@ -695,38 +694,5 @@ VPointF VMatrix::map(const VPointF &p) const
     }
     return {x, y};
 }
-static std::string type_helper(VMatrix::MatrixType t)
-{
-    switch (t) {
-    case VMatrix::MatrixType::None:
-        return "MatrixType::None";
-        break;
-    case VMatrix::MatrixType::Translate:
-        return "MatrixType::Translate";
-        break;
-    case VMatrix::MatrixType::Scale:
-        return "MatrixType::Scale";
-        break;
-    case VMatrix::MatrixType::Rotate:
-        return "MatrixType::Rotate";
-        break;
-    case VMatrix::MatrixType::Shear:
-        return "MatrixType::Shear";
-        break;
-    case VMatrix::MatrixType::Project:
-        return "MatrixType::Project";
-        break;
-    }
-    return "";
-}
-std::ostream &operator<<(std::ostream &os, const VMatrix &o)
-{
-    os << "[Matrix: "
-       << "type =" << type_helper(o.type()) << ", Data : " << o.m11 << " "
-       << o.m12 << " " << o.m13 << " " << o.m21 << " " << o.m22 << " " << o.m23
-       << " " << o.mtx << " " << o.mty << " " << o.m33 << " "
-       << "]" << std::endl;
-    return os;
-}
 
 V_END_NAMESPACE
index f762343..fe2f0ed 100644 (file)
@@ -81,8 +81,6 @@ public:
     bool                 operator==(const VMatrix &) const;
     bool                 operator!=(const VMatrix &) const;
     bool                 fuzzyCompare(const VMatrix &) const;
-    friend std::ostream &operator<<(std::ostream &os, const VMatrix &o);
-
 private:
     friend struct VSpanData;
     float              m11{1}, m12{0}, m13{0};