migrate substitution keywords to SVN
[reactos.git] / reactos / lib / glu32 / libnurbs / internals / quilt.h
1 /*
2 ** License Applicability. Except to the extent portions of this file are
3 ** made subject to an alternative license as permitted in the SGI Free
4 ** Software License B, Version 1.1 (the "License"), the contents of this
5 ** file are subject only to the provisions of the License. You may not use
6 ** this file except in compliance with the License. You may obtain a copy
7 ** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
8 ** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
9 **
10 ** http://oss.sgi.com/projects/FreeB
11 **
12 ** Note that, as provided in the License, the Software is distributed on an
13 ** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
14 ** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
15 ** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
16 ** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
17 **
18 ** Original Code. The Original Code is: OpenGL Sample Implementation,
19 ** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
20 ** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
21 ** Copyright in any portions created by third parties is as indicated
22 ** elsewhere herein. All Rights Reserved.
23 **
24 ** Additional Notice Provisions: The application programming interfaces
25 ** established by SGI in conjunction with the Original Code are The
26 ** OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
27 ** April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
28 ** 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
29 ** Window System(R) (Version 1.3), released October 19, 1998. This software
30 ** was created using the OpenGL(R) version 1.2.1 Sample Implementation
31 ** published by SGI, but has not been independently verified as being
32 ** compliant with the OpenGL(R) version 1.2.1 Specification.
33 */
34
35 /*
36 * quilt.h
37 *
38 * $Date$ $Revision: 1.1 $
39 * $Header: /cygdrive/c/RCVS/CVS/ReactOS/reactos/lib/glu32/libnurbs/internals/quilt.h,v 1.1 2004/02/02 16:39:12 navaraf Exp $
40 */
41
42 #ifndef __gluquilt_h_
43 #define __gluquilt_h_
44
45 #include "defines.h"
46 #include "bufpool.h"
47 #include "types.h"
48
49 class Backend;
50 class Mapdesc;
51 class Flist;
52 struct Knotvector;
53
54 /* constants for memory allocation of NURBS to Bezier conversion */
55 #define MAXDIM 2
56
57 struct Quiltspec { /* a specification for a dimension of a quilt */
58 int stride; /* words between points */
59 int width; /* number of segments */
60 int offset; /* words to first point */
61 int order; /* order */
62 int index; /* current segment number */
63 int bdry[2]; /* boundary edge flag */
64 REAL step_size;
65 Knot * breakpoints;
66 };
67
68 typedef Quiltspec *Quiltspec_ptr;
69
70 class Quilt : public PooledObj { /* an array of bezier patches */
71 public:
72 Quilt( Mapdesc * );
73 Mapdesc * mapdesc; /* map descriptor */
74 REAL * cpts; /* control points */
75 Quiltspec qspec[MAXDIM]; /* the dimensional data */
76 Quiltspec_ptr eqspec; /* qspec trailer */
77 Quilt *next; /* next quilt in linked list */
78
79 public:
80 void deleteMe( Pool& );
81 void toBezier( Knotvector &, INREAL *, long );
82 void toBezier( Knotvector &, Knotvector &, INREAL *, long );
83 void select( REAL *, REAL * );
84 int getDimension( void ) { return eqspec - qspec; }
85 void download( Backend & );
86 void downloadAll( REAL *, REAL *, Backend & );
87 int isCulled( void );
88 void getRange( REAL *, REAL *, Flist&, Flist & );
89 void getRange( REAL *, REAL *, int, Flist & );
90 void getRange( REAL *, REAL *, Flist& );
91 void findRates( Flist& slist, Flist& tlist, REAL[2] );
92 void findSampleRates( Flist& slist, Flist& tlist );
93 void show();
94 };
95
96 typedef class Quilt *Quilt_ptr;
97
98 #endif /* __gluquilt_h_ */