]> Creatis software - CreaPhase.git/blob - octave_packages/nurbs-1.3.6/nrbtestcrv.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / nurbs-1.3.6 / nrbtestcrv.m
1 function crv = nrbtestcrv
2 % NRBTESTCRV: Constructs a simple test curve. 
3 %
4 %    Copyright (C) 2000 Mark Spink
5 %
6 %    This program is free software: you can redistribute it and/or modify
7 %    it under the terms of the GNU General Public License as published by
8 %    the Free Software Foundation, either version 2 of the License, or
9 %    (at your option) any later version.
10
11 %    This program is distributed in the hope that it will be useful,
12 %    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 %    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 %    GNU General Public License for more details.
15 %
16 %    You should have received a copy of the GNU General Public License
17 %    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 pnts = [0.5 1.5 4.5 3.0 7.5 6.0 8.5;
20         3.0 5.5 5.5 1.5 1.5 4.0 4.5;
21         0.0 0.0 0.0 0.0 0.0 0.0 0.0];
22 crv = nrbmak(pnts,[0 0 0 1/4 1/2 3/4 3/4 1 1 1]);
23
24 end
25
26 %!demo
27 %! crv = nrbtestcrv;
28 %! nrbplot(crv,100)
29 %! title('Test curve')
30 %! hold off
31