Compare commits

..

No commits in common. "4e14e1d5bffb376cc5c3542a4c2e529f7ac43ce9" and "445270bb8034fbeb477a8f9bb93107b41f832a73" have entirely different histories.

View File

@ -214,13 +214,13 @@ export function useMovementSetting(id) {
if (!target) return if (!target) return
const { top: targetTop, left: targetLeft } = target const { top: targetTop, left: targetLeft } = target
const currentX = Big(getIntersectMousePoint(e).x) //.round(0, Big.roundUp) const currentX = Big(getIntersectMousePoint(e).x).round(0, Big.roundUp)
const currentY = Big(getIntersectMousePoint(e).y) //.round(0, Big.roundUp) const currentY = Big(getIntersectMousePoint(e).y).round(0, Big.roundUp)
let value = '' let value = ''
if (target.y1 === target.y2) { if (target.y1 === target.y2) {
value = Big(targetTop).minus(currentY).times(10).round(0) value = Big(targetTop).minus(currentY).times(10)
} else { } else {
value = Big(targetLeft).minus(currentX).times(10).round(0).neg() value = Big(targetLeft).minus(currentX).times(10).neg()
} }
if (typeRef.current === TYPE.FLOW_LINE) { if (typeRef.current === TYPE.FLOW_LINE) {
FLOW_LINE_REF.POINTER_INPUT_REF.current.value = value.toNumber() FLOW_LINE_REF.POINTER_INPUT_REF.current.value = value.toNumber()