-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDemos.m
37 lines (31 loc) · 1.28 KB
/
Demos.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
function tbxStruct=Demos
% Demos Demo List infomation for NURBS Toolbox
% D.M. Spink
% Copyright (c) 2000
if nargout == 0; demo toolbox; return; end
tbxStruct.Name='nurbs';
tbxStruct.Type='Toolbox';
tbxStruct.Help= ...
{' The NURBS Toolbox provides commands for the construction'
' and use of Non-Uniform Rational B-Splines (NURBS).'
' '};
tbxStruct.DemoList={
'3D Line','demoline',
'Rectangle','demorect',
'Circle and Arc','democirc',
'Helix','demohelix',
'Ellipse', 'demoellip',
'Test Curve','democurve',
'Test Surface','demosurf',
'Bilinear Surface','demo4surf',
'Knot Insertion','demokntins',
'Degree Elevation','demodegelev',
'Curve derivatives','demodercrv',
'Surface derivatives','demodersrf'
'Cylinderical arc','democylind',
'Ruled Surface','demoruled',
'Coons Surface','democoons',
'Test Extrusion','demoextrude',
'Test Revolution - Cup','demorevolve',
'Test Revolution - Ball & Torus','demotorus',
'2D Geomtery','demogeom'};