changeset 164:772365e2cf96 feature/grids

Correct method signatures in Grid.m
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 22 Feb 2016 15:56:33 +0100
parents 51aaf67a7df5
children 5dad3b754c18
files +grid/Grid.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
diff -r 51aaf67a7df5 -r 772365e2cf96 +grid/Grid.m
--- a/+grid/Grid.m	Mon Feb 22 13:55:19 2016 +0100
+++ b/+grid/Grid.m	Mon Feb 22 15:56:33 2016 +0100
@@ -11,10 +11,10 @@
         X = points(obj)
 
         % Restricts the grid function gf on obj to the subgrid g.
-        gf = restrictFunc(gf, g)
+        gf = restrictFunc(obj, gf, g)
 
         % Projects the grid function gf on obj to the grid g.
-        gf = projectFunc(gf, g)
+        gf = projectFunc(obj, gf, g)
     end
 end