Processing을 Leapmotoin으로 움직여 보았습니다.
1429 단어 processingLeapMotion
사용한 라이브러리는 이것입니다.
htps : // 기주 b. 코 m / 온후 r 마치 ゔ / ぇ 아 p 모치 온 P5
git에서 zip 파일을 DL하고 대답하면
LeapMotionP5-master
라는 이름이므로 ↓의 이미지와 같이 이름을 변경하여 라이브러리 폴더에 돌입
우선 README.md에 작성된 샘플을 실행해 봅니다.
sketch_1.pde
import com.onformative.leap.LeapMotionP5;
import com.leapmotion.leap.Finger;
LeapMotionP5 leap;
public void setup() {
size(500, 500);
leap = new LeapMotionP5(this);
}
public void draw() {
background(0);
fill(255);
for (Finger finger : leap.getFingerList()) {
PVector fingerPos = leap.getTip(finger);
ellipse(fingerPos.x, fingerPos.y, 10, 10);
}
}
public void stop() {
leap.stop();
}
이런 느낌입니다.
이것만으로는 맛이 없기 때문에 픽업 파티클과 함께
이런 느낌입니다.
Reference
이 문제에 관하여(Processing을 Leapmotoin으로 움직여 보았습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kid84/items/b8bc52059f29edcbfb3a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)