view test/@Gork/cork.m @ 9554:bda3513e7ba9

Fix test for setting of datasource properties. Add the edgecolor property to contours
author David Bateman <dbateman@free.fr>
date Sat, 22 Aug 2009 21:48:27 +0200
parents f9ab19428cd8
children
line wrap: on
line source

function [ out ] = cork( in, val )

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