Revision: 66054
          http://sourceforge.net/p/brlcad/code/66054
Author:   carlmoore
Date:     2015-08-20 17:37:23 +0000 (Thu, 20 Aug 2015)
Log Message:
-----------
set ellipse = 1 at INITIALIZATION

Modified Paths:
--------------
    brlcad/trunk/src/conv/iges/extrudcon.c

Modified: brlcad/trunk/src/conv/iges/extrudcon.c
===================================================================
--- brlcad/trunk/src/conv/iges/extrudcon.c      2015-08-20 17:08:53 UTC (rev 
66053)
+++ brlcad/trunk/src/conv/iges/extrudcon.c      2015-08-20 17:37:23 UTC (rev 
66054)
@@ -38,7 +38,7 @@
     point_t start, stop;       /* starting and stopping points on arc */
     int sol_num;       /* Solid number */
     fastf_t q1, q2, q3;        /* terms for determining type of conic */
-    int ellipse;       /* flag to indicate ellipse */
+    int ellipse = 1;   /* flag to indicate ellipse */
     fastf_t tmp;               /* scratch */
     point_t center;            /* center of ellipse */
     fastf_t theta;             /* angle that ellipse is rotated */
@@ -111,7 +111,6 @@
     /* Check type of conic */
 
     q2 = a*c - b*b/4.0;
-    ellipse = 1;
     if (q2 <= 0.0)
        ellipse = 0;
     else {

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to