图形绘制 VC++
我想知道,如何将坐标转换为表格的中心以绘制数学函数。 我已经在 Graphics 对象上尝试过 ->TranslateTransform(x,y) ,这有效,但仅适用于四分之一的坐标。我应该如何在表单上绘制数学函数?C++ 编程很长,但 WinForms 和绘图对我来说是新的。
I'd like to know, how coordinates can be transformed to center of the form for drawing mathematical functions.
I already tried ->TranslateTransform(x,y) on Graphics object, this works, but only in one quarter of coordinates. How should I draw math functions on the form?Programming C++ long, but WinForms and Drawing are new 4 me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
非常不清楚“坐标的四分之一”可能意味着什么。要获得笛卡尔坐标系,其中 0,0 位于窗体中心,负坐标映射到窗体或控件的左下角,您必须使用 ScaleTransform() 来反转 Y 轴,并使用 TranslateTransform() 来将原点移至中心。像这样:
从左下角到右上角绘制一条线。
Very unclear what "quarter of coordinates" might mean. To get a Cartesian coordinate system with 0,0 in the center of the form and negative coordinates mapped to the lower left corner of the form or control, you will have to use ScaleTransform() to invert the Y-axis and TranslateTransform() to shift the origin to the center. Like this:
This draws the line from lower-left to upper-right.