欧美极品高清xxxxhd,国产日产欧美最新,无码AV国产东京热AV无码,国产精品人与动性XXX,国产传媒亚洲综合一区二区,四库影院永久国产精品,毛片免费免费高清视频,福利所导航夜趣136
標題:
processing數組-圖片系列
[打印本頁]
作者:
51hei小林
時間:
2016-9-24 22:58
標題:
processing數組-圖片系列
如下用processing實現圖片切換,改天在raspberry pi運行下看看效果
int
numFrames
=
5
;
PImage [] images
=
new
PImage[numFrames];
int
currentFrame
=
1
;
void
setup(){
size(
440
,
360
);
for
(
int
i
=
1
;i
<
images.length;i
++
){
String
imageName
=
"frame-"
+
nf(i,
4
)
+
".png"
;
images[i
-1
]
=
loadImage(imageName);
}
frameRate(
1
);
//每貞一秒鐘
}
void
draw(){
int
s
=
second();
// println(s);
if
(s
%
3
==
0
){
//每隔3秒鐘換圖一次
changePic();
}
}
歡迎光臨 (http://www.raoushi.com/bbs/)
Powered by Discuz! X3.1