123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355 |
- /*
- * Copyright (c) 1991, 1992, 1993 Silicon Graphics, Inc.
- *
- * Permission to use, copy, modify, distribute, and sell this software and
- * its documentation for any purpose is hereby granted without fee, provided
- * that (i) the above copyright notices and this permission notice appear in
- * all copies of the software and related documentation, and (ii) the name of
- * Silicon Graphics may not be used in any advertising or
- * publicity relating to the software without the specific, prior written
- * permission of Silicon Graphics.
- *
- * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF
- * ANY KIND,
- * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
- * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
- *
- * IN NO EVENT SHALL SILICON GRAPHICS BE LIABLE FOR
- * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
- * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
- * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
- * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
- * OF THIS SOFTWARE.
- */
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <math.h>
- #include <GL/glut.h>
-
-
- #ifndef CALLBACK
- #define CALLBACK
- #endif
-
-
- #define INREAL float
-
- #define S_NUMPOINTS 13
- #define S_ORDER 3
- #define S_NUMKNOTS (S_NUMPOINTS + S_ORDER)
- #define T_NUMPOINTS 3
- #define T_ORDER 3
- #define T_NUMKNOTS (T_NUMPOINTS + T_ORDER)
- #define SQRT_TWO 1.41421356237309504880
-
-
- typedef INREAL Point[4];
-
-
- GLenum doubleBuffer;
-
- GLenum expectedError;
- GLint rotX = 40, rotY = 40;
- INREAL sknots[S_NUMKNOTS] = {
- -1.0, -1.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0,
- 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 9.0, 9.0
- };
- INREAL tknots[T_NUMKNOTS] = {
- 1.0, 1.0, 1.0, 2.0, 2.0, 2.0
- };
- Point ctlpoints[S_NUMPOINTS][T_NUMPOINTS] = {
- {
- {
- 4.0, 2.0, 2.0, 1.0
- },
- {
- 4.0, 1.6, 2.5, 1.0
- },
- {
- 4.0, 2.0, 3.0, 1.0
- }
- },
- {
- {
- 5.0, 4.0, 2.0, 1.0
- },
- {
- 5.0, 4.0, 2.5, 1.0
- },
- {
- 5.0, 4.0, 3.0, 1.0
- }
- },
- {
- {
- 6.0, 5.0, 2.0, 1.0
- },
- {
- 6.0, 5.0, 2.5, 1.0
- },
- {
- 6.0, 5.0, 3.0, 1.0
- }
- },
- {
- {
- SQRT_TWO*6.0, SQRT_TWO*6.0, SQRT_TWO*2.0, SQRT_TWO
- },
- {
- SQRT_TWO*6.0, SQRT_TWO*6.0, SQRT_TWO*2.5, SQRT_TWO
- },
- {
- SQRT_TWO*6.0, SQRT_TWO*6.0, SQRT_TWO*3.0, SQRT_TWO
- }
- },
- {
- {
- 5.2, 6.7, 2.0, 1.0
- },
- {
- 5.2, 6.7, 2.5, 1.0
- },
- {
- 5.2, 6.7, 3.0, 1.0
- }
- },
- {
- {
- SQRT_TWO*4.0, SQRT_TWO*6.0, SQRT_TWO*2.0, SQRT_TWO
- },
- {
- SQRT_TWO*4.0, SQRT_TWO*6.0, SQRT_TWO*2.5, SQRT_TWO
- },
- {
- SQRT_TWO*4.0, SQRT_TWO*6.0, SQRT_TWO*3.0, SQRT_TWO
- }
- },
- {
- {
- 4.0, 5.2, 2.0, 1.0
- },
- {
- 4.0, 4.6, 2.5, 1.0
- },
- {
- 4.0, 5.2, 3.0, 1.0
- }
- },
- {
- {
- SQRT_TWO*4.0, SQRT_TWO*6.0, SQRT_TWO*2.0, SQRT_TWO
- },
- {
- SQRT_TWO*4.0, SQRT_TWO*6.0, SQRT_TWO*2.5, SQRT_TWO
- },
- {
- SQRT_TWO*4.0, SQRT_TWO*6.0, SQRT_TWO*3.0, SQRT_TWO
- }
- },
- {
- {
- 2.8, 6.7, 2.0, 1.0
- },
- {
- 2.8, 6.7, 2.5, 1.0
- },
- {
- 2.8, 6.7, 3.0, 1.0
- }
- },
- {
- {
- SQRT_TWO*2.0, SQRT_TWO*6.0, SQRT_TWO*2.0, SQRT_TWO
- },
- {
- SQRT_TWO*2.0, SQRT_TWO*6.0, SQRT_TWO*2.5, SQRT_TWO
- },
- {
- SQRT_TWO*2.0, SQRT_TWO*6.0, SQRT_TWO*3.0, SQRT_TWO
- }
- },
- {
- {
- 2.0, 5.0, 2.0, 1.0
- },
- {
- 2.0, 5.0, 2.5, 1.0
- },
- {
- 2.0, 5.0, 3.0, 1.0
- }
- },
- {
- {
- 3.0, 4.0, 2.0, 1.0
- },
- {
- 3.0, 4.0, 2.5, 1.0
- },
- {
- 3.0, 4.0, 3.0, 1.0
- }
- },
- {
- {
- 4.0, 2.0, 2.0, 1.0
- },
- {
- 4.0, 1.6, 2.5, 1.0
- },
- {
- 4.0, 2.0, 3.0, 1.0
- }
- }
- };
- GLUnurbsObj *theNurbs;
-
-
- static void CALLBACK ErrorCallback(GLenum which)
- {
-
- if (which != expectedError) {
- fprintf(stderr, "Unexpected error occured (%d):\n", which);
- fprintf(stderr, " %s\n", (char *) gluErrorString(which));
- }
- }
-
- static void Init(void)
- {
-
- theNurbs = gluNewNurbsRenderer();
- gluNurbsCallback(theNurbs, GLU_ERROR, ErrorCallback);
-
- gluNurbsProperty(theNurbs, GLU_SAMPLING_TOLERANCE, 15.0);
- gluNurbsProperty(theNurbs, GLU_DISPLAY_MODE, GLU_OUTLINE_PATCH);
-
- expectedError = GLU_INVALID_ENUM;
- gluNurbsProperty(theNurbs, ~0, 15.0);
- expectedError = GLU_NURBS_ERROR13;
- gluEndSurface(theNurbs);
- expectedError = 0;
-
- glColor3f(1.0, 1.0, 1.0);
- }
-
- static void Reshape(int width, int height)
- {
-
- glViewport(0, 0, (GLint)width, (GLint)height);
-
- glMatrixMode(GL_PROJECTION);
- glLoadIdentity();
- glFrustum(-2.0, 2.0, -2.0, 2.0, 0.8, 10.0);
- gluLookAt(7.0, 4.5, 4.0, 4.5, 4.5, 2.5, 6.0, -3.0, 2.0);
- glMatrixMode(GL_MODELVIEW);
- }
-
- static void Key2(int key, int x, int y)
- {
-
- switch (key) {
- case GLUT_KEY_DOWN:
- rotX -= 5;
- break;
- case GLUT_KEY_UP:
- rotX += 5;
- break;
- case GLUT_KEY_LEFT:
- rotY -= 5;
- break;
- case GLUT_KEY_RIGHT:
- rotY += 5;
- break;
- default:
- return;
- }
-
- glutPostRedisplay();
- }
-
- static void Key(unsigned char key, int x, int y)
- {
-
- switch (key) {
- case 27:
- exit(1);
- }
- }
-
- static void Draw(void)
- {
-
- glClear(GL_COLOR_BUFFER_BIT);
-
- glPushMatrix();
-
- glTranslatef(4.0, 4.5, 2.5);
- glRotatef(rotY, 1, 0, 0);
- glRotatef(rotX, 0, 1, 0);
- glTranslatef(-4.0, -4.5, -2.5);
-
- gluBeginSurface(theNurbs);
- gluNurbsSurface(theNurbs, S_NUMKNOTS, sknots, T_NUMKNOTS, tknots,
- 4*T_NUMPOINTS, 4, &ctlpoints[0][0][0], S_ORDER,
- T_ORDER, GL_MAP2_VERTEX_4);
- gluEndSurface(theNurbs);
-
- glPopMatrix();
-
- glFlush();
-
- if (doubleBuffer) {
- glutSwapBuffers();
- }
- }
-
- static GLenum Args(int argc, char **argv)
- {
- GLint i;
-
- doubleBuffer = GL_FALSE;
-
- for (i = 1; i < argc; i++) {
- if (strcmp(argv[i], "-sb") == 0) {
- doubleBuffer = GL_FALSE;
- } else if (strcmp(argv[i], "-db") == 0) {
- doubleBuffer = GL_TRUE;
- } else {
- printf("%s (Bad option).\n", argv[i]);
- return GL_FALSE;
- }
- }
- return GL_TRUE;
- }
-
- int main(int argc, char **argv)
- {
- GLenum type;
-
- glutInit(&argc, argv);
-
- if (Args(argc, argv) == GL_FALSE) {
- exit(1);
- }
-
- glutInitWindowPosition(0, 0); glutInitWindowSize( 300, 300);
-
- type = GLUT_RGB;
- type |= (doubleBuffer) ? GLUT_DOUBLE : GLUT_SINGLE;
- glutInitDisplayMode(type);
-
- if (glutCreateWindow("NURBS Test") == GL_FALSE) {
- exit(1);
- }
-
- Init();
-
- glutReshapeFunc(Reshape);
- glutKeyboardFunc(Key);
- glutSpecialFunc(Key2);
- glutDisplayFunc(Draw);
- glutMainLoop();
- return 0;
- }
|