This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/python
Campbell Barton ee9a00948b mathutils py api:
Vector.angle_signed(other)
  for 2D vectors to get the clockwise angle between them.

  in BLI math its called - angle_signed_v2v2()

shorthand for...

  atan2f((v1[1] * v2[0]) - (v1[0] * v2[1]), dot_v2v2(v1, v2))

also corrects compile error in last commit.
2012-03-14 06:14:15 +00:00
..
2012-03-14 06:14:15 +00:00
2012-03-09 18:28:30 +00:00
2012-03-14 06:14:15 +00:00
2012-02-22 09:19:53 +00:00
2012-02-22 09:19:53 +00:00
2011-11-01 20:14:58 +00:00