Mercurial > repos > public > sbplib
comparison +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 |
comparison
equal
deleted
inserted
replaced
155:cf748f33cd5b | 156:095cdd472688 |
---|---|
1 classdef Curvilinear < grid.Grid | |
2 % General grid mapping | |
3 methods (Abstract) | |
4 % baseGrid returns the domain grid of the mapping. | |
5 g = baseGrid(obj); | |
6 | |
7 % mapping returns the mapped coordinates as a grid.Function | |
8 m = mapping(obj); | |
9 end | |
10 end |