summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/NURBSsurface.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/NURBSsurface.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/NURBSsurface.asy4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/doc/asymptote/examples/NURBSsurface.asy b/Master/texmf/doc/asymptote/examples/NURBSsurface.asy
index 3fcea79dbbd..878fd956393 100644
--- a/Master/texmf/doc/asymptote/examples/NURBSsurface.asy
+++ b/Master/texmf/doc/asymptote/examples/NURBSsurface.asy
@@ -2,7 +2,7 @@ import three;
size(10cm);
-currentprojection=perspective(40,40,50);
+currentprojection=perspective(50,80,50);
// Nonrational surface:
// udegree=3, vdegree=3, nu=5, nv=6;
@@ -56,6 +56,6 @@ triple[][] P=scale3(20)*octant1.P;
// Optional weights:
real[][] weights=array(P.length,array(P[0].length,1.0));
-weights[1][2]=0.5;
+weights[0][2]=5.0;
draw(P,uknot,vknot,weights,blue);