diff +grid/Curvilinear.m @ 156:095cdd472688 feature/grids

Changed name from Mapped to Curvilinear.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 18 Feb 2016 17:19:17 +0100
parents +grid/Mapped.m@7aee9eba3bb8
children ce10ebde3123
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/+grid/Curvilinear.m	Thu Feb 18 17:19:17 2016 +0100
@@ -0,0 +1,10 @@
+classdef Curvilinear < grid.Grid
+    % General grid mapping
+    methods (Abstract)
+        % baseGrid returns the domain grid of the mapping.
+        g = baseGrid(obj);
+
+        % mapping returns the mapped coordinates as a grid.Function
+        m = mapping(obj);
+    end
+end
\ No newline at end of file