function SavedData = save(Constr)
%SAVE  Saves constraint data

%   Author(s): A. Stothert
%   Copyright 1986-2004 The MathWorks, Inc. 
%   $Revision: 1.1.6.1 $  $Date: 2004/12/10 19:32:21 $

SavedData = struct(...
    'xCoord', Constr.xCoords, ...
    'xUnits', Constr.xUnits, ...
    'yCoord', Constr.yCoords, ...
    'yUnits', Constr.yUnits, ...
    'Linked', Constr.Linked, ...
    'Weight', Constr.Weight, ...
    'SelectedEdge', Constr.SelectedEdge, ...
    'Type', Constr.Type);