--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/aff78d2f-5805-4703-84f6-e89d1ac184d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You don't need to convert both MPoint instances to MVector before subtracting them. As per the documentation page for MPoint (check the `operator-(MPoint)` method), if you subtract two MPoint objects you get a MVector as a result:
vectorBetween = pointB - pointA
Not sure why you'd want to avoid doing a subtraction?