summaryrefslogtreecommitdiff
path: root/xc/unsupported/test/suspex/testcases/oc_sun/nurbSurf.c
blob: 142d755c1c8bb61deb9842b531d913c6036252d6 (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/* $XConsortium: nurbSurf.c,v 1.0 93/11/22 12:50:50 rws Exp $ */

/*
	NOTICE TO USER: The source code in this file is copyrighted under
	U.S. and international laws.  SunSoft, Inc., a Sun Microsystems,
	Inc. business of Mountain View, California owns the copyright. 
	Users and possessors of this source code are hereby granted a
	nonexclusive, royalty-free copyright and design patent license
	to use this code in individual and commercial software. 

	Any use of this source code must include, in the user documentation 
	and internal comments to the code, notices to the end user as follows:

(c) Copyright 1992, 1993 SunSoft, Inc., a Sun Microsystems, Inc. business.

	SUNSOFT, INC. AND SUN MICROSYSTEMS, INC. MAKE NO REPRESENTATIONS
	ABOUT THE SUITABILITY OF THIS SOURCE CODE FOR ANY PURPOSE. IT IS
	PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND. 
	SUNSOFT, INC., AND SUN MICROSYSTEMS, INC., SEVERALLY AND
	INDIVIDUALLY, DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOURCE
	CODE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
	FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SUNSOFT, INC.
	OR SUN MICROSYSTEMS, INC., BE LIABLE FOR ANY SPECIAL, INDIRECT,
	INCIDENTAL, OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER
	RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
	OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
	OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOURCE CODE.
*/

#include <stdio.h>
#include <X11/PEX5/PEXlib.h>


char test_description[] = "\
Nurb Surface Tests:\n\n\
You should see two nurb surfaces trimmed in a different way.\n\
Left:  only the centre portion remains.\n\
Right: a hole is created\n\
These surfaces are red in color, has hollow interior and rendered\n\
with uniform iso parametric curves.\n\
";
static float	uknots[] = {0.0,0.0,0.0,1.0,1.0,1.0};
static float	vknots[] = {0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0};
static PEXCoord	pt_arr1[] = {
		    {0.3,0.2,0.0}, {0.4,0.25,0.1}, {0.5,0.2,0.0},
                    {0.2,0.3,0.1}, {0.3,0.35,0.3}, {0.4,0.3,0.2},
                    {0.3,0.4,0.0}, {0.4,0.45,0.2}, {0.5,0.4,0.0},
                    {0.2,0.5,0.2}, {0.3,0.55,0.0}, {0.4,0.5,0.2}};
static PEXCoord	pt_arr2[] = {
		    {0.7,0.2,0.0}, {0.8,0.25,0.1}, {0.9,0.2,0.0},
                    {0.6,0.3,0.1}, {0.7,0.35,0.3}, {0.8,0.3,0.2},
                    {0.7,0.4,0.0}, {0.8,0.45,0.2}, {0.9,0.4,0.0},
                    {0.6,0.5,0.2}, {0.7,0.55,0.0}, {0.8,0.5,0.2}};
static float	tc_knots[] = {0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0};
static float	tc_knots21[] = {0.0,0.0,1.0,2.0,3.0,4.0,4.0};
static float	tc_knots22[] = {0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0};
static PEXCoord2D	tc_cpts[]  = {
		    {0.35,0.05}, {0.95,0.95}, {0.25,0.95}, {0.35,0.05}};
static PEXCoord2D	tc_cpts21[]  = {
		    {0.0,0.0}, {1.0,0.0}, {1.0,1.0}, {0.0,1.0}, {0.0,0.0}};
static PEXCoord2D	tc_cpts22[]  = {
		    {0.35,0.05}, {0.25,0.95}, {0.95,0.95}, {0.35,0.05}};

void
outputCommands(dpy, resourceID, req_type)
    Display		*dpy;
    XID			resourceID;
    PEXOCRequestType	req_type;
{	
    PEXPSCData		surf_characs;
    PEXArrayOfCoord	points;
    PEXListOfTrimCurve  tl[2];
    PEXTrimCurve	tc[2];
				

    PEXSetSurfaceColorIndex(dpy, resourceID, req_type, 2);
				
    surf_characs.iso_curves.placement_type = PEXUniformPlacement;
    surf_characs.iso_curves.u_count = 6;
    surf_characs.iso_curves.v_count = 9;
    PEXSetParaSurfCharacteristics(dpy, resourceID, req_type, 
				  PEXPSCIsoCurves, &surf_characs);

    /* NURB Surface with 1 trimloop consisting of 1 trimcurve */
    points.point = pt_arr1;
    tc[0].visibility = PEXOn;
    tc[0].order = 4;
    tc[0].rationality = PEXNonRational;
    tc[0].approx_method = PEXApproxConstantBetweenKnots;
    tc[0].tolerance = 10.0;
    tc[0].tmin = 0.0;
    tc[0].tmax = 1.0; 
    tc[0].knots.count = 8;
    tc[0].knots.floats = tc_knots;
    tc[0].count = 4;
    tc[0].control_points.point_2d = tc_cpts;
    tl[0].count = 1;
    tl[0].curves = tc;
    PEXNURBSurface(dpy, resourceID, req_type, PEXNonRational, 
		   3, 4, uknots, vknots, 3, 4, points, 1, tl);

    /* NURB Surface with  2 trimloops consisting of 1 trimcurves each */
    points.point = pt_arr2;
    tc[0].visibility = PEXOn;
    tc[1].visibility = PEXOn;
    tc[0].order = 2;
    tc[1].order = 4;
    tc[0].rationality = PEXNonRational;
    tc[1].rationality = PEXNonRational;
    tc[0].approx_method = PEXApproxConstantBetweenKnots;
    tc[1].approx_method = PEXApproxConstantBetweenKnots;
    tc[0].tolerance = 10.0;
    tc[1].tolerance = 10.0;
    tc[0].tmin = 0.0;
    tc[1].tmin = 0.0;
    tc[0].tmax = 4.0; 
    tc[1].tmax = 1.0; 
    tc[0].knots.count = 7;
    tc[0].knots.floats = tc_knots21;
    tc[1].knots.count = 8;
    tc[1].knots.floats = tc_knots22;
    tc[0].count = 5;
    tc[0].control_points.point_2d = tc_cpts21;
    tc[1].count = 4;
    tc[1].control_points.point_2d = tc_cpts22;
    tl[0].count = 1;
    tl[0].curves = &tc[0];
    tl[1].count = 1;
    tl[1].curves = &tc[1];
    PEXNURBSurface(dpy, resourceID, req_type, PEXNonRational, 
		   3, 4, uknots, vknots, 3, 4, points, 2, tl);
}
 
void
testproc(dpy,window,x,y,w,h)
    Display		*dpy;
    Window		window;
    int			x,y,w,h;
{
    image_testproc("nurbSurf", "nurb surface", test_description, 
		dpy,window,x,y,w,h);
} 

void
misc_setup(dpy, window, renderer)
Display         *dpy;
Window          window;
PEXRenderer     renderer;
{
}