Changeset 840


Ignore:
Timestamp:
Jan 3, 2008, 1:18:59 PM (17 years ago)
Author:
gah
Message:

changes for surface plot

Location:
trunk/vizservers/nanovis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/vizservers/nanovis/Command.cpp

    r838 r840  
    10401040             const char *argv[])
    10411041{
    1042     fprintf(stderr, "in heightmap command\n");
    1043     fflush(stderr);
    10441042    if (argc < 2) {
    10451043        srand((unsigned)time(NULL));
     
    10911089        return TCL_OK;
    10921090    } else if ((c == 'd') && (strcmp(argv[1],"data") == 0)) {
    1093         fprintf(stderr, "heightmap data\n");
    1094     fflush(stderr);
    10951091        //bytes
    10961092        char c;
     
    11181114            int nBytes;
    11191115
    1120             fprintf(stderr, "in data follows\n");
    1121     fflush(stderr);
    11221116            if (Tcl_GetInt(interp, argv[3], &nBytes) != TCL_OK) {
    11231117                return TCL_ERROR;
    11241118            }
    1125             fprintf(stderr, "expecting %d bytes\n", nBytes);
    1126     fflush(stderr);
    11271119            if (FillBufferFromStdin(interp, buf, nBytes) != TCL_OK) {
    11281120                return TCL_ERROR;
     
    11311123                fprintf(stderr, "error in command: %s\n",
    11321124                        Tcl_GetStringResult(interp));
    1133     fflush(stderr);
     1125                fflush(stderr);
    11341126                return TCL_ERROR;
    11351127            }
     
    13071299        }
    13081300    } else if ((c == 'a') && (strcmp(argv[1],"axiscolor") == 0)) {
    1309         float r, g, b;
     1301        float r, g, b, a;
    13101302        if ((GetFloat(interp, argv[2], &r) != TCL_OK) ||
    13111303            (GetFloat(interp, argv[3], &g) != TCL_OK) ||
     
    13131305            return TCL_ERROR;
    13141306        }
     1307        a = 1.0f;
     1308        if ((argc == 6) && (GetFloat(interp, argv[5], &a) != TCL_OK)) {
     1309            return TCL_ERROR;
     1310        }           
    13151311        if (g_grid) {
    1316             g_grid->setAxisColor(r, g, b, 1.0f);
     1312            g_grid->setAxisColor(r, g, b, a);
    13171313        }
    13181314    } else if ((c == 'l') && (strcmp(argv[1],"linecolor") == 0)) {
    1319         float r, g, b;
     1315        float r, g, b, a;
    13201316        if ((GetFloat(interp, argv[2], &r) != TCL_OK) ||
    13211317            (GetFloat(interp, argv[3], &g) != TCL_OK) ||
     
    13231319            return TCL_ERROR;
    13241320        }
     1321        a = 1.0f;
     1322        if ((argc == 6) && (GetFloat(interp, argv[5], &a) != TCL_OK)) {
     1323            return TCL_ERROR;
     1324        }           
    13251325        if (g_grid) {
    1326             g_grid->setGridLineColor(r, g, b, 1.0f);
     1326            g_grid->setGridLineColor(r, g, b, a);
    13271327        }
    13281328    } else if ((c == 'm') && (strcmp(argv[1],"minmax") == 0)) {
     
    19931993    float *zValues;
    19941994
    1995     fprintf(stderr, "in unirect2d command\n");
    1996     fflush(stderr);
    19971995    if ((argc & 0x01) == 0) {
    19981996        Tcl_AppendResult(interp,
     
    20662064        return TCL_ERROR;
    20672065    }
    2068     fprintf(stderr, "xnum=%d, ynum=%d, znum=%d\n", xNum, yNum, zNum);
    2069     fflush(stderr);
    20702066    if (zNum != (xNum * yNum)) {
    20712067        Tcl_AppendResult(interp, "wrong number of z values must be xnum*ynum",
  • trunk/vizservers/nanovis/HeightMap.cpp

    r838 r840  
    8787            cgGLEnableProfile(CG_PROFILE_FP30);
    8888
    89             fprintf(stderr, "set texture param id=%d\n", _colorMap->id);
    90             fflush(stderr);
    9189                        cgGLSetTextureParameter(_tf, _colorMap->id);
    9290                        cgGLEnableTextureParameter(_tf);
Note: See TracChangeset for help on using the changeset viewer.