作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 VPython 绘制坐标系。
由于没有找到现成的坐标系对象,所以画了三个相互垂直的箭头来表示坐标系如下:
y = arrow(pos=(0,0,0), axis=(6,6,0), shaftwidth=0.00001, color=color.red)
x = arrow(pos=(0,0,0), axis=(-6,6,0), shaftwidth=0.00001, color=color.green)
z = arrow(pos=(0,0,0), axis=(0,0,-10), shaftwidth=0.00001, color=color.blue)
问题是我无法标记/注释它们。我只能通过颜色来区分它们,这不是很方便。
如何在x 对象
旁边写一个'x'
?
最佳答案
您可以使用 text
对象来做到这一点。
text(text='x', axis=x.axis, pos=x.axis)
text(text='y', axis=y.axis, pos=y.axis)
text(text='z', axis=z.axis, pos=z.axis)
有关详细信息,请参阅 vpython reference for text
.
关于python - 如何在 VPython 中注释/标记对象(箭头)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18738163/
我是一名优秀的程序员,十分优秀!