(self)
| 3 | |
| 4 | class FPS: |
| 5 | def __init__(self): |
| 6 | # store the start time, end time, and total number of frames |
| 7 | # that were examined between the start and end intervals |
| 8 | self._start = None |
| 9 | self._end = None |
| 10 | self._numFrames = 0 |
| 11 | |
| 12 | def start(self): |
| 13 | # start the timer |
nothing calls this directly
no outgoing calls
no test coverage detected