Revision: 73133
          http://sourceforge.net/p/brlcad/code/73133
Author:   starseeker
Date:     2019-05-22 14:40:58 +0000 (Wed, 22 May 2019)
Log Message:
-----------
Reflect the use of edge information in the loop processing function name

Modified Paths:
--------------
    brlcad/trunk/src/libbrep/cdt.cpp

Modified: brlcad/trunk/src/libbrep/cdt.cpp
===================================================================
--- brlcad/trunk/src/libbrep/cdt.cpp    2019-05-22 14:38:14 UTC (rev 73132)
+++ brlcad/trunk/src/libbrep/cdt.cpp    2019-05-22 14:40:58 UTC (rev 73133)
@@ -29,7 +29,7 @@
 #include "./cdt.h"
 
 static void
-get_loop_sample_points(
+Process_Loop_Edges(
        struct ON_Brep_CDT_State *s_cdt,
        ON_SimpleArray<BrepTrimPoint> *points,
        const ON_BrepFace &face,
@@ -143,7 +143,7 @@
        if (s_to_maxdist->find(face.SurfaceOf()) != s_to_maxdist->end()) {
            max_dist = (*s_to_maxdist)[face.SurfaceOf()];
        }
-       get_loop_sample_points(s_cdt, &brep_loop_points[li], face, loop, 
max_dist, s_cdt->vert_pnts, s_cdt->vert_norms);
+       Process_Loop_Edges(s_cdt, &brep_loop_points[li], face, loop, max_dist, 
s_cdt->vert_pnts, s_cdt->vert_norms);
     }
 
     // Handle a variety of situations that complicate loop handling on closed 
surfaces

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