テスト用です。

Dependencies:   mbed

pictLIB/pictLIB.h

Committer:
jksoft
Date:
2016-10-11
Revision:
0:8468a4403fea

File content as of revision 0:8468a4403fea:


#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