function schema
% Defines properties for @polygondata class

%   Copyright 1986-2002 The MathWorks, Inc. 
%   $Revision: 1.1.6.2 $ $Date: 2004/12/26 21:51:32 $

pk = findpackage('plotconstr');

% Register class 
c = schema.class(pk,'polygondata',findclass(pk,'constrdata'));

%Data
schema.prop(c,'Linked','mxArray');             % Flags indicating how neighbours are joined in x & y axis
p = schema.prop(c,'SelectedEdge','mxArray');   % Edge closest to last button down
p.FactoryValue = 1;


