diff +grid/Grid.m @ 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 685ba6e6c679
children c2db0294f8ed
line wrap: on
line diff
--- 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