|
如何在Asymptote中做出和SVG <textPath>一样的沿path文字
例如Using SVG第7章的例子
写成TikZ
写成Asymptote
import graph;
size(240pt,0);
guide wave1 = shift((10, 35)) * (10, 0) .. controls (60, 60) and (110, 60) .. (160, 35) .. controls (210, 10) and (260, 10) .. (310, 35);
wave1=yscale(-1)*wave1;
label(Label("The sun was shining on the sea,"), wave1, align=NE);
draw(wave1, blue);
如何使Label沿文字呢? 已发送help forum |
|