渐近线中的负值

渐近线中的负值

如何在 Asymptote 中取反?我试过使用,not(true)但似乎没有内置not函数。

当然,我可以定义一个函数来执行此操作,但我只是想知道在 Asymptote 中是否有标准方法可以执行此操作

答案1

您正在寻找!否定运算符。

bool b = true; // b now equals true
b = !b;        // b now equal false

此运算符和其他运算符可在文档

相关内容