view +grid/Mapped.m @ 155:cf748f33cd5b feature/grids

Removed some extra lines, added some notes and comments. Fixed classname.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 18 Feb 2016 17:17:41 +0100
parents 7aee9eba3bb8
children
line wrap: on
line source

classdef Mapped < 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