Clock.rst 742 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Clock - Keeps track of time
  2. ---------------------------
  3. .. rubric:: Constructor
  4. .. class:: Clock(autoStart)
  5. //todo:description
  6. .. rubric:: Attributes
  7. .. attribute:: Clock.autoStart
  8. //todo:description
  9. .. attribute:: Clock.startTime
  10. //todo:description
  11. .. attribute:: Clock.oldTime
  12. //todo:description
  13. .. attribute:: Clock.elapsedTime
  14. //todo:description
  15. .. attribute:: Clock.running
  16. //todo:description
  17. .. rubric:: Methods
  18. .. function:: Clock.start()
  19. //todo:description
  20. .. function:: Clock.stop()
  21. //todo:description
  22. .. function:: Clock.getElapsedTime()
  23. //todo:description
  24. :returns: //todo
  25. :rtype: //todo
  26. .. function:: Clock.getDelta()
  27. //todo:description
  28. :returns: //todo
  29. :rtype: //todo
  30. .. rubric:: Example