summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/examples/NURBSsurface.asy
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-04-19 23:59:33 +0000
committerKarl Berry <karl@freefriends.org>2010-04-19 23:59:33 +0000
commitdddce3148a2bc785603576b18ffcf72d39adbe47 (patch)
tree14f4c79ef11bcf0820a8d4ff2ab0c5ac009c365c /Build/source/utils/asymptote/examples/NURBSsurface.asy
parenta01e51b01f5819b6091af48cdca581e9f2a9282e (diff)
asy 1.93
git-svn-id: svn://tug.org/texlive/trunk@17934 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/examples/NURBSsurface.asy')
-rw-r--r--Build/source/utils/asymptote/examples/NURBSsurface.asy4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/utils/asymptote/examples/NURBSsurface.asy b/Build/source/utils/asymptote/examples/NURBSsurface.asy
index 3fcea79dbbd..878fd956393 100644
--- a/Build/source/utils/asymptote/examples/NURBSsurface.asy
+++ b/Build/source/utils/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);