Asymptote 自己搭建简易IDE

2021/7/4 23:24:35

本文主要是介绍Asymptote 自己搭建简易IDE,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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



这篇关于Asymptote 自己搭建简易IDE的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程