我的应用程序是 asp.net MVC,我正在尝试更改图像的 x、y 和 z 坐标。我正在使用图像处理程序:
mpr.SetViewPlane(new Point3D(pX, pY, pZ), new Vector3D(0, 1, 0), new Vector3D(0, 0, -1));
在视图中,我正在计算使用鼠标右键时 Y 位置的变化:
$("#container1").bind('mousemove', function (e) {
lastX = parseInt(e.clientX);
lastY = parseInt(e.clientY);
pointZF = lastX - mX;
var htm1 = "ImageHandler.ashx?&pY=" + pointZF;
img.src = htm1;
});
它工作得很好,但是图像会跳转(例如位置 1 到位置 15);我想从 1 到 15 的位置,知道我该怎么做吗?