diff +grid/Mapped.m @ 170:62b5f3c34bcb feature/grids

Implemented Curvilinear and equdistantCurvilinear.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 25 Feb 2016 11:10:25 +0100
parents +grid/Curvilinear.m@ce10ebde3123
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/+grid/Mapped.m	Thu Feb 25 11:10:25 2016 +0100
@@ -0,0 +1,10 @@
+classdef Mapped < grid.Grid
+    % General grid mapping
+    methods (Abstract)
+        % logicalGrid returns the domain grid of the mapping.
+        g = logicalGrid(obj);
+
+        % mapping returns the mapped coordinates as a N x D component matrix
+        m = mapping(obj);
+    end
+end
\ No newline at end of file