茎,茎
|
该页面正在翻译中。 |
#
<无翻译>*麦琪茎,茎*-Function
stem(xs, ys, [zs]; kwargs...)
在从 偏移量 沿着茎线。
的转换特质 茎,茎 是 以点为基础的.
地块类型
绘图类型别名 茎,茎 功能是 茎,茎.
例子:
using CairoMakie
f = Figure()
Axis(f[1, 1])
xs = LinRange(0, 4pi, 30)
stem!(xs, sin.(xs))
f
using CairoMakie
f = Figure()
Axis(f[1, 1])
xs = LinRange(0, 4pi, 30)
stem!(xs, sin,
offset = 0.5, trunkcolor = :blue, marker = :rect,
stemcolor = :red, color = :orange,
markersize = 15, strokecolor = :red, strokewidth = 3,
trunklinestyle = :dash, stemlinestyle = :dashdot)
f
using CairoMakie
f = Figure()
Axis(f[1, 1])
xs = LinRange(0, 4pi, 30)
stem!(xs, sin.(xs),
offset = LinRange(-0.5, 0.5, 30),
color = LinRange(0, 1, 30), colorrange = (0, 0.5),
trunkcolor = LinRange(0, 1, 30), trunkwidth = 5)
f
using GLMakie
f = Figure()
xs = LinRange(0, 4pi, 30)
茎(f[1,1],0.5xs,2。*罪。(xs),2.*cos。(xs),
偏移=Point3f.(0.5xs,sin.(xs),cos。(xs)),
stemcolor=LinRange(0,1,30),stemcolormap=:光谱,stemcolorrange=(0,0.5))
f