changeset 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 cf748f33cd5b
children ea8103ad2cc5
files +grid/Curvilinear.m +grid/Mapped.m
diffstat 2 files changed, 10 insertions(+), 10 deletions(-) [+]
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
--- a/+grid/Mapped.m	Thu Feb 18 17:17:41 2016 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-classdef Mapped < 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