public void addTick(Cam c) { tickArr.add(new Tick(hs1.getSliderPos(), hsYPos, c, hs1.getPosInSeconds())); // set the older ticks to inactive for (int i = 0; i < tickArr.size() - 1; i++) { tickArr.get(i).setToInActive(); } // sort the ticks in case one was placed before an existing tick Collections.sort(tickArr); }
public void draw() { fill(255); hs1.update(); hs1.display(); stroke(0); line(hsXPos, hsYPos, hsWidth + hsXPos, hsYPos); }
public int getScrollbarTimeInSecs() { return hs1.getPosInSeconds(); }
public void pause() { println(hs1.getSliderPos()); hs1.executePause(); println(hs1.getSliderPos()); }
// used or scrubbing public void setFrame(int frameNum) { hs1.setSposWithFrame(frameNum); }
public void play() { hs1.executePlay(); }