diff options
Diffstat (limited to 'Build/source/utils/asymptote/examples/Coons.asy')
-rw-r--r-- | Build/source/utils/asymptote/examples/Coons.asy | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Build/source/utils/asymptote/examples/Coons.asy b/Build/source/utils/asymptote/examples/Coons.asy new file mode 100644 index 00000000000..9f59d152575 --- /dev/null +++ b/Build/source/utils/asymptote/examples/Coons.asy @@ -0,0 +1,6 @@ +size(200); + +pen[] p={red,green,blue,magenta}; +path g=(0,0){dir(45)}..(1,0)..(1,1)..(0,1)..cycle; +tensorshade(g,p); +dot(g); |