glu/sgi: Move initialization of members to top of Curve constructor.
authorVinson Lee <vlee@vmware.com>
Mon, 15 Feb 2010 06:26:30 +0000 (22:26 -0800)
committerVinson Lee <vlee@vmware.com>
Mon, 15 Feb 2010 06:28:32 +0000 (22:28 -0800)
This is a modification of commit 53d448657bd300ab68b2869b2fba76a627699baf.

The members cpts and spts are possibly used as arguments later in
the constructor.

src/glu/sgi/libnurbs/internals/curve.cc

index 27e9e3cdc98d67a09b38bc85e607858f3441951c..b7c4d4a9c7c3ac8e0fab13968e1243cd6ea15434 100644 (file)
@@ -60,6 +60,12 @@ Curve::Curve( Quilt_ptr geo, REAL pta, REAL ptb, Curve *c )
     cullval = mapdesc->isCulling() ? CULL_ACCEPT : CULL_TRIVIAL_ACCEPT;
     order = geo->qspec[0].order;
     stride = MAXCOORDS;
+    for( int i = 0; i < MAXORDER * MAXCOORDS; i++ ) {
+        cpts[i] = 0;
+        spts[i] = 0;
+    }
+    stepsize = 0;
+    minstepsize = 0;
 
     REAL *ps  = geo->cpts; 
     Quiltspec_ptr qs = geo->qspec;
@@ -85,14 +91,6 @@ Curve::Curve( Quilt_ptr geo, REAL pta, REAL ptb, Curve *c )
     if( range[1] != ptb ) {
        Curve lower( *this, ptb, 0 );
     }
-
-    for( int i = 0; i < MAXORDER * MAXCOORDS; i++ ) {
-        cpts[i] = 0;
-        spts[i] = 0;
-    }
-
-    stepsize = 0;
-    minstepsize = 0;
 }
 
 /*--------------------------------------------------------------------------