Some (to the human eye) pretty obvious things are not that obvious to the computer: ``` >>> Vector(2, 3, 5).parallel(Vector(4, 6, 10)) False ``` All due to floating point imprecisions which need to be fixed (or worked around).
Some (to the human eye) pretty obvious things are not that obvious to the computer:
All due to floating point imprecisions which need to be fixed (or worked around).