diff options
Diffstat (limited to 'src/algebra/plot3d.spad.pamphlet')
-rw-r--r-- | src/algebra/plot3d.spad.pamphlet | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/algebra/plot3d.spad.pamphlet b/src/algebra/plot3d.spad.pamphlet index 575498d5..faf926ad 100644 --- a/src/algebra/plot3d.spad.pamphlet +++ b/src/algebra/plot3d.spad.pamphlet @@ -150,10 +150,10 @@ Plot3D(): Exports == Implementation where i = 2 => third(rr.ranges) fourth(rr.ranges) for r in rest l repeat - i = 0 => union(u,first(r.ranges)) - i = 1 => union(u,second(r.ranges)) - i = 2 => union(u,third(r.ranges)) - union(u,fourth(r.ranges)) + i = 0 => u := union(u,first(r.ranges)) + i = 1 => u := union(u,second(r.ranges)) + i = 2 => u := union(u,third(r.ranges)) + u := union(u,fourth(r.ranges)) u parametricRange r == first(r.bounds) |