diff Vis.cpp @ 1205:8c02e6f74b29

arrays to std::arrays phase 2 - mm7_data.h converted
author Grumpy7
date Sun, 09 Jun 2013 00:30:48 +0200
parents ce5ff6d32200
children fac7751b2dc9
line wrap: on
line diff
--- a/Vis.cpp	Sat Jun 08 21:47:29 2013 +0200
+++ b/Vis.cpp	Sun Jun 09 00:30:48 2013 +0200
@@ -619,10 +619,10 @@
     return false;
 
   if (uModelID != -1)
-    ODM_CreateIntersectFacesVertexCoordList(&a, &b, intersect_face_vertex_coords_list_a, intersect_face_vertex_coords_list_b,
+    ODM_CreateIntersectFacesVertexCoordList(&a, &b, intersect_face_vertex_coords_list_a.data(), intersect_face_vertex_coords_list_b.data(),
                                 &IntersectPoint, pFace, uModelID);
   else
-    BLV_CreateIntersectFacesVertexCoordList(&a, &b, intersect_face_vertex_coords_list_a, intersect_face_vertex_coords_list_b,
+    BLV_CreateIntersectFacesVertexCoordList(&a, &b, intersect_face_vertex_coords_list_a.data(), intersect_face_vertex_coords_list_b.data(),
                                   &IntersectPoint, pFace);
   v5 = 2 * pFace->uNumVertices;
   v16 = 0;