public void addPoint(long handId, PVector handPoint) {
      ArrayList curList = getPointList(handId);

      curList.add(0, handPoint);
      if (curList.size() > _maxPoints) curList.remove(curList.size() - 1);
    }
예제 #2
0
파일: BChar.java 프로젝트: notlion/rake-p5
 public void removeChild(BChar childNode) {
   children.remove(childNode);
 }