How to make 3D annotations in Julia's stories

The annotation attribute in Julia Plots seems to take only tuples of x, y coordinates and labels according to the documentation . Is there any way to do this on 3D graphics? For instance:

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

produces enter image description here but how do you add something to

tvec=0:0.1:4*pi
plot(tvec, sin(tvec), cos(tvec))

Using the same type of command annotate!seems annotated to the superimposed 2D coordinate. enter image description here

+3
source share

Source: https://habr.com/ru/post/1664930/


All Articles