テスト用です。

Dependencies:   mbed

Revision:
0:8468a4403fea
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pictLIB/pictLIB.h	Tue Oct 11 11:09:42 2016 +0000
@@ -0,0 +1,24 @@
+
+#ifndef MBED_PICTLIB_H
+#define MBED_PICTLIB_H
+
+#include "mbed.h"
+
+class PICTLIB {
+public:
+
+    PICTLIB(int _dsp_x,int _dsp_y);
+    void scroll(char* in_pic, char* out_pic);
+    void rotation(float rad, char* in_pic, char* out_pic);
+	float pi;
+    
+protected:
+
+    
+    int dsp_x;
+	int dsp_y;
+	float dsp_center_x;
+	float dsp_center_y;
+};
+
+#endif
\ No newline at end of file