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

      curList.add(0, handPoint);
      if (curList.size() > _maxPoints) curList.remove(curList.size() - 1);
    }
Example #2
0
 public void removeChild(BChar childNode) {
   children.remove(childNode);
 }