view +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 source

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