Processing을 Leapmotoin으로 움직여 보았습니다.

1429 단어 processingLeapMotion
연말이고 오랜만에 Processing에서도 만질까 생각했기 때문에 메모.

사용한 라이브러리는 이것입니다.
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();
}

이런 느낌입니다.


이것만으로는 맛이 없기 때문에 픽업 파티클과 함께


이런 느낌입니다.

좋은 웹페이지 즐겨찾기