diff --git a/docs/Contents.m b/docs/Contents.m index bbebeb08a..ce7700bf3 100644 --- a/docs/Contents.m +++ b/docs/Contents.m @@ -21,23 +21,26 @@ dY=ifft(fft_dY,[],dimDir,'symmetric'); -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_AnyBody_force_analysys.m b/docs/DEMO_AnyBody_force_analysys.m index 6e24b27e7..5f6af75d2 100644 --- a/docs/DEMO_AnyBody_force_analysys.m +++ b/docs/DEMO_AnyBody_force_analysys.m @@ -448,23 +448,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_XML_replacing_node_field.m b/docs/DEMO_FEBio_XML_replacing_node_field.m new file mode 100644 index 000000000..0cf2481df --- /dev/null +++ b/docs/DEMO_FEBio_XML_replacing_node_field.m @@ -0,0 +1,96 @@ +%% DEMO_FEBio_XML_replacing_node_field +% Below is a demonstration for: +% 1) Creating basic XML data for a .feb file +% 2) Replacing field in the created XML data by first removing and +% recreating the field. + +%% +clear; close all; clc; + +%% Creating a feb structure with a geometry section and nodes + +%Geometry section +FEB_struct.Geometry.Nodes=rand(8,3); %A set of 8 nodes + +%% Using XML coding to build the FEB file + +%Initialize docNode object +domNode = com.mathworks.xml.XMLUtils.createDocument('febio_spec'); + +%Add geometry level to XML file +domNode=addGeometryLevel_FEB(domNode,FEB_struct); + +%View the XML data +% xmlView(domNode); +XML_str = gxmlwrite(domNode); +disp(XML_str); + +%% Replacing the node field +% Remove the old node field +geometryNode = domNode.getElementsByTagName('Geometry').item(0); %Get parent node +nodesNode = geometryNode.getElementsByTagName('Nodes').item(0); %Get child node +geometryNode.removeChild(nodesNode); %Remove child node + +%% +% Create some new nodes in the struct +FEB_struct.Geometry.Nodes=rand(12,3); + +%% +% Add the new nodes to the XML description, see also |febStruct2febFile| + +%Create new Nodes child +geometryNode = domNode.getElementsByTagName('Geometry').item(0); %Get parent node +parent_node = domNode.createElement('Nodes'); %Create node node +parent_node = geometryNode.appendChild(parent_node); + +n_steps=size(FEB_struct.Geometry.Nodes,1); +for q_n=1:1:n_steps + node_node = domNode.createElement('node'); %create node entry + node_node = parent_node.appendChild(node_node); %add node entry + attr = domNode.createAttribute('id'); %Create id attribute + attr.setNodeValue(sprintf('%u',q_n)); %Set id text + node_node.setAttributeNode(attr); %Add id attribute + node_node.appendChild(domNode.createTextNode(sprintf('%6.7e, %6.7e, %6.7e',FEB_struct.Geometry.Nodes(q_n,:)))); %append data text child +end + +%% +%View the new XML data +% xmlView(domNode); +XML_str = gxmlwrite(domNode); +disp(XML_str); + +%% Writing the XML data to a .feb file +% Exporting the XML data to a .feb file can be done using |write_XML_no_extra_lines| + +%% +% +% <> +% +% _*GIBBON*_ +% +% +% _Kevin Mattheus Moerman_, + +%% +% _*GIBBON footer text*_ +% +% License: +% +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. +% +% Copyright (C) 2017 Kevin Mattheus Moerman +% +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. +% +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_active_contraction_01.m b/docs/DEMO_FEBio_active_contraction_01.m index 6ca320339..8dea3f95d 100644 --- a/docs/DEMO_FEBio_active_contraction_01.m +++ b/docs/DEMO_FEBio_active_contraction_01.m @@ -301,23 +301,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_active_responsive_interface.m b/docs/DEMO_FEBio_active_responsive_interface.m index b17f9c3a8..f6232166e 100644 --- a/docs/DEMO_FEBio_active_responsive_interface.m +++ b/docs/DEMO_FEBio_active_responsive_interface.m @@ -598,23 +598,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_bar_force.m b/docs/DEMO_FEBio_bar_force.m index ab2679993..56e7635ee 100644 --- a/docs/DEMO_FEBio_bar_force.m +++ b/docs/DEMO_FEBio_bar_force.m @@ -268,23 +268,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_bar_soft_sphere_indentation.m b/docs/DEMO_FEBio_bar_soft_sphere_indentation.m index 9e4e591bb..c3d1b75be 100644 --- a/docs/DEMO_FEBio_bar_soft_sphere_indentation.m +++ b/docs/DEMO_FEBio_bar_soft_sphere_indentation.m @@ -361,23 +361,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_bar_sphere_indentation.m b/docs/DEMO_FEBio_bar_sphere_indentation.m index c1911e5e6..456359b7b 100644 --- a/docs/DEMO_FEBio_bar_sphere_indentation.m +++ b/docs/DEMO_FEBio_bar_sphere_indentation.m @@ -331,23 +331,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_bar_sphere_indentation_multi_generation.m b/docs/DEMO_FEBio_bar_sphere_indentation_multi_generation.m index 1f3d600f8..8f2b4b366 100644 --- a/docs/DEMO_FEBio_bar_sphere_indentation_multi_generation.m +++ b/docs/DEMO_FEBio_bar_sphere_indentation_multi_generation.m @@ -346,23 +346,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_bar_sphere_indentation_multi_step.m b/docs/DEMO_FEBio_bar_sphere_indentation_multi_step.m index ec4089fa4..4c337dac6 100644 --- a/docs/DEMO_FEBio_bar_sphere_indentation_multi_step.m +++ b/docs/DEMO_FEBio_bar_sphere_indentation_multi_step.m @@ -337,23 +337,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_bar_twist.m b/docs/DEMO_FEBio_bar_twist.m index e59d62716..aba5ee2b3 100644 --- a/docs/DEMO_FEBio_bar_twist.m +++ b/docs/DEMO_FEBio_bar_twist.m @@ -286,23 +286,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_beam_bending.m b/docs/DEMO_FEBio_beam_bending.m index ef338a9e8..b744a69c4 100644 --- a/docs/DEMO_FEBio_beam_bending.m +++ b/docs/DEMO_FEBio_beam_bending.m @@ -230,23 +230,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_block_biaxial_loading_stiffness_analysis.m b/docs/DEMO_FEBio_block_biaxial_loading_stiffness_analysis.m index 1f55ca532..4d9f5995a 100644 --- a/docs/DEMO_FEBio_block_biaxial_loading_stiffness_analysis.m +++ b/docs/DEMO_FEBio_block_biaxial_loading_stiffness_analysis.m @@ -343,23 +343,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_block_uniaxial_compression.m b/docs/DEMO_FEBio_block_uniaxial_compression.m index 7d04e715c..cfa0462cc 100644 --- a/docs/DEMO_FEBio_block_uniaxial_compression.m +++ b/docs/DEMO_FEBio_block_uniaxial_compression.m @@ -308,23 +308,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_block_uniaxial_compression_biphasic_ramp_hold.m b/docs/DEMO_FEBio_block_uniaxial_compression_biphasic_ramp_hold.m index 2000b9167..c1c10218f 100644 --- a/docs/DEMO_FEBio_block_uniaxial_compression_biphasic_ramp_hold.m +++ b/docs/DEMO_FEBio_block_uniaxial_compression_biphasic_ramp_hold.m @@ -333,23 +333,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_block_uniaxial_compression_fibre_reinforced.m b/docs/DEMO_FEBio_block_uniaxial_compression_fibre_reinforced.m index 8c332cbdd..3aadc23b7 100644 --- a/docs/DEMO_FEBio_block_uniaxial_compression_fibre_reinforced.m +++ b/docs/DEMO_FEBio_block_uniaxial_compression_fibre_reinforced.m @@ -338,23 +338,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_block_uniaxial_compression_stiffness_analysis.m b/docs/DEMO_FEBio_block_uniaxial_compression_stiffness_analysis.m index fa5c52a16..87da51547 100644 --- a/docs/DEMO_FEBio_block_uniaxial_compression_stiffness_analysis.m +++ b/docs/DEMO_FEBio_block_uniaxial_compression_stiffness_analysis.m @@ -313,23 +313,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_block_uniaxial_compression_viscoelastic_load_unload.m b/docs/DEMO_FEBio_block_uniaxial_compression_viscoelastic_load_unload.m index 1493e3360..babbb71ff 100644 --- a/docs/DEMO_FEBio_block_uniaxial_compression_viscoelastic_load_unload.m +++ b/docs/DEMO_FEBio_block_uniaxial_compression_viscoelastic_load_unload.m @@ -339,23 +339,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_block_uniaxial_compression_viscoelastic_ramp_hold.m b/docs/DEMO_FEBio_block_uniaxial_compression_viscoelastic_ramp_hold.m index 810bd73bc..bb6a0ad49 100644 --- a/docs/DEMO_FEBio_block_uniaxial_compression_viscoelastic_ramp_hold.m +++ b/docs/DEMO_FEBio_block_uniaxial_compression_viscoelastic_ramp_hold.m @@ -351,23 +351,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_continuous_fibre_distribution.m b/docs/DEMO_FEBio_continuous_fibre_distribution.m index 5633c1681..a8e72ec56 100644 --- a/docs/DEMO_FEBio_continuous_fibre_distribution.m +++ b/docs/DEMO_FEBio_continuous_fibre_distribution.m @@ -380,23 +380,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_cube_multi_generation.m b/docs/DEMO_FEBio_cube_multi_generation.m index 5e1ba36d9..76aac313e 100644 --- a/docs/DEMO_FEBio_cube_multi_generation.m +++ b/docs/DEMO_FEBio_cube_multi_generation.m @@ -254,7 +254,7 @@ if runFlag==1 %i.e. a succesful run % IMPORTING NODAL DISPLACEMENT RESULTS % Importing nodal displacements from a log file - [~, N_disp_mat,~]=importFEBio_logfile(FEB_struct.run_output_names{1}); %Nodal displacements + [~, N_disp_mat,~]=importFEBio_logfile(fullfile(savePath,FEB_struct.run_output_names{1})); %Nodal displacements DN=N_disp_mat(:,2:end,end); %Final nodal displacements @@ -289,23 +289,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_cube_multi_step.m b/docs/DEMO_FEBio_cube_multi_step.m index f57e55159..5e8b566a6 100644 --- a/docs/DEMO_FEBio_cube_multi_step.m +++ b/docs/DEMO_FEBio_cube_multi_step.m @@ -275,23 +275,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_cube_tension.m b/docs/DEMO_FEBio_cube_tension.m index d7d4e5c82..4ebd6f08e 100644 --- a/docs/DEMO_FEBio_cube_tension.m +++ b/docs/DEMO_FEBio_cube_tension.m @@ -271,23 +271,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_cube_viscoelastic_aniso.m b/docs/DEMO_FEBio_cube_viscoelastic_aniso.m index 9cfa3945b..e9369ec59 100644 --- a/docs/DEMO_FEBio_cube_viscoelastic_aniso.m +++ b/docs/DEMO_FEBio_cube_viscoelastic_aniso.m @@ -380,23 +380,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_cylinder_embedded_indentor_01.m b/docs/DEMO_FEBio_cylinder_embedded_indentor_01.m index 2f278653c..8b376c8b6 100644 --- a/docs/DEMO_FEBio_cylinder_embedded_indentor_01.m +++ b/docs/DEMO_FEBio_cylinder_embedded_indentor_01.m @@ -398,23 +398,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_cylinder_spherical_head_indentor.m b/docs/DEMO_FEBio_cylinder_spherical_head_indentor.m index f936eddba..825de96bc 100644 --- a/docs/DEMO_FEBio_cylinder_spherical_head_indentor.m +++ b/docs/DEMO_FEBio_cylinder_spherical_head_indentor.m @@ -546,23 +546,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_disc_probe_indentation.m b/docs/DEMO_FEBio_disc_probe_indentation.m index c154074f3..c3fc6bf5e 100644 --- a/docs/DEMO_FEBio_disc_probe_indentation.m +++ b/docs/DEMO_FEBio_disc_probe_indentation.m @@ -579,23 +579,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_hexLattice_compression.m b/docs/DEMO_FEBio_hexLattice_compression.m index 9577383e5..222552d5c 100644 --- a/docs/DEMO_FEBio_hexLattice_compression.m +++ b/docs/DEMO_FEBio_hexLattice_compression.m @@ -360,23 +360,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_iFEA_uniaxial_01.m b/docs/DEMO_FEBio_iFEA_uniaxial_01.m index 19310713e..7db480fcb 100644 --- a/docs/DEMO_FEBio_iFEA_uniaxial_01.m +++ b/docs/DEMO_FEBio_iFEA_uniaxial_01.m @@ -406,23 +406,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_iFEA_uniaxial_transiso_01.m b/docs/DEMO_FEBio_iFEA_uniaxial_transiso_01.m index 84bcc88b9..f80ef7f7d 100644 --- a/docs/DEMO_FEBio_iFEA_uniaxial_transiso_01.m +++ b/docs/DEMO_FEBio_iFEA_uniaxial_transiso_01.m @@ -434,23 +434,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_iFEA_uniaxial_transiso_02.m b/docs/DEMO_FEBio_iFEA_uniaxial_transiso_02.m index 201320367..5f0479944 100644 --- a/docs/DEMO_FEBio_iFEA_uniaxial_transiso_02.m +++ b/docs/DEMO_FEBio_iFEA_uniaxial_transiso_02.m @@ -437,23 +437,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_iFEA_uniaxial_transiso_03.m b/docs/DEMO_FEBio_iFEA_uniaxial_transiso_03.m index 430a12a90..ac15599e3 100644 --- a/docs/DEMO_FEBio_iFEA_uniaxial_transiso_03.m +++ b/docs/DEMO_FEBio_iFEA_uniaxial_transiso_03.m @@ -449,23 +449,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_layered_spatvar.m b/docs/DEMO_FEBio_layered_spatvar.m index 075b2e545..5cebcf951 100644 --- a/docs/DEMO_FEBio_layered_spatvar.m +++ b/docs/DEMO_FEBio_layered_spatvar.m @@ -279,23 +279,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_multigen_interface_active.m b/docs/DEMO_FEBio_multigen_interface_active.m index 895494b79..a6cb3eb67 100644 --- a/docs/DEMO_FEBio_multigen_interface_active.m +++ b/docs/DEMO_FEBio_multigen_interface_active.m @@ -591,23 +591,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_skin_sphere_indentation.m b/docs/DEMO_FEBio_skin_sphere_indentation.m index 792295d5f..2bdd2beb3 100644 --- a/docs/DEMO_FEBio_skin_sphere_indentation.m +++ b/docs/DEMO_FEBio_skin_sphere_indentation.m @@ -336,23 +336,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_skin_sphere_indentation_tet4_vs_tet10.m b/docs/DEMO_FEBio_skin_sphere_indentation_tet4_vs_tet10.m index f6fd8f2df..a63a5c918 100644 --- a/docs/DEMO_FEBio_skin_sphere_indentation_tet4_vs_tet10.m +++ b/docs/DEMO_FEBio_skin_sphere_indentation_tet4_vs_tet10.m @@ -417,23 +417,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_slab_displacement_loading_01.m b/docs/DEMO_FEBio_slab_displacement_loading_01.m index 1dad885d0..26278f6b5 100644 --- a/docs/DEMO_FEBio_slab_displacement_loading_01.m +++ b/docs/DEMO_FEBio_slab_displacement_loading_01.m @@ -375,23 +375,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_slab_pressure_loading_01.m b/docs/DEMO_FEBio_slab_pressure_loading_01.m index 813b8f248..34cf059f0 100644 --- a/docs/DEMO_FEBio_slab_pressure_loading_01.m +++ b/docs/DEMO_FEBio_slab_pressure_loading_01.m @@ -354,23 +354,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_slab_pressure_loading_02.m b/docs/DEMO_FEBio_slab_pressure_loading_02.m index 2d1e64932..44dd01998 100644 --- a/docs/DEMO_FEBio_slab_pressure_loading_02.m +++ b/docs/DEMO_FEBio_slab_pressure_loading_02.m @@ -319,23 +319,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_slab_pressure_loading_03.m b/docs/DEMO_FEBio_slab_pressure_loading_03.m index da402ef86..c9d8f8414 100644 --- a/docs/DEMO_FEBio_slab_pressure_loading_03.m +++ b/docs/DEMO_FEBio_slab_pressure_loading_03.m @@ -343,23 +343,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_spatially_varying_material_parameters.m b/docs/DEMO_FEBio_spatially_varying_material_parameters.m index bf14ca3b0..afe40f8df 100644 --- a/docs/DEMO_FEBio_spatially_varying_material_parameters.m +++ b/docs/DEMO_FEBio_spatially_varying_material_parameters.m @@ -253,23 +253,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_strip_multi_step_clamp.m b/docs/DEMO_FEBio_strip_multi_step_clamp.m index 53dc8cdc3..c1480b9d6 100644 --- a/docs/DEMO_FEBio_strip_multi_step_clamp.m +++ b/docs/DEMO_FEBio_strip_multi_step_clamp.m @@ -473,7 +473,7 @@ %% IMPORTING NODAL DISPLACEMENT RESULTS % Importing nodal displacements from a log file -[~, N_disp_mat,~]=importFEBio_logfile(FEB_struct.run_output_names{1}); %Nodal displacements +[~, N_disp_mat,~]=importFEBio_logfile(fullfile(savePath,FEB_struct.run_output_names{1})); %Nodal displacements DN=N_disp_mat(:,2:end,end); %Final nodal displacements @@ -483,7 +483,7 @@ %% IMPORT NODAL FORCE RESULTS -[~, N_force_mat,~]=importFEBio_logfile(FEB_struct.run_output_names{2}); %Nodal forces +[~, N_force_mat,~]=importFEBio_logfile(fullfile(savePath,FEB_struct.run_output_names{2})); %Nodal forces %% % Plotting the deformed model @@ -511,23 +511,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_tongue.m b/docs/DEMO_FEBio_tongue.m index 9ad0a090a..9f207d69b 100644 --- a/docs/DEMO_FEBio_tongue.m +++ b/docs/DEMO_FEBio_tongue.m @@ -241,23 +241,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_FEBio_trabeculae_compression.m b/docs/DEMO_FEBio_trabeculae_compression.m index 0ef6467a1..291acde54 100644 --- a/docs/DEMO_FEBio_trabeculae_compression.m +++ b/docs/DEMO_FEBio_trabeculae_compression.m @@ -399,23 +399,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_MixedTetHexMeshing_torus.m b/docs/DEMO_MixedTetHexMeshing_torus.m index c4922a666..75890dd5b 100644 --- a/docs/DEMO_MixedTetHexMeshing_torus.m +++ b/docs/DEMO_MixedTetHexMeshing_torus.m @@ -363,23 +363,26 @@ % % Kevin M. Moerman (kevinmoerman@hotmail.com) -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_additional_colormaps.m b/docs/DEMO_additional_colormaps.m index 33e6421dc..7646521b7 100644 --- a/docs/DEMO_additional_colormaps.m +++ b/docs/DEMO_additional_colormaps.m @@ -102,23 +102,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_create_run_import_FEBIO_spheres.m b/docs/DEMO_create_run_import_FEBIO_spheres.m index 4b7e0d1ee..fa2f8a192 100644 --- a/docs/DEMO_create_run_import_FEBIO_spheres.m +++ b/docs/DEMO_create_run_import_FEBIO_spheres.m @@ -319,7 +319,7 @@ %% IMPORTING NODAL DISPLACEMENT RESULTS % Importing nodal displacements from a log file - [~, N_disp_mat,~]=importFEBio_logfile(FEB_struct.run_output_names{1}); %Nodal displacements + [~, N_disp_mat,~]=importFEBio_logfile(fullfile(savePath,FEB_struct.run_output_names{1})); %Nodal displacements DN=N_disp_mat(:,2:end,end); %Final nodal displacements @@ -388,23 +388,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_create_run_import_FEBIO_spheres_pressure.m b/docs/DEMO_create_run_import_FEBIO_spheres_pressure.m index b753a05a3..b519c2437 100644 --- a/docs/DEMO_create_run_import_FEBIO_spheres_pressure.m +++ b/docs/DEMO_create_run_import_FEBIO_spheres_pressure.m @@ -387,23 +387,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_create_run_import_FEBIO_spheres_traction.m b/docs/DEMO_create_run_import_FEBIO_spheres_traction.m index bf9165b81..c2a5ae553 100644 --- a/docs/DEMO_create_run_import_FEBIO_spheres_traction.m +++ b/docs/DEMO_create_run_import_FEBIO_spheres_traction.m @@ -394,23 +394,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_femur_STL_surface_improvement.m b/docs/DEMO_femur_STL_surface_improvement.m index be4bd6840..0aa105c97 100644 --- a/docs/DEMO_femur_STL_surface_improvement.m +++ b/docs/DEMO_femur_STL_surface_improvement.m @@ -196,23 +196,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_geodesic_remeshing.m b/docs/DEMO_geodesic_remeshing.m index 8d3385db9..a1591607c 100644 --- a/docs/DEMO_geodesic_remeshing.m +++ b/docs/DEMO_geodesic_remeshing.m @@ -244,23 +244,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_import_FEB_export_INP.m b/docs/DEMO_import_FEB_export_INP.m index 20a88c612..5d7a13591 100644 --- a/docs/DEMO_import_FEB_export_INP.m +++ b/docs/DEMO_import_FEB_export_INP.m @@ -88,23 +88,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_tetGen_mesh_sizing_function_1.m b/docs/DEMO_tetGen_mesh_sizing_function_1.m index 7a1139317..9112d482e 100644 --- a/docs/DEMO_tetGen_mesh_sizing_function_1.m +++ b/docs/DEMO_tetGen_mesh_sizing_function_1.m @@ -147,23 +147,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/DEMO_vessel_FEBIO_fibre_mapping.m b/docs/DEMO_vessel_FEBIO_fibre_mapping.m index b0861bc11..846cd297d 100644 --- a/docs/DEMO_vessel_FEBIO_fibre_mapping.m +++ b/docs/DEMO_vessel_FEBIO_fibre_mapping.m @@ -591,23 +591,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/Documentation.md b/docs/Documentation.md index 949d4340d..07dd4b883 100644 --- a/docs/Documentation.md +++ b/docs/Documentation.md @@ -143,6 +143,7 @@ Follow the installation instructions to integrate and access GIBBON documentatio ## Demo files [DEMO_AnyBody_force_analysys](html/DEMO_AnyBody_force_analysys.html) ![DEMO_AnyBody_force_analysys](html/DEMO_AnyBody_force_analysys.png){:height="40px"} +[DEMO_FEBio_XML_replacing_node_field](html/DEMO_FEBio_XML_replacing_node_field.html) [DEMO_FEBio_active_contraction_01](html/DEMO_FEBio_active_contraction_01.html) ![DEMO_FEBio_active_contraction_01](html/DEMO_FEBio_active_contraction_01.png){:height="40px"} [DEMO_FEBio_active_responsive_interface](html/DEMO_FEBio_active_responsive_interface.html) ![DEMO_FEBio_active_responsive_interface](html/DEMO_FEBio_active_responsive_interface.png){:height="40px"} [DEMO_FEBio_bar_force](html/DEMO_FEBio_bar_force.html) ![DEMO_FEBio_bar_force](html/DEMO_FEBio_bar_force.png){:height="40px"} @@ -192,7 +193,6 @@ Follow the installation instructions to integrate and access GIBBON documentatio [DEMO_create_run_import_FEBIO_spheres_pressure](html/DEMO_create_run_import_FEBIO_spheres_pressure.html) ![DEMO_create_run_import_FEBIO_spheres_pressure](html/DEMO_create_run_import_FEBIO_spheres_pressure.png){:height="40px"} [DEMO_create_run_import_FEBIO_spheres_traction](html/DEMO_create_run_import_FEBIO_spheres_traction.html) ![DEMO_create_run_import_FEBIO_spheres_traction](html/DEMO_create_run_import_FEBIO_spheres_traction.png){:height="40px"} [DEMO_femur_STL_surface_improvement](html/DEMO_femur_STL_surface_improvement.html) ![DEMO_femur_STL_surface_improvement](html/DEMO_femur_STL_surface_improvement.png){:height="40px"} -[DEMO_geodesic_remeshing](html/DEMO_geodesic_remeshing.html) ![DEMO_geodesic_remeshing](html/DEMO_geodesic_remeshing.png){:height="40px"} [DEMO_import_FEB_export_INP](html/DEMO_import_FEB_export_INP.html) ![DEMO_import_FEB_export_INP](html/DEMO_import_FEB_export_INP.png){:height="40px"} [DEMO_tetGen_mesh_sizing_function_1](html/DEMO_tetGen_mesh_sizing_function_1.html) ![DEMO_tetGen_mesh_sizing_function_1](html/DEMO_tetGen_mesh_sizing_function_1.png){:height="40px"} [DEMO_vessel_FEBIO_fibre_mapping](html/DEMO_vessel_FEBIO_fibre_mapping.html) ![DEMO_vessel_FEBIO_fibre_mapping](html/DEMO_vessel_FEBIO_fibre_mapping.png){:height="40px"} diff --git a/docs/GIBBON_product_page.m b/docs/GIBBON_product_page.m index 10365d7c8..6b30bf932 100644 --- a/docs/GIBBON_product_page.m +++ b/docs/GIBBON_product_page.m @@ -33,23 +33,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_addBoundaryLevel_FEB.m b/docs/HELP_addBoundaryLevel_FEB.m index 91805c166..454fcbcd4 100644 --- a/docs/HELP_addBoundaryLevel_FEB.m +++ b/docs/HELP_addBoundaryLevel_FEB.m @@ -118,23 +118,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_addConstraintsLevel_FEB.m b/docs/HELP_addConstraintsLevel_FEB.m index 5750367be..8867dc7ba 100644 --- a/docs/HELP_addConstraintsLevel_FEB.m +++ b/docs/HELP_addConstraintsLevel_FEB.m @@ -59,23 +59,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_addContactLevel_FEB.m b/docs/HELP_addContactLevel_FEB.m index b51a79cc7..0192e3211 100644 --- a/docs/HELP_addContactLevel_FEB.m +++ b/docs/HELP_addContactLevel_FEB.m @@ -92,23 +92,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_addControlLevel_FEB.m b/docs/HELP_addControlLevel_FEB.m index 43e827a3a..bb26761c5 100644 --- a/docs/HELP_addControlLevel_FEB.m +++ b/docs/HELP_addControlLevel_FEB.m @@ -53,23 +53,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_addGLobalsLevel_FEB.m b/docs/HELP_addGLobalsLevel_FEB.m index d1c44dce6..874b48702 100644 --- a/docs/HELP_addGLobalsLevel_FEB.m +++ b/docs/HELP_addGLobalsLevel_FEB.m @@ -53,23 +53,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_addGeometryLevel_FEB.m b/docs/HELP_addGeometryLevel_FEB.m index de70b4141..7b6126650 100644 --- a/docs/HELP_addGeometryLevel_FEB.m +++ b/docs/HELP_addGeometryLevel_FEB.m @@ -74,23 +74,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_addMatAxisFibreElementData_FEB.m b/docs/HELP_addMatAxisFibreElementData_FEB.m index cbfca4025..b7e049821 100644 --- a/docs/HELP_addMatAxisFibreElementData_FEB.m +++ b/docs/HELP_addMatAxisFibreElementData_FEB.m @@ -62,23 +62,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_adjacentdircount.m b/docs/HELP_adjacentdircount.m index ee4921693..887fc4845 100644 --- a/docs/HELP_adjacentdircount.m +++ b/docs/HELP_adjacentdircount.m @@ -160,23 +160,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_affineTransformationMatrixDirect.m b/docs/HELP_affineTransformationMatrixDirect.m index 9d7ed7823..f6416cc0b 100644 --- a/docs/HELP_affineTransformationMatrixDirect.m +++ b/docs/HELP_affineTransformationMatrixDirect.m @@ -100,23 +100,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_anim8.m b/docs/HELP_anim8.m index decda6ac8..702350bce 100644 --- a/docs/HELP_anim8.m +++ b/docs/HELP_anim8.m @@ -261,23 +261,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_bias_nodes1d.m b/docs/HELP_bias_nodes1d.m index 818afd8fd..5ac8c4a95 100644 --- a/docs/HELP_bias_nodes1d.m +++ b/docs/HELP_bias_nodes1d.m @@ -49,23 +49,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_biharmonicSplineInterpolation.m b/docs/HELP_biharmonicSplineInterpolation.m index 8f0c9dc3a..8cc7d1703 100644 --- a/docs/HELP_biharmonicSplineInterpolation.m +++ b/docs/HELP_biharmonicSplineInterpolation.m @@ -245,23 +245,26 @@ -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_box_indices.m b/docs/HELP_box_indices.m index 9d4f84e56..6c14cd6f6 100644 --- a/docs/HELP_box_indices.m +++ b/docs/HELP_box_indices.m @@ -79,23 +79,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_cFigure.m b/docs/HELP_cFigure.m index d64fd7dc8..ec1d58fb6 100644 --- a/docs/HELP_cFigure.m +++ b/docs/HELP_cFigure.m @@ -126,23 +126,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_cap_patchcylinder.m b/docs/HELP_cap_patchcylinder.m index d4e943fa4..100c17b0c 100644 --- a/docs/HELP_cap_patchcylinder.m +++ b/docs/HELP_cap_patchcylinder.m @@ -96,23 +96,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_cart2im.m b/docs/HELP_cart2im.m index 095e348ea..b0b5c0b89 100644 --- a/docs/HELP_cart2im.m +++ b/docs/HELP_cart2im.m @@ -100,23 +100,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_cell2txtfile.m b/docs/HELP_cell2txtfile.m index 5cf5265a2..8b581d68f 100644 --- a/docs/HELP_cell2txtfile.m +++ b/docs/HELP_cell2txtfile.m @@ -53,23 +53,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_cellEig.m b/docs/HELP_cellEig.m index 288738736..bad54d912 100644 --- a/docs/HELP_cellEig.m +++ b/docs/HELP_cellEig.m @@ -46,23 +46,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_checkerBoard3D.m b/docs/HELP_checkerBoard3D.m index d492be863..0ab485be6 100644 --- a/docs/HELP_checkerBoard3D.m +++ b/docs/HELP_checkerBoard3D.m @@ -67,23 +67,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_constrainedDelaunayTetGen.m b/docs/HELP_constrainedDelaunayTetGen.m index e66e69fb7..4d9b09e49 100644 --- a/docs/HELP_constrainedDelaunayTetGen.m +++ b/docs/HELP_constrainedDelaunayTetGen.m @@ -260,23 +260,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_dcmFolder2MATobject.m b/docs/HELP_dcmFolder2MATobject.m index eba286550..506aabd82 100644 --- a/docs/HELP_dcmFolder2MATobject.m +++ b/docs/HELP_dcmFolder2MATobject.m @@ -109,23 +109,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_discQuadMesh.m b/docs/HELP_discQuadMesh.m index 5aa6849b6..6233c1b13 100644 --- a/docs/HELP_discQuadMesh.m +++ b/docs/HELP_discQuadMesh.m @@ -75,23 +75,26 @@ -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_edgeListToCurve.m b/docs/HELP_edgeListToCurve.m index 112aee6e8..2adc26353 100644 --- a/docs/HELP_edgeListToCurve.m +++ b/docs/HELP_edgeListToCurve.m @@ -76,23 +76,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_efw.m b/docs/HELP_efw.m index 4a9020e50..33c0caad0 100644 --- a/docs/HELP_efw.m +++ b/docs/HELP_efw.m @@ -58,23 +58,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_element2HexLattice.m b/docs/HELP_element2HexLattice.m index 3f5c9d5b8..20f836cee 100644 --- a/docs/HELP_element2HexLattice.m +++ b/docs/HELP_element2HexLattice.m @@ -287,23 +287,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_ellipsoidFit_centered.m b/docs/HELP_ellipsoidFit_centered.m index 18a81aa7a..781444a4d 100644 --- a/docs/HELP_ellipsoidFit_centered.m +++ b/docs/HELP_ellipsoidFit_centered.m @@ -125,23 +125,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_euler2DCM.m b/docs/HELP_euler2DCM.m index 38dd290c9..25abb24da 100644 --- a/docs/HELP_euler2DCM.m +++ b/docs/HELP_euler2DCM.m @@ -123,23 +123,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_evenlySampleCurve.m b/docs/HELP_evenlySampleCurve.m index f989245e2..5c71e3370 100644 --- a/docs/HELP_evenlySampleCurve.m +++ b/docs/HELP_evenlySampleCurve.m @@ -162,23 +162,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_export_INP.m b/docs/HELP_export_INP.m index 117fdf276..f6391efe7 100644 --- a/docs/HELP_export_INP.m +++ b/docs/HELP_export_INP.m @@ -97,23 +97,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_export_STL_txt.m b/docs/HELP_export_STL_txt.m index ea7fcc80e..2f0d75183 100644 --- a/docs/HELP_export_STL_txt.m +++ b/docs/HELP_export_STL_txt.m @@ -63,23 +63,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_filletCurve.m b/docs/HELP_filletCurve.m index 3700ed208..157c7d356 100644 --- a/docs/HELP_filletCurve.m +++ b/docs/HELP_filletCurve.m @@ -127,23 +127,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_foamWrap.m b/docs/HELP_foamWrap.m index 724e9fca2..c3f17ee5c 100644 --- a/docs/HELP_foamWrap.m +++ b/docs/HELP_foamWrap.m @@ -77,23 +77,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_gaborCoil.m b/docs/HELP_gaborCoil.m index f80558711..4241b4354 100644 --- a/docs/HELP_gaborCoil.m +++ b/docs/HELP_gaborCoil.m @@ -74,23 +74,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_geoSphere.m b/docs/HELP_geoSphere.m index 64ffb7f89..2f28bc72e 100644 --- a/docs/HELP_geoSphere.m +++ b/docs/HELP_geoSphere.m @@ -82,23 +82,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_graphicsModels.m b/docs/HELP_graphicsModels.m index 53bcf3b91..7b22e5d2b 100644 --- a/docs/HELP_graphicsModels.m +++ b/docs/HELP_graphicsModels.m @@ -48,23 +48,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_hemiSphereCylMesh.m b/docs/HELP_hemiSphereCylMesh.m index 30cce44f2..06940eab5 100644 --- a/docs/HELP_hemiSphereCylMesh.m +++ b/docs/HELP_hemiSphereCylMesh.m @@ -89,23 +89,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_hemiSphereRegionMesh.m b/docs/HELP_hemiSphereRegionMesh.m index ff91717d1..55ccb27ea 100644 --- a/docs/HELP_hemiSphereRegionMesh.m +++ b/docs/HELP_hemiSphereRegionMesh.m @@ -73,23 +73,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_hessianScalar.m b/docs/HELP_hessianScalar.m index df843dbd7..c9b8bd74c 100644 --- a/docs/HELP_hessianScalar.m +++ b/docs/HELP_hessianScalar.m @@ -150,23 +150,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_hex2tet.m b/docs/HELP_hex2tet.m index 96930df2b..cf2b4daf6 100644 --- a/docs/HELP_hex2tet.m +++ b/docs/HELP_hex2tet.m @@ -66,23 +66,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_hexMeshBox.m b/docs/HELP_hexMeshBox.m index 24b7757b4..75c6ce983 100644 --- a/docs/HELP_hexMeshBox.m +++ b/docs/HELP_hexMeshBox.m @@ -56,23 +56,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_hexMeshSphere.m b/docs/HELP_hexMeshSphere.m index 03bcdb093..55dbec6a1 100644 --- a/docs/HELP_hexMeshSphere.m +++ b/docs/HELP_hexMeshSphere.m @@ -114,23 +114,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_honeyCombMesh.m b/docs/HELP_honeyCombMesh.m index 1738418d7..34cfeb511 100644 --- a/docs/HELP_honeyCombMesh.m +++ b/docs/HELP_honeyCombMesh.m @@ -50,23 +50,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_im2cart.m b/docs/HELP_im2cart.m index 30573ed8e..0d7f1b8a6 100644 --- a/docs/HELP_im2cart.m +++ b/docs/HELP_im2cart.m @@ -102,23 +102,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_im2patch.m b/docs/HELP_im2patch.m index 3a2d0544c..abdde6b7b 100644 --- a/docs/HELP_im2patch.m +++ b/docs/HELP_im2patch.m @@ -356,23 +356,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_importAnyBodyOutput.m b/docs/HELP_importAnyBodyOutput.m index bf971f845..f0db1a3b7 100644 --- a/docs/HELP_importAnyBodyOutput.m +++ b/docs/HELP_importAnyBodyOutput.m @@ -72,23 +72,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_import_FEB.m b/docs/HELP_import_FEB.m index 4e5bfb97d..0bd6cc717 100644 --- a/docs/HELP_import_FEB.m +++ b/docs/HELP_import_FEB.m @@ -90,23 +90,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_import_INP.m b/docs/HELP_import_INP.m index 1e17ef35c..6a71958c9 100644 --- a/docs/HELP_import_INP.m +++ b/docs/HELP_import_INP.m @@ -73,23 +73,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_import_STL.m b/docs/HELP_import_STL.m index fa9bd39e2..c70439696 100644 --- a/docs/HELP_import_STL.m +++ b/docs/HELP_import_STL.m @@ -80,23 +80,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_import_STL_bin.m b/docs/HELP_import_STL_bin.m index 51f1ef102..1ada8de72 100644 --- a/docs/HELP_import_STL_bin.m +++ b/docs/HELP_import_STL_bin.m @@ -53,23 +53,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_import_STL_txt.m b/docs/HELP_import_STL_txt.m index 5ca908fad..f47c7e439 100644 --- a/docs/HELP_import_STL_txt.m +++ b/docs/HELP_import_STL_txt.m @@ -78,23 +78,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_import_off.m b/docs/HELP_import_off.m index 1529a1e8e..e6663149d 100644 --- a/docs/HELP_import_off.m +++ b/docs/HELP_import_off.m @@ -54,23 +54,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_imx.m b/docs/HELP_imx.m index 4ed3fd2bb..b8ac76eca 100644 --- a/docs/HELP_imx.m +++ b/docs/HELP_imx.m @@ -47,23 +47,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_ind2patch.m b/docs/HELP_ind2patch.m index 09f0f28be..94506f610 100644 --- a/docs/HELP_ind2patch.m +++ b/docs/HELP_ind2patch.m @@ -356,23 +356,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_interp1_ND.m b/docs/HELP_interp1_ND.m index f81d54ced..0916d0505 100644 --- a/docs/HELP_interp1_ND.m +++ b/docs/HELP_interp1_ND.m @@ -187,23 +187,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_interp_spherical.m b/docs/HELP_interp_spherical.m index 64ee39b18..d054e3e1c 100644 --- a/docs/HELP_interp_spherical.m +++ b/docs/HELP_interp_spherical.m @@ -88,23 +88,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_joinElementSets.m b/docs/HELP_joinElementSets.m index 53dd024cb..e9506a715 100644 --- a/docs/HELP_joinElementSets.m +++ b/docs/HELP_joinElementSets.m @@ -135,23 +135,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_linspacen.m b/docs/HELP_linspacen.m index 745adc0c7..37e570233 100644 --- a/docs/HELP_linspacen.m +++ b/docs/HELP_linspacen.m @@ -138,23 +138,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_minDist.m b/docs/HELP_minDist.m index 14a56c7d5..dd30dc34f 100644 --- a/docs/HELP_minDist.m +++ b/docs/HELP_minDist.m @@ -146,23 +146,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_minPolyTwist.m b/docs/HELP_minPolyTwist.m index 91c1a941c..2fe0e4ba8 100644 --- a/docs/HELP_minPolyTwist.m +++ b/docs/HELP_minPolyTwist.m @@ -148,23 +148,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_multiRegionTriMesh2D.m b/docs/HELP_multiRegionTriMesh2D.m index 0d984c76c..e4eaa0add 100644 --- a/docs/HELP_multiRegionTriMesh2D.m +++ b/docs/HELP_multiRegionTriMesh2D.m @@ -75,23 +75,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_multiRegionTriMeshUneven2D.m b/docs/HELP_multiRegionTriMeshUneven2D.m index 3cd2a6ae8..1708aa2bc 100644 --- a/docs/HELP_multiRegionTriMeshUneven2D.m +++ b/docs/HELP_multiRegionTriMeshUneven2D.m @@ -66,23 +66,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_numReplace.m b/docs/HELP_numReplace.m index e887a8f3a..ed9762513 100644 --- a/docs/HELP_numReplace.m +++ b/docs/HELP_numReplace.m @@ -38,23 +38,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_parLimNat.m b/docs/HELP_parLimNat.m index eff016f21..c9c26633a 100644 --- a/docs/HELP_parLimNat.m +++ b/docs/HELP_parLimNat.m @@ -79,23 +79,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_patch2Im.m b/docs/HELP_patch2Im.m index e9d66fb77..1f5dcdea7 100644 --- a/docs/HELP_patch2Im.m +++ b/docs/HELP_patch2Im.m @@ -201,23 +201,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_patch2STL.m b/docs/HELP_patch2STL.m index 20b4c7b14..08c1ea5d4 100644 --- a/docs/HELP_patch2STL.m +++ b/docs/HELP_patch2STL.m @@ -45,23 +45,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_patchDual.m b/docs/HELP_patchDual.m index 651c931ff..6e8427c06 100644 --- a/docs/HELP_patchDual.m +++ b/docs/HELP_patchDual.m @@ -119,23 +119,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_patchEdge2Im.m b/docs/HELP_patchEdge2Im.m index 60837431b..52a24fe33 100644 --- a/docs/HELP_patchEdge2Im.m +++ b/docs/HELP_patchEdge2Im.m @@ -142,23 +142,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_patchTorus.m b/docs/HELP_patchTorus.m index 985b860ac..b81f4ce1b 100644 --- a/docs/HELP_patchTorus.m +++ b/docs/HELP_patchTorus.m @@ -114,23 +114,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_patchcylinder.m b/docs/HELP_patchcylinder.m index d52c38dc6..b0bd0542f 100644 --- a/docs/HELP_patchcylinder.m +++ b/docs/HELP_patchcylinder.m @@ -114,23 +114,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_platonic_solid.m b/docs/HELP_platonic_solid.m index d5ffb10d8..3198c95a3 100644 --- a/docs/HELP_platonic_solid.m +++ b/docs/HELP_platonic_solid.m @@ -44,23 +44,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_pointLocationTR.m b/docs/HELP_pointLocationTR.m index 49ee66978..158b60eeb 100644 --- a/docs/HELP_pointLocationTR.m +++ b/docs/HELP_pointLocationTR.m @@ -253,23 +253,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_pointSetDistMap.m b/docs/HELP_pointSetDistMap.m index 734ea5764..c72b6f27f 100644 --- a/docs/HELP_pointSetDistMap.m +++ b/docs/HELP_pointSetDistMap.m @@ -179,23 +179,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_pointSetPrincipalDir.m b/docs/HELP_pointSetPrincipalDir.m index 7305dd581..5acf86e9f 100644 --- a/docs/HELP_pointSetPrincipalDir.m +++ b/docs/HELP_pointSetPrincipalDir.m @@ -76,23 +76,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_polyExtrude.m b/docs/HELP_polyExtrude.m index b592a2469..45184ffd3 100644 --- a/docs/HELP_polyExtrude.m +++ b/docs/HELP_polyExtrude.m @@ -199,23 +199,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_polyLoftLinear.m b/docs/HELP_polyLoftLinear.m index fc7984752..445117405 100644 --- a/docs/HELP_polyLoftLinear.m +++ b/docs/HELP_polyLoftLinear.m @@ -92,23 +92,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_polySet2Im.m b/docs/HELP_polySet2Im.m index 3e7942956..8d5de51c3 100644 --- a/docs/HELP_polySet2Im.m +++ b/docs/HELP_polySet2Im.m @@ -216,23 +216,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_polyTube.m b/docs/HELP_polyTube.m index ad19074bb..5c82db77e 100644 --- a/docs/HELP_polyTube.m +++ b/docs/HELP_polyTube.m @@ -52,23 +52,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_quad2tri.m b/docs/HELP_quad2tri.m index 496dec001..ad86f5389 100644 --- a/docs/HELP_quad2tri.m +++ b/docs/HELP_quad2tri.m @@ -67,23 +67,26 @@ % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_quadBox.m b/docs/HELP_quadBox.m index 65a1e9082..a2c1b0741 100644 --- a/docs/HELP_quadBox.m +++ b/docs/HELP_quadBox.m @@ -49,23 +49,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_quadSphere.m b/docs/HELP_quadSphere.m index 840533f7b..f9b85c24c 100644 --- a/docs/HELP_quadSphere.m +++ b/docs/HELP_quadSphere.m @@ -122,23 +122,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_quiver3Dpatch.m b/docs/HELP_quiver3Dpatch.m index 2d79b4731..55275e971 100644 --- a/docs/HELP_quiver3Dpatch.m +++ b/docs/HELP_quiver3Dpatch.m @@ -214,23 +214,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_regionTriMesh2D.m b/docs/HELP_regionTriMesh2D.m index 1c97a38e7..1751b89e8 100644 --- a/docs/HELP_regionTriMesh2D.m +++ b/docs/HELP_regionTriMesh2D.m @@ -89,23 +89,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_regionTriMesh3D.m b/docs/HELP_regionTriMesh3D.m index b2b0821a0..a325c18c6 100644 --- a/docs/HELP_regionTriMesh3D.m +++ b/docs/HELP_regionTriMesh3D.m @@ -97,23 +97,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_regionTriMeshRand2D.m b/docs/HELP_regionTriMeshRand2D.m index 9e5330745..16bc9b2d7 100644 --- a/docs/HELP_regionTriMeshRand2D.m +++ b/docs/HELP_regionTriMeshRand2D.m @@ -61,23 +61,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_resampleColormap.m b/docs/HELP_resampleColormap.m index f2956367f..9a47f4650 100644 --- a/docs/HELP_resampleColormap.m +++ b/docs/HELP_resampleColormap.m @@ -61,23 +61,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_rgbImage2ColorMap.m b/docs/HELP_rgbImage2ColorMap.m index 2ae318f26..df5197e44 100644 --- a/docs/HELP_rgbImage2ColorMap.m +++ b/docs/HELP_rgbImage2ColorMap.m @@ -108,23 +108,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_rhombicDodecahedron.m b/docs/HELP_rhombicDodecahedron.m index 178716803..43565e231 100644 --- a/docs/HELP_rhombicDodecahedron.m +++ b/docs/HELP_rhombicDodecahedron.m @@ -42,23 +42,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_rhombicDodecahedronMesh.m b/docs/HELP_rhombicDodecahedronMesh.m index c5007127e..9a603901c 100644 --- a/docs/HELP_rhombicDodecahedronMesh.m +++ b/docs/HELP_rhombicDodecahedronMesh.m @@ -125,23 +125,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_rigidTransformationMatrixDirect.m b/docs/HELP_rigidTransformationMatrixDirect.m index cf0eb9c94..244878382 100644 --- a/docs/HELP_rigidTransformationMatrixDirect.m +++ b/docs/HELP_rigidTransformationMatrixDirect.m @@ -100,23 +100,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_runTetGen.m b/docs/HELP_runTetGen.m index 493253ea0..89a5dc464 100644 --- a/docs/HELP_runTetGen.m +++ b/docs/HELP_runTetGen.m @@ -751,23 +751,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_sampleCurveEvenly.m b/docs/HELP_sampleCurveEvenly.m index 77588f784..68edd0d05 100644 --- a/docs/HELP_sampleCurveEvenly.m +++ b/docs/HELP_sampleCurveEvenly.m @@ -173,23 +173,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_set_mat_par_FEBIO.m b/docs/HELP_set_mat_par_FEBIO.m index e7ad16c4b..d52f903ec 100644 --- a/docs/HELP_set_mat_par_FEBIO.m +++ b/docs/HELP_set_mat_par_FEBIO.m @@ -175,23 +175,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_splitCurveSetMesh.m b/docs/HELP_splitCurveSetMesh.m index 2def0f973..c1a1da10d 100644 --- a/docs/HELP_splitCurveSetMesh.m +++ b/docs/HELP_splitCurveSetMesh.m @@ -223,23 +223,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_stanford_bunny.m b/docs/HELP_stanford_bunny.m index b6a4094ec..5c89a4d5d 100644 --- a/docs/HELP_stanford_bunny.m +++ b/docs/HELP_stanford_bunny.m @@ -56,23 +56,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_subCurve.m b/docs/HELP_subCurve.m index 556f23b5d..6d1fa7454 100644 --- a/docs/HELP_subCurve.m +++ b/docs/HELP_subCurve.m @@ -77,23 +77,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_subEdge.m b/docs/HELP_subEdge.m index df441f48a..9ec238792 100644 --- a/docs/HELP_subEdge.m +++ b/docs/HELP_subEdge.m @@ -67,23 +67,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_subHex.m b/docs/HELP_subHex.m index 62f4ccd52..966bb3201 100644 --- a/docs/HELP_subHex.m +++ b/docs/HELP_subHex.m @@ -186,23 +186,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_subTet.m b/docs/HELP_subTet.m index 7abdbbf51..35ff741d7 100644 --- a/docs/HELP_subTet.m +++ b/docs/HELP_subTet.m @@ -78,23 +78,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_subTriCentre.m b/docs/HELP_subTriCentre.m index ff2a1426b..097dfffaa 100644 --- a/docs/HELP_subTriCentre.m +++ b/docs/HELP_subTriCentre.m @@ -166,23 +166,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_subTriDual.m b/docs/HELP_subTriDual.m index 0b3c573aa..88d83abc4 100644 --- a/docs/HELP_subTriDual.m +++ b/docs/HELP_subTriDual.m @@ -420,23 +420,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_subTriLocal.m b/docs/HELP_subTriLocal.m index fc5606507..1a2d00cf6 100644 --- a/docs/HELP_subTriLocal.m +++ b/docs/HELP_subTriLocal.m @@ -221,23 +221,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_subtri.m b/docs/HELP_subtri.m index 2bd7ed40c..2878d436d 100644 --- a/docs/HELP_subtri.m +++ b/docs/HELP_subtri.m @@ -85,23 +85,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_sweepLoft.m b/docs/HELP_sweepLoft.m index 572d7128f..726561a0d 100644 --- a/docs/HELP_sweepLoft.m +++ b/docs/HELP_sweepLoft.m @@ -205,23 +205,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_tesIND.m b/docs/HELP_tesIND.m index 6abd58ed4..c1d7e2745 100644 --- a/docs/HELP_tesIND.m +++ b/docs/HELP_tesIND.m @@ -325,23 +325,26 @@ % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_testGibbon.m b/docs/HELP_testGibbon.m index 1d57bf883..c439f23a7 100644 --- a/docs/HELP_testGibbon.m +++ b/docs/HELP_testGibbon.m @@ -34,23 +34,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_tet2hex.m b/docs/HELP_tet2hex.m index 0602e1dfe..869797da6 100644 --- a/docs/HELP_tet2hex.m +++ b/docs/HELP_tet2hex.m @@ -124,23 +124,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_tet4_tet10.m b/docs/HELP_tet4_tet10.m index 05447111c..1081a1557 100644 --- a/docs/HELP_tet4_tet10.m +++ b/docs/HELP_tet4_tet10.m @@ -152,23 +152,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_tetVolMeanEst.m b/docs/HELP_tetVolMeanEst.m index 568cfcdbd..c32198f18 100644 --- a/docs/HELP_tetVolMeanEst.m +++ b/docs/HELP_tetVolMeanEst.m @@ -129,23 +129,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_tri2quad.m b/docs/HELP_tri2quad.m index df5009222..a55d7af88 100644 --- a/docs/HELP_tri2quad.m +++ b/docs/HELP_tri2quad.m @@ -60,23 +60,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_triMeshEquilateral.m b/docs/HELP_triMeshEquilateral.m index 4133705b9..29e617185 100644 --- a/docs/HELP_triMeshEquilateral.m +++ b/docs/HELP_triMeshEquilateral.m @@ -55,23 +55,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_triPolyDualRefine.m b/docs/HELP_triPolyDualRefine.m index 46245dc17..3b4730fea 100644 --- a/docs/HELP_triPolyDualRefine.m +++ b/docs/HELP_triPolyDualRefine.m @@ -105,23 +105,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_triSurf2Im.m b/docs/HELP_triSurf2Im.m index c688b423b..610c74c8d 100644 --- a/docs/HELP_triSurf2Im.m +++ b/docs/HELP_triSurf2Im.m @@ -340,23 +340,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_triSurfRemoveThreeConnect.m b/docs/HELP_triSurfRemoveThreeConnect.m index 4b70eaa86..41a4e9571 100644 --- a/docs/HELP_triSurfRemoveThreeConnect.m +++ b/docs/HELP_triSurfRemoveThreeConnect.m @@ -69,23 +69,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_triSurfSetDist.m b/docs/HELP_triSurfSetDist.m index c1a04c4e8..f90c07f76 100644 --- a/docs/HELP_triSurfSetDist.m +++ b/docs/HELP_triSurfSetDist.m @@ -182,23 +182,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_triplyPeriodicMinimal.m b/docs/HELP_triplyPeriodicMinimal.m index d64016b84..dd7f6d6c7 100644 --- a/docs/HELP_triplyPeriodicMinimal.m +++ b/docs/HELP_triplyPeriodicMinimal.m @@ -145,23 +145,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_uiContourSegment.m b/docs/HELP_uiContourSegment.m index d55d10f2f..27cad3e3c 100644 --- a/docs/HELP_uiContourSegment.m +++ b/docs/HELP_uiContourSegment.m @@ -67,23 +67,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_uiThreshErode.m b/docs/HELP_uiThreshErode.m index 17b8fb9d1..cc1007245 100644 --- a/docs/HELP_uiThreshErode.m +++ b/docs/HELP_uiThreshErode.m @@ -101,23 +101,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_vcw.m b/docs/HELP_vcw.m index 6c1d01c92..10116eb83 100644 --- a/docs/HELP_vcw.m +++ b/docs/HELP_vcw.m @@ -80,23 +80,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_vectorOrthogonalPair.m b/docs/HELP_vectorOrthogonalPair.m index 8c18d2080..745c7e2b7 100644 --- a/docs/HELP_vectorOrthogonalPair.m +++ b/docs/HELP_vectorOrthogonalPair.m @@ -50,23 +50,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_viewFourthOrderTensor.m b/docs/HELP_viewFourthOrderTensor.m index 3c79d77e6..2f483767b 100644 --- a/docs/HELP_viewFourthOrderTensor.m +++ b/docs/HELP_viewFourthOrderTensor.m @@ -56,23 +56,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/HELP_voronoiDiagramEven2D.m b/docs/HELP_voronoiDiagramEven2D.m index 18d99e117..ea10ff176 100644 --- a/docs/HELP_voronoiDiagramEven2D.m +++ b/docs/HELP_voronoiDiagramEven2D.m @@ -129,23 +129,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/docTools/addCodeFooter.m b/docs/docTools/addCodeFooter.m index 057176b9d..22b2738a9 100644 --- a/docs/docTools/addCodeFooter.m +++ b/docs/docTools/addCodeFooter.m @@ -14,7 +14,11 @@ licenseBoilerPlate=fullfile(toolboxPath,'licenseBoilerPlate.txt'); [T]=txtfile2cell(licenseBoilerPlate); -footerTargetText='%% <-- GIBBON footer text --> '; +footerTargetText='% _*GIBBON footer text*_ '; + +%% + +licenseLink='https://github.com/gibbonCode/GIBBON/blob/master/LICENSE'; %Add comment symbols for q=1:1:numel(T) @@ -22,7 +26,7 @@ end %Add target header -T=[{footerTargetText};T(1:end)]; +T=[{'%% '};{footerTargetText};{'% '};{['% License: <',licenseLink,'>']};T(1:end)]; %% @@ -45,23 +49,26 @@ end end -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/docTools/createDocumentationMarkdown.m b/docs/docTools/createDocumentationMarkdown.m index 400e6cfb7..0490ec8df 100644 --- a/docs/docTools/createDocumentationMarkdown.m +++ b/docs/docTools/createDocumentationMarkdown.m @@ -20,13 +20,13 @@ 'description: "Help and demo links"';... 'header-img: "img/home-bg.jpg"';... '---';... - ' ';... + ' ';... '__The documentation is a work in progress__. Not all functions have associated help files and not all functionality is covered by the demos. The help files currently cover about 50% of the functions and the demos mainly cover the use of FEBio. ';... - ' ';... + ' ';... '#### Table of content';... - '* [The MATLAB integrated help](#helpMatlab)';... + '* [The MATLAB integrated help](#helpMatlab)';... '* [Function help files](#help)';... - '* [Demo files](#demo)';... + '* [Demo files](#demo)';... ' ';... '## The MATLAB integrated help ';... 'Follow the installation instructions to integrate and access GIBBON documentation from within MATLAB. The name for all function help files (the files that generate the help/documentation when published with MATLAB) starts with `HELP_`, all demo files start with `DEMO_`. This way users may explore/open/edit these files by typing `open HELP_functionName` or `open DEMO_functionName` in the MATLAB command window';... @@ -37,13 +37,13 @@ T{end+1}=''; for q=1:1:NumberOfFiles [~,fileNameNow,~]=fileparts(files{q}); - if strfind(files{q},'HELP_') + if strfind(files{q},'HELP_') fileNamePNG=fullfile(htmlFolderName,[fileNameNow,'.png']); - if exist(fileNamePNG,'file') - T{end+1}=['[',fileNameNow,'](html/',files{q},') ','![',fileNameNow,'](html/',[fileNameNow,'.png'],'){:height="40px"} ']; + if exist(fileNamePNG,'file')==2 + T{end+1}=['[',fileNameNow,'](html/',files{q},') ','![',fileNameNow,'](html/',[fileNameNow,'.png'],'){:height="40px"} ']; else - T{end+1}=['[',fileNameNow,'](html/',files{q},') ']; - end + T{end+1}=['[',fileNameNow,'](html/',files{q},') ']; + end end end @@ -52,33 +52,37 @@ for q=1:1:NumberOfFiles [~,fileNameNow,~]=fileparts(files{q}); if strfind(files{q},'DEMO_') - if exist(fileNamePNG,'file') - T{end+1}=['[',fileNameNow,'](html/',files{q},') ','![',fileNameNow,'](html/',[fileNameNow,'.png'],'){:height="40px"} ']; + fileNamePNG=fullfile(htmlFolderName,[fileNameNow,'.png']); + if exist(fileNamePNG,'file')==2 + T{end+1}=['[',fileNameNow,'](html/',files{q},') ','![',fileNameNow,'](html/',[fileNameNow,'.png'],'){:height="40px"} ']; else - T{end+1}=['[',fileNameNow,'](html/',files{q},') ']; - end + T{end+1}=['[',fileNameNow,'](html/',files{q},') ']; + end end end cell2txtfile(markDownFileName,T,0); - -%% <-- GIBBON footer text --> -% -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. -% -% Copyright (C) 2017 Kevin Mattheus Moerman -% -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. -% -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. -% -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . + +%% +% _*GIBBON footer text*_ +% +% License: +% +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. +% +% Copyright (C) 2017 Kevin Mattheus Moerman +% +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. +% +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/docTools/helpPublishTemplate.m b/docs/docTools/helpPublishTemplate.m index 98596ab1b..2bbfbb2d5 100644 --- a/docs/docTools/helpPublishTemplate.m +++ b/docs/docTools/helpPublishTemplate.m @@ -27,23 +27,26 @@ % % _Kevin Mattheus Moerman_, -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ +% +% License: % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% Copyright (C) 2017 Kevin Mattheus Moerman +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/docTools/helpToDo.m b/docs/docTools/helpToDo.m index fab86e313..a2025537d 100644 --- a/docs/docTools/helpToDo.m +++ b/docs/docTools/helpToDo.m @@ -77,23 +77,26 @@ end -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/docTools/removeCodeFooter.m b/docs/docTools/removeCodeFooter.m index b4082df57..1bd05c37d 100644 --- a/docs/docTools/removeCodeFooter.m +++ b/docs/docTools/removeCodeFooter.m @@ -13,7 +13,7 @@ fileExtension='.m'; %Extension to remove boilerplate from -footerTargetStart='%% <-- GIBBON footer text --> '; %Target for removal +footerTargetStart='% _*GIBBON footer text*_ '; %Target for removal %N.B. Removal is up to end from the start so make sure the target is %appropriately set!!!!! @@ -30,32 +30,35 @@ for q_file=1:1:numFiles fileName=fullfile(pathName,files{q_file}); [T_now]=txtfile2cell(fileName); - targetStartIndex = find(strcmp(footerTargetStart,T_now)); + targetStartIndex = find(strcmp(footerTargetStart,T_now)); if ~isempty(targetStartIndex) targetStartIndex=targetStartIndex(end); %Keep last occurance - T_now=T_now(1:targetStartIndex-1); + T_now=T_now(1:targetStartIndex-1-1); %NB -1 is used to remove %% above target cell2txtfile(fileName,T_now,0); end end end -%% <-- GIBBON footer text --> +%% +% _*GIBBON footer text*_ % -% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for -% image segmentation, image-based modeling, meshing, and finite element -% analysis. +% License: % -% Copyright (C) 2017 Kevin Mattheus Moerman +% GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for +% image segmentation, image-based modeling, meshing, and finite element +% analysis. % -% This program is free software: you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. +% Copyright (C) 2017 Kevin Mattheus Moerman % -% This program is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -% GNU General Public License for more details. +% This program is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. % -% You should have received a copy of the GNU General Public License -% along with this program. If not, see . +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program. If not, see . diff --git a/docs/html/DEMO_AnyBody_force_analysys.html b/docs/html/DEMO_AnyBody_force_analysys.html index f507dd8a4..9cbc98f63 100644 --- a/docs/html/DEMO_AnyBody_force_analysys.html +++ b/docs/html/DEMO_AnyBody_force_analysys.html @@ -6,7 +6,7 @@ DEMO_AnyBody_force_analysis

DEMO_FEBio_XML_replacing_node_field

Below is a demonstration for: 1) Creating basic XML data for a .feb file 2) Replacing field in the created XML data by first removing and recreating the field.

Contents

clear; close all; clc;
+

Creating a feb structure with a geometry section and nodes

%Geometry section
+FEB_struct.Geometry.Nodes=rand(8,3); %A set of 8 nodes
+

Using XML coding to build the FEB file

%Initialize docNode object
+domNode = com.mathworks.xml.XMLUtils.createDocument('febio_spec');
+
+%Add geometry level to XML file
+domNode=addGeometryLevel_FEB(domNode,FEB_struct);
+
+%View the XML data
+% xmlView(domNode);
+XML_str = gxmlwrite(domNode);
+disp(XML_str);
+
Adding Geometry level
+----> Adding node field
+<?xml version="1.0" encoding="utf-8"?>
+<febio_spec>
+   <Geometry>
+      <Nodes>
+         <node id="1">1.5134056e-01, 6.2695538e-01, 4.7523516e-01</node>
+         <node id="2">4.9672068e-01, 1.8059137e-01, 8.0532049e-01</node>
+         <node id="3">8.0865225e-01, 5.7330655e-01, 5.3077814e-01</node>
+         <node id="4">6.3286879e-01, 1.6356616e-01, 2.2731033e-01</node>
+         <node id="5">6.8840150e-01, 9.0605174e-01, 7.0948498e-01</node>
+         <node id="6">6.3957022e-01, 7.7342785e-02, 1.4863255e-01</node>
+         <node id="7">7.2932173e-01, 3.3853465e-01, 6.5811618e-01</node>
+         <node id="8">8.5984571e-01, 5.8061755e-01, 6.3398255e-01</node>
+      </Nodes>
+   </Geometry>
+</febio_spec>
+

Replacing the node field

Remove the old node field

geometryNode = domNode.getElementsByTagName('Geometry').item(0); %Get parent node
+nodesNode = geometryNode.getElementsByTagName('Nodes').item(0); %Get child node
+geometryNode.removeChild(nodesNode); %Remove child node
+

Create some new nodes in the struct

FEB_struct.Geometry.Nodes=rand(12,3);
+

Add the new nodes to the XML description, see also febStruct2febFile

%Create new Nodes child
+geometryNode = domNode.getElementsByTagName('Geometry').item(0); %Get parent node
+parent_node = domNode.createElement('Nodes'); %Create node node
+parent_node = geometryNode.appendChild(parent_node);
+
+n_steps=size(FEB_struct.Geometry.Nodes,1);
+for q_n=1:1:n_steps
+    node_node = domNode.createElement('node'); %create node entry
+    node_node = parent_node.appendChild(node_node); %add node entry
+    attr = domNode.createAttribute('id'); %Create id attribute
+    attr.setNodeValue(sprintf('%u',q_n)); %Set id text
+    node_node.setAttributeNode(attr); %Add id attribute
+    node_node.appendChild(domNode.createTextNode(sprintf('%6.7e, %6.7e, %6.7e',FEB_struct.Geometry.Nodes(q_n,:)))); %append data text child
+end
+
%View the new XML data
+% xmlView(domNode);
+XML_str = gxmlwrite(domNode);
+disp(XML_str);
+
<?xml version="1.0" encoding="utf-8"?>
+<febio_spec>
+   <Geometry>
+      <Nodes>
+         <node id="1">2.2930625e-01, 8.6233921e-01, 8.4989382e-01</node>
+         <node id="2">1.8222802e-01, 8.9640490e-01, 9.9704144e-01</node>
+         <node id="3">1.6635251e-01, 1.8901056e-01, 4.3926126e-03</node>
+         <node id="4">1.4960709e-01, 6.6071956e-01, 5.4260746e-01</node>
+         <node id="5">2.0274740e-01, 9.4123094e-01, 8.6134818e-01</node>
+         <node id="6">9.5495890e-01, 9.7570713e-01, 9.0913902e-01</node>
+         <node id="7">1.5908339e-02, 1.0793525e-01, 8.4535056e-01</node>
+         <node id="8">9.5751435e-01, 1.7889923e-01, 8.7887288e-01</node>
+         <node id="9">2.5692285e-02, 7.4655143e-01, 7.4618224e-01</node>
+         <node id="10">9.7111066e-01, 4.9468523e-02, 1.1748938e-01</node>
+         <node id="11">2.9759568e-01, 7.1284882e-02, 5.0902226e-01</node>
+         <node id="12">5.2507308e-01, 4.8912552e-01, 1.6883176e-01</node>
+      </Nodes>
+   </Geometry>
+</febio_spec>
+

Writing the XML data to a .feb file

Exporting the XML data to a .feb file can be done using write_XML_no_extra_lines

GIBBON www.gibboncode.org

Kevin Mattheus Moerman, gibbon.toolbox@gmail.com

GIBBON footer text

License: https://github.com/gibbonCode/GIBBON/blob/master/LICENSE

GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for image segmentation, image-based modeling, meshing, and finite element analysis.

Copyright (C) 2017 Kevin Mattheus Moerman

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

\ No newline at end of file diff --git a/docs/html/DEMO_FEBio_active_contraction_01.html b/docs/html/DEMO_FEBio_active_contraction_01.html index 826a5d7c2..696da2fe2 100644 --- a/docs/html/DEMO_FEBio_active_contraction_01.html +++ b/docs/html/DEMO_FEBio_active_contraction_01.html @@ -6,7 +6,7 @@ DEMO_FEBio_active_contraction_01

DEMO_geodesic_remeshing

Below is a demonstration for:

  • The use of remeshTriSurfDistMap (and subTri and smoothening) for surface remeshing

Contents

clear; close all; clc;
-
%Plot settings
-fontSize=15;
-markerSize=15;
-lineWidth=2;
-

Control parameters

exampleType=1; %Use to switch between different examples
-
-switch exampleType
-    case 1 %A fast (~10 seconds) resampling to a coarser geodesic output mesh, without before/after refinement
-        pointSpacing=1; %Desired point spacing
-        nRefineOriginal=0; %Set n>0 to refine the input mesh through sub-triangulation before resampling
-        nRefineOutput=0; %Number of output refinement steps
-    case 2 %Same as 1 but with resampling/smoothening of the output surface (is mast and may be sufficient)
-        %A fast resampling to coarse geodesic mesh, with refinement of output
-        pointSpacing=1; %Desired point spacing
-        nRefineOriginal=0; %Set n>0 to refine the input mesh through sub-triangulation before resampling
-        nRefineOutput=2; %Number of output refinement steps
-    case 3 %Same as 2 but with more sub-triangulation
-        %A fast resampling to coarse geodesic mesh, with refinement of output
-        pointSpacing=1; %Desired point spacing
-        nRefineOriginal=0; %Set n>0 to refine the input mesh through sub-triangulation before resampling
-        nRefineOutput=3; %Number of output refinement steps
-    case 4 %A reduced point spacing requires a refined input surface, slower example (~5 minutes)
-        pointSpacing=0.5; %Desired point spacing
-        nRefineOriginal=1; %Set n>0 to refine the input mesh through sub-triangulation before resampling
-        nRefineOutput=0; %Number of output refinement steps
-end
-
-mergeNodes=0; %Use to force sharing of nodes with nearly equal coordinates across faces
-nSmoothIterations=15; %Number of smoothening steps per refinement step (only used for output sub-triangulation)
-

Creating example surface data

%Boundary 1
-ns=150;
-t=linspace(0,2*pi,ns);
-t=t(1:end-1);
-r=6+2.*sin(5*t);
-[x,y] = pol2cart(t,r);
-z=1/10*x.^2;
-V1=[x(:) y(:) z(:)];
-
-%Create Euler angles to set directions
-E=[0.25*pi -0.25*pi 0];
-[R,~]=euler2DCM(E); %The true directions for X, Y and Z axis
-
-V1=(R*V1')'; %Rotate polygon
-
-regionCell={V1}; %A region between V1 and V2 (V2 forms a hole inside V1)
-
-% Meshing the region (See also |regionTriMesh2D|)
-[F,V]=regionTriMesh3D(regionCell,0.2,1,'linear');
-

Merge nodes if required (e.g. in case of STL import)

In some cases nodes are not shared for adjacent triangles (e.g. STL imported geometry). In this case merging is required.

if mergeNodes==1
-    decPlaceRound=6; %Decimal place for rounding
-    [~,indUni,indF]=unique(pround(V,decPlaceRound),'rows'); %Get indices for unique point set
-    V=V(indUni,:); %Keep only unique
-    F=indF(F); %Fix indices in faces matrix
-end
-

Refine input mesh before resampling

Refining the input mesh is required if the intended mesh density exceeds that of the desired output mesh density. For each iteration the triangle edges are split in half while the triangle faces are split into 4. The mesh becomes very dense, very quickly so do not over do this. Subtri works through triangle splitting and is linear in the sense that it leaves input points unaltered but adds intermediate points on all input edges.

if nRefineOriginal>0
-    for q=1:1:nRefineOriginal
-        [F,V]=subtri(F,V,1); %Refine input mesh through sub-triangulation
-    end
-end
-

Estimate number of points required given point spacing

numPointsInput=size(V,1); %Number of points in the original data
-[A]=patch_area(F,V); %Areas of current faces
-totalArea=sum(A(:)); %Total area
-l=sqrt(totalArea); %Width or length of square with same size
-np=round((l./pointSpacing).^2); %Point spacing for mesh in virtual square
-

Visualize input mesh

cFigure; hold on;
-title('The original mesh');
-patch('Faces',F,'Vertices',V,'FaceColor','g','EdgeColor','k');
-view(3); axis equal; axis tight; grid on; box on; view(152,22);
-set(gca,'FontSize',fontSize);
-drawnow;
-% [hp]=patchNormPlot(F,V);
-

Get indices of boundary points and get boundary curve

%First get triangulation class representation
-TR=triangulation(F,V);
-[indEdges] = freeBoundary(TR); %The list of free edges
-
-%Reorder edge list to obtain indices describing continuous curve (assuming
-%a single boundary, need to group first and do reordering on each group if
-%multiple boundaries exist)
-[indList]=edgeListToCurve(indEdges);
-indList=indList(1:end-1);
-

Get indices of "must points" close to evenly spaced on boundary curve

D=pathLength(V(indList,:)); %The cummulative curve length
-boundaryLength=max(D); %The total curve length
-
-nb=round(boundaryLength./pointSpacing); %Number of points to keep on boundary
-[Vb] = evenlySampleCurve(V(indList,:),nb,'pchip',1);
-
-[~,minIND]=minDist(Vb,V(indList,:));
-indListSelect=indList(minIND); %List of points to keep
-

Visualize boundary points to keep on input mesh

cFigure; hold on;
-title('Input mesh and boundary points to keep')
-patch('Faces',F,'Vertices',V,'FaceColor','g','EdgeColor','k');
-
-plotV(V(indListSelect,:),'r.-','MarkerSize',25,'LineWidth',lineWidth);
-plotV(Vb,'b.-','MarkerSize',markerSize,'LineWidth',lineWidth);
-
-view(3); axis equal; axis tight; grid on; box on; view(152,22);
-set(gca,'FontSize',fontSize);
-drawnow;
-

Resample input surface geodesically

Geodesic re-sampling works by taking a point on the surface and calculating the distance to all other points by marching/propagating across the mesh. The point on the mesh furthest away from the input point (or points) is then added to the list. Then new distances are computed and the furthest point is again added to this list. Therefore using this iterative process equally spaced point sets can be obtained. The mesh works by sampling the input mesh to a coarser homogeneous mesh. If the input mesh is too coarse refine it first using subTri (subTri does not alter input geometry). This method does not alter the geometry but simply samples a subset of the input points. So the output point set (or seeds) are all points part of the original input geometry. The region closest to one of the seed points can be viewed as a Voronoi cell. The dual of the Voronoi tesselation is a Delaunay triangulation which gives the output mesh connectivity. The distance marching can be very slow. One tip is to do a coarse resampling and then to sub-triangulate the output.

%Use distance marching method
-[Fn,Vn,S]=remeshTriSurfDistMap(F,V,numel(indListSelect)+np,indListSelect); %distance based marching
-
Error using perform_fast_marching_mesh (line 66)
-You have to run compiler_mex before.
-
-Error in patchMarchDistMap (line 4)
-    [D_map,~,seedIndex] = perform_fast_marching_mesh(V',F',indStart,options); % See: www.numerical-tours.com    
-
-Error in patchMarchDistMapPointSeed (line 10)
-    [D_map,~] = patchMarchDistMap(F,V,indStart,options);
-
-Error in remeshTriSurfDistMap (line 51)
-[indSeed,~,seedIndex]=patchMarchDistMapPointSeed(F,V,startInds,numSeeds,W);
-
-Error in DEMO_geodesic_remeshing (line 164)
-[Fn,Vn,S]=remeshTriSurfDistMap(F,V,numel(indListSelect)+np,indListSelect); %distance based marching
-
cFigure; hold on;
-title('Original mesh with seed points and "Voronoi cells"');
-% [S]=vertexToFaceMeasure(F,S);
-patch('Faces',F,'Vertices',V,'FaceColor','flat','CData',S,'EdgeColor','none');
-plotV(Vn,'k.','MarkerSize',markerSize);
-
-view(3); axis equal; axis tight; grid on; box on; view(152,22);
-set(gca,'FontSize',fontSize);
-camlight headlight;
-cMap=hsv(max(S));
-cMap=cMap(randperm(size(cMap,1)),:);
-colormap(cMap);
-drawnow;
-

Refine output if desired using sub-triangulation

if nRefineOutput>0
-    numOutIni=size(Vn,1);
-    %Refine and smoothen
-    for q=1:1:nRefineOutput
-        %Refine
-        [Fn,Vn]=subtri(Fn,Vn,1); %Refine through splitting
-
-        %Smoothen refined mesh
-
-        %First get triangulation class representation
-        TR_n=triangulation(Fn,Vn);
-        [indEdges_n] = freeBoundary(TR_n); %The list of free edges
-        indKeep=1:numOutIni; %Indices for points that should not be moved by smoothening
-        indKeep=unique([indKeep(:);indEdges_n(:)]); %Add boundary points to keep list
-
-        %Smoothening parameters for smoothening after refinement
-        cPar.Method='HC';
-        cPar.n=nSmoothIterations;
-        cPar.RigidConstraints=indKeep; %Points to hold on to while smoothening
-
-        %Smooth while holding on to desired points (here original and boundary)
-        [Vn]=patchSmooth(Fn,Vn,[],cPar);
-
-    end
-else
-    indKeep=1:size(Vn,1);
-end
-

Get indices of new boundary points and get boundary curve

%First get triangulation class representation
-TR_n=triangulation(Fn,Vn);
-[indEdges_n] = freeBoundary(TR_n); %The list of free edges
-
-%Reorder edge list to obtain indices describing continuous curve (assuming
-%a single boundary, need to group first and do reordering on each group if
-%multiple boundaries exist)
-[indList_n]=edgeListToCurve(indEdges_n);
-indList_n=indList_n(1:end-1);
-

Visualize final result

cFigure; hold on;
-title('Resampled mesh');
-patch('Faces',Fn,'Vertices',Vn,'FaceColor','b','EdgeColor','k');
-plotV(Vn(indList_n,:),'r.-','MarkerSize',markerSize,'LineWidth',lineWidth);
-
-plotV(Vn(indKeep,:),'y.','MarkerSize',markerSize); %Boundary point of member of original surface
-view(3); axis equal; axis tight; grid on; box on; view(152,22);
-set(gca,'FontSize',fontSize);
-camlight headlight;
-drawnow;
-

GIBBON www.gibboncode.org

Kevin Mattheus Moerman, gibbon.toolbox@gmail.com

\ No newline at end of file diff --git a/docs/html/DEMO_geodesic_remeshing.png b/docs/html/DEMO_geodesic_remeshing.png index e013bdc52..87d286b74 100644 Binary files a/docs/html/DEMO_geodesic_remeshing.png and b/docs/html/DEMO_geodesic_remeshing.png differ diff --git a/docs/html/DEMO_geodesic_remeshing_01.png b/docs/html/DEMO_geodesic_remeshing_01.png index 187de0e6a..0084eefb4 100644 Binary files a/docs/html/DEMO_geodesic_remeshing_01.png and b/docs/html/DEMO_geodesic_remeshing_01.png differ diff --git a/docs/html/DEMO_geodesic_remeshing_02.png b/docs/html/DEMO_geodesic_remeshing_02.png index 70a6b8e1a..1240172e9 100644 Binary files a/docs/html/DEMO_geodesic_remeshing_02.png and b/docs/html/DEMO_geodesic_remeshing_02.png differ diff --git a/docs/html/DEMO_import_FEB_export_INP.html b/docs/html/DEMO_import_FEB_export_INP.html index e9703f923..acd5c0b6b 100644 --- a/docs/html/DEMO_import_FEB_export_INP.html +++ b/docs/html/DEMO_import_FEB_export_INP.html @@ -6,7 +6,7 @@ DEMO_import_FEB_export_INP

efw

Below is a demonstration of the features of the efw function

Contents

Syntax

efw(hf);

Description

The efw function, the export figure widget, adds a push button to a figure toolbar to link with the export_fig function. Press the button to start exporting a figure. Users can specify file names, formats, resolution and also additional export_fig options.

The Export Figure Widget requires the external function export_fig created by Oliver Woodford and Yair Altman. It can be obtained from the Mathworks Central File Exchange:

http://www.mathworks.com/matlabcentral/fileexchange/23629-export-fig

Examples

Using the preloaded Export Figure Widget (efw) in cFigure

A cFigure window has the Export Figure Widget loaded by default. To use efw click on the icon in the toolbar.

Pressing the efw button will open a basic inputdlg allowing users to specify all the usual export_fig options. Hints are given in brackets behind the input labels. The default entries are altered according to the previous usage within the current figure.

Use with figure

The default MATLAB figure does not contain the Export Figure Widget. To load it here the user must enter efw; either before or after axes are created. e.g.:

figure; surf(peaks(25)); axis equal; axis tight; efw;

which is equivalent to:

figure; efw; surf(peaks(25)); axis equal; axis tight;

Tip

You can create your own figure function that simply contains figure; efw; to create a standard MATLAB figure containing the Export Figure Widget.

GIBBON www.gibboncode.org

Kevin Mattheus Moerman, gibbon.toolbox@gmail.com

Below is a demonstration of the features of the efw function

Contents

Syntax

efw(hf);

Description

The efw function, the export figure widget, adds a push button to a figure toolbar to link with the export_fig function. Press the button to start exporting a figure. Users can specify file names, formats, resolution and also additional export_fig options.

The Export Figure Widget requires the external function export_fig created by Oliver Woodford and Yair Altman. It can be obtained from the Mathworks Central File Exchange:

http://www.mathworks.com/matlabcentral/fileexchange/23629-export-fig

Examples

Using the preloaded Export Figure Widget (efw) in cFigure

A cFigure window has the Export Figure Widget loaded by default. To use efw click on the icon in the toolbar.

Pressing the efw button will open a basic inputdlg allowing users to specify all the usual export_fig options. Hints are given in brackets behind the input labels. The default entries are altered according to the previous usage within the current figure.

Use with figure

The default MATLAB figure does not contain the Export Figure Widget. To load it here the user must enter efw; either before or after axes are created. e.g.:

figure; surf(peaks(25)); axis equal; axis tight; efw;

which is equivalent to:

figure; efw; surf(peaks(25)); axis equal; axis tight;

Tip

You can create your own figure function that simply contains figure; efw; to create a standard MATLAB figure containing the Export Figure Widget.

GIBBON www.gibboncode.org

Kevin Mattheus Moerman, gibbon.toolbox@gmail.com

GIBBON footer text

License: https://github.com/gibbonCode/GIBBON/blob/master/LICENSE

GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for image segmentation, image-based modeling, meshing, and finite element analysis.

Copyright (C) 2017 Kevin Mattheus Moerman

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

\ No newline at end of file diff --git a/docs/html/HELP_element2HexLattice.html b/docs/html/HELP_element2HexLattice.html index a547f4872..6e1f02ff3 100644 --- a/docs/html/HELP_element2HexLattice.html +++ b/docs/html/HELP_element2HexLattice.html @@ -6,7 +6,7 @@ element2HexLattice