changeset 12505:e1967ea23d85 octave-forge

Changes for consistency with geopdes
author rafavzqz
date Mon, 14 Jul 2014 09:47:23 +0000
parents e72ee40ca39a
children 411dde236c34
files extra/nurbs/inst/nrbmultipatch.m
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/extra/nurbs/inst/nrbmultipatch.m	Tue Jul 01 09:52:28 2014 +0000
+++ b/extra/nurbs/inst/nrbmultipatch.m	Mon Jul 14 09:47:23 2014 +0000
@@ -66,7 +66,7 @@
 
 boundary.nsides = 0;
 boundary.patches = [];
-boundary.sides = [];
+boundary.faces = [];
 
 for i1 = 1:npatch
   nrb_faces1 = nrbextract (nurbs(i1));
@@ -119,8 +119,8 @@
       interfaces(num_interfaces) = intrfc;
     else
       boundary.nsides = boundary.nsides + 1;
-      boundary.patches = [boundary.patches, i1];
-      boundary.sides = [boundary.sides, j1];
+      boundary.patches = [boundary.patches; i1];
+      boundary.faces = [boundary.faces; j1];
     end
   end
 end