Index: /trunk/src/geometry_calib.m
===================================================================
--- /trunk/src/geometry_calib.m	(revision 890)
+++ /trunk/src/geometry_calib.m	(revision 891)
@@ -52,5 +52,5 @@
 % Edit the above text to modify the response to help geometry_calib
 
-% Last Modified by GUIDE v2.5 07-Dec-2014 15:50:44
+% Last Modified by GUIDE v2.5 16-Apr-2015 17:29:02
 
 % Begin initialization code - DO NOT edit
@@ -1018,4 +1018,16 @@
 
 % --------------------------------------------------------------------
+function MenuFlip_x_Callback(hObject, eventdata, handles)
+Coord=get(handles.ListCoord,'Data');
+Coord(:,1)=-Coord(:,1);
+set(handles.ListCoord,'Data',Coord)
+
+% --------------------------------------------------------------------
+function MenuFlip_y_Callback(hObject, eventdata, handles)
+Coord=get(handles.ListCoord,'Data');
+Coord(:,2)=-Coord(:,2);
+set(handles.ListCoord,'Data',Coord)
+
+% --------------------------------------------------------------------
 function MenuImportPoints_Callback(hObject, eventdata, handles)
 fileinput=browse_xml(hObject, eventdata, handles);
@@ -1395,2 +1407,5 @@
     end
 end
+
+
+
