如何在 Julia Plots 中制作 3D 注释

ult*_*ian 8 annotations julia plots.jl

根据文档Julia Plots 中的 annotation 属性似乎只采用 x,y 坐标和标签的元组。有没有办法在 3D 绘图上做到这一点?例如:

tvec=0:0.1:4*pi
plot(sin, tvec)
annotate!(pi/2,1.0,"max")
annotate!(3*pi/2,-1.0,"min")
Run Code Online (Sandbox Code Playgroud)

产生 在此处输入图片说明 但是你如何添加一些东西

tvec=0:0.1:4*pi
plot(tvec, sin(tvec), cos(tvec))
Run Code Online (Sandbox Code Playgroud)

使用相同类型的annotate!命令似乎注释到叠加的 2D 坐标上。 在此处输入图片说明