Asymptote
Asymptote: the Vector Graphics Language
Asymptote 是一门矢量图形编程语言,同时是一个矢量作图工具。
Asymptote目前缺少IDE、自动代码提示等生态,因此为了方便画图,可以自己做一个简易IDE。
inotifywait
使用inotifywait实现一个功能:当.asy
文件被更改时,自动调用Asymptote对.asy
进行读取然后作图生成.eps
文件,实现及时画图。
Windows没有类似Linux自带inotifywait,因此使用这个开源代码进行编译使用。
https://github.com/thekid/inotify-win
PowerShell脚本如下:
while($true){
inotifywait.exe 1.asy;
&'C:\Program Files\Asymptote\asy.exe' -V 1.asy;
If ($lastExitCode -eq "1") { # Create the empty `.eps` file to force sumatrapdf to load a complete update.
echo '' > 1.eps;
}
}
画图
写一个示例
size(100);
draw(unitcircle);
draw(unitsquare);
fill(unitsquare);
https://live.csdn.net/v/168201