'd' in - move(double dx, double dy) 代表什么?
What does 'd' stands for in - move(double dx, double dy)?
我正在阅读 GObject /acm.graphics 的 java 文档。
我正在看这个方法:
move(double dx, double dy)
使用位移 dx 和 dy 在屏幕上移动对象。
我想了解 'd' 代表什么以及 (dx,dy) 与 (x,y) 之间的区别是什么?有什么区别还是有none只是同一个坐标的不同名称?
move(double dx, double dy)
Moves the object on the screen using the displacements dx
and dy
.
在此上下文中,dx
将是 "displacement on the x-axis",而 dy
将是 "displacement on the y-axis"。该方法将沿 x 轴移动对象 dx
个单位,沿 y 轴移动 dy
个单位,其中单位大概是像素。
我正在阅读 GObject /acm.graphics 的 java 文档。
我正在看这个方法:
move(double dx, double dy)
使用位移 dx 和 dy 在屏幕上移动对象。
我想了解 'd' 代表什么以及 (dx,dy) 与 (x,y) 之间的区别是什么?有什么区别还是有none只是同一个坐标的不同名称?
move(double dx, double dy)
Moves the object on the screen using the displacementsdx
anddy
.
在此上下文中,dx
将是 "displacement on the x-axis",而 dy
将是 "displacement on the y-axis"。该方法将沿 x 轴移动对象 dx
个单位,沿 y 轴移动 dy
个单位,其中单位大概是像素。