view +grid/Curvilinear.m @ 159:ce10ebde3123 feature/grids

Added abstract class Structured.
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 19 Feb 2016 16:09:02 +0100
parents 095cdd472688
children 62b5f3c34bcb
line wrap: on
line source

classdef Curvilinear < grid.Structured
    % 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