view +grid/Curvilinear.m @ 158:685ba6e6c679 feature/grids

Added abstract methods to Grid.
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 19 Feb 2016 15:59:36 +0100
parents 095cdd472688
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