1
0
mirror of git://projects.qi-hardware.com/cae-tools.git synced 2025-04-21 12:27:27 +03:00

cameo: completed support for dril/mill conversions

- README: changed the term "drill/mill substitution" to "drill/mill
  conversion"
- README: described the drill/mill conversion commands
- lang.y: "drill" and "mill" worked on the wrong (empty) list
- ops.c (half_circle): fixed transcription error
This commit is contained in:
Werner Almesberger
2010-12-15 06:13:40 -03:00
parent b1652fc50a
commit 7a64e425da
3 changed files with 36 additions and 4 deletions

View File

@@ -39,7 +39,7 @@ static void half_circle(double cx, double cy, double rx, double ry, double z,
m[3] = m[0];
for (a = 0; a < M_PI; a += s) {
path_add(path, cx+x, cy+x, z);
path_add(path, cx+x, cy+y, z);
tmp = x*m[0]+y*m[1];
y = x*m[2]+y*m[3];
x = tmp;