view +multiblock/Definition.m @ 588:42124009f940 feature/better_multiblock_defs

Add domain definition for circle.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 11 Sep 2017 13:50:29 +0200
parents 25fdc7a625b6
children 53d422efaabd
line wrap: on
line source

classdef Definition
    methods (Abstract)

        % Returns a multiblock.Grid given some parameters
        g = getGrid(obj, varargin)

        % label is the type of label used for plotting,
        % default is block name, 'id' show the index for each block.
        show(obj, label, gridLines, varargin)

        % Returns the grid size of each block in a cell array
        % The input parameters are determined by the subclass
        ms = getGridSizes(obj, varargin)
    end
end