changeset 194:6db427e07edd

setFontSize: Added docstring.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 26 May 2016 12:51:11 +0200
parents cb65c81d6c87
children 305d8bb366ce
files setFontSize.m
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
diff -r cb65c81d6c87 -r 6db427e07edd setFontSize.m
--- a/setFontSize.m	Tue May 24 08:42:27 2016 +0200
+++ b/setFontSize.m	Thu May 26 12:51:11 2016 +0200
@@ -1,3 +1,6 @@
+% setFontSize(fig, pts)
+% Sets all fontsizes within a figure to size pts
+% The default value for pts is 16.
 function setFontSize(fig, pts)
     default_arg('pts', 16);
     set(findall(fig,'-property','FontSize'),'FontSize',pts);