Androidプログラミング—Processingでかんたん
中古価格
¥1,889 から
(2015/11/7 15:07時点)
【間違い?】「Androidプログラミング—Processingでかんたん」でうまくいかないときの対処法【古い?】 では本の通りには進められないことと、その最初の対策としてライブラリ「Ketai」を使用するためにProcessing3を使用することを書きました。
【間違い?】「Androidプログラミング—Processingでかんたん」でうまくいかないときの対処法【古い?】 で一通りProcessing3を使える環境は整いました。しかし、仕様の変更などで「Androidプログラミング—Processingでかんたん」の通りに書いたプログラムでも動作しないものがあります。それらのプログラムについて修正が必要なところを書いていきます。
180ページ
simple_cam.pde
import edu.uic.ketai.*;
↓
import ketai.camera.*;
181から182ページ
ketai_cam.pde
import edu.uic.ketai.*;
↓
import ketai.camera.*;
filter ( GRAY );
↓
//filter(GRAY);
184から185ページ
gps_location.pde
void onLocationEvent( double _latitude, double _longitude, double _altitude)
↓
void onLocationEvent(Location _location)
longitude = _longitude;
latitude = _latitude;
altitude = _altitude;
↓
longitude = _location.getLongitude();
latitude = _location.getLatitude();
altitude = _location.getAltitude();
187から188ページ
ketai_accel_1.pde
特に修正箇所なし
190から192ページ
ketai_accel_2.pde
特に修正箇所なし
194から195ページ
ketai_mag1.pde
特に修正箇所なし
197から199ページ
ketai_mag2.pde
float compass_N; //コンパス方位
↓
//float compass_N;
201から204ページ
ketai_mag3.pde
float compass_N; //コンパス方位
↓
//float compass_N;
続きはまた書きます。
【このカテゴリーの最新記事】
- no image
- no image