Actionscript 2:从 lineTo 获取 Y 坐标
所以我用 lineTo 绘制一个图表。
我想要做的是循环遍历线上的每个 x 坐标以获取其 Y 坐标并将其推送到数组中,但我如何知道每个 X 坐标处的 Y 坐标是什么?
So I am drawing a graph with lineTo.
What I want to do is loop through every x coordinate on the lineTo get its Y coordinate and push that to an array, but how do I know what the Y coordinate is at each X coordinate?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先将每个点放入数组中,然后迭代数组来绘制线条,可能会更成功。这样,如果您想知道任何特定坐标,它将在数组中引用。
You might have more success putting each point into an array first, and then iterating through the array to draw the lines. This way, if you want to know any specific coordinate, it will be referenced in the array.