batch replace escape

This commit is contained in:
Xargin
2016-10-18 13:29:52 +08:00
parent 3da62d2c3f
commit d3ce2c9ba6
8 changed files with 15 additions and 15 deletions

View File

@@ -71,7 +71,7 @@ func compute() (value float64, ok bool) {
}
```
接下来的程序演示了通过浮点计算生成的图形。它是带有两个参数的z = f(x, y)函数的三维形式使用了可缩放矢量图形SVG格式输出SVG是一个用于矢量线绘制的XML标准。图3.1显示了sin(r)/r函数的输出图形其中r是sqrt(x*x+y*y)。
接下来的程序演示了通过浮点计算生成的图形。它是带有两个参数的z = f(x, y)函数的三维形式使用了可缩放矢量图形SVG格式输出SVG是一个用于矢量线绘制的XML标准。图3.1显示了sin(r)/r函数的输出图形其中r是`sqrt(x*x+y*y)`
![](../images/ch3-01.png)