view test/@Gork/gark.m @ 10507:424795ef82b8

__go_draw_figure__.m: Don't set background for non-visible axes.
author Ben Abbott <bpabbott@mac.com>
date Sat, 10 Apr 2010 19:53:28 -0400
parents f9ab19428cd8
children
line wrap: on
line source

function [ out ] = gark( in, val )

  if (nargin==1) 
    out = in.gark;
  else
    in.gark = val;
    out = in;
  end
        
end