Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
pictLIB.h
00001 00002 #ifndef MBED_PICTLIB_H 00003 #define MBED_PICTLIB_H 00004 00005 #include "mbed.h" 00006 00007 class PICTLIB { 00008 public: 00009 00010 PICTLIB(int _dsp_x,int _dsp_y); 00011 void scroll(char* in_pic, char* out_pic); 00012 void rotation(float rad, char* in_pic, char* out_pic); 00013 float pi; 00014 00015 protected: 00016 00017 00018 int dsp_x; 00019 int dsp_y; 00020 float dsp_center_x; 00021 float dsp_center_y; 00022 }; 00023 00024 #endif
Generated on Tue Jul 12 2022 20:04:43 by
