"...reference/src/SimTKReference/ReferenceConstraints.cpp" did not exist on "622cae173f470707c36c61f50ce2fb979caa54d7"
  1. 03 Mar, 2017 1 commit
  2. 16 Feb, 2017 1 commit
  3. 03 Feb, 2017 1 commit
  4. 26 Jan, 2017 1 commit
  5. 12 Jan, 2017 1 commit
  6. 17 Oct, 2016 1 commit
  7. 06 Oct, 2016 1 commit
  8. 22 Sep, 2016 1 commit
  9. 09 Aug, 2016 1 commit
  10. 29 Jul, 2016 1 commit
  11. 21 Apr, 2016 1 commit
  12. 07 Apr, 2016 1 commit
  13. 29 Mar, 2016 1 commit
  14. 25 Mar, 2016 1 commit
  15. 11 Mar, 2016 1 commit
  16. 06 Feb, 2016 1 commit
  17. 27 Jan, 2016 1 commit
  18. 21 Jan, 2016 4 commits
  19. 20 Jan, 2016 1 commit
  20. 19 Jan, 2016 1 commit
  21. 14 Jan, 2016 1 commit
  22. 09 Jan, 2016 2 commits
  23. 03 Jan, 2016 1 commit
  24. 14 Dec, 2015 1 commit
  25. 21 Nov, 2015 1 commit
  26. 16 Nov, 2015 1 commit
  27. 11 Nov, 2015 1 commit
  28. 05 Nov, 2015 1 commit
  29. 28 Oct, 2015 1 commit
  30. 10 Sep, 2015 1 commit
  31. 04 Sep, 2015 1 commit
  32. 02 Sep, 2015 1 commit
  33. 27 Aug, 2015 1 commit
  34. 26 Aug, 2015 1 commit
  35. 24 Jul, 2015 1 commit
  36. 19 Jun, 2015 1 commit
    • Jason Swails's avatar
      Delete now out-of-date docs as well as adding __array_priority__ to Quantity. · ba1af1ee
      Jason Swails authored
      This should be *lower* than that of Unit (and ScaledUnit/BaseUnit), since we
      still want Units to take priority over Quantities (but Quantity to take
      precedence over regular ndarrays) for reasons like this:
      
      >>> a = np.array([1]) * u.angstroms
      >>> b = a * u.angstroms # should be np.array([1])*u.angstroms**2
      >>> np.arange(10) * a # utilize broadcasting
      [1 2 3 4 5 6 7 8 9 10] A**2
      ba1af1ee