How can I lock diagonal movement with FabricJS? I know it can be locked vertical and horizontal, but I can't find an easy way to lock diagonal.
What I need is the ability to move one canvas group only in the same X axis or Y axis once a time.
How can I lock diagonal movement with FabricJS? I know it can be locked vertical and horizontal, but I can't find an easy way to lock diagonal.
What I need is the ability to move one canvas group only in the same X axis or Y axis once a time.
Copyright © 2021 Jogjafile Inc.
FabricJS does not have a native API hook to lock an object to follow along a diagonal line.
You will have to listen for the object's :moving events and then manually reset its x & y position to keep it on the line. Here's a function that reports which [x,y] on the line is closest to the mouse [x,y]: