[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [58688] branches/soc-2013-motion_track/ extern/libmv/libmv-capi.cc: Fix alignment indentation

Joseph Mansfield sftrabbit at gmail.com
Sun Jul 28 11:36:21 CEST 2013


Revision: 58688
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=58688
Author:   sftrabbit
Date:     2013-07-28 09:36:21 +0000 (Sun, 28 Jul 2013)
Log Message:
-----------
Fix alignment indentation

Although file is tab indented, split lines should be aligned with spaces.

Modified Paths:
--------------
    branches/soc-2013-motion_track/extern/libmv/libmv-capi.cc

Modified: branches/soc-2013-motion_track/extern/libmv/libmv-capi.cc
===================================================================
--- branches/soc-2013-motion_track/extern/libmv/libmv-capi.cc	2013-07-28 09:05:27 UTC (rev 58687)
+++ branches/soc-2013-motion_track/extern/libmv/libmv-capi.cc	2013-07-28 09:36:21 UTC (rev 58688)
@@ -624,7 +624,7 @@
 	else {
 		/* Keyframe selection */
 		int &keyframe1 = libmv_reconstruction_options->keyframe1,
-				&keyframe2 = libmv_reconstruction_options->keyframe2;
+		    &keyframe2 = libmv_reconstruction_options->keyframe2;
 
 		if (libmv_reconstruction_options->select_keyframes) {
 			LG << "Using automatic keyframe selection";
@@ -632,18 +632,18 @@
 			update_callback.invoke(0, "Selecting keyframes");
 
 			selectTwoKeyframesBasedOnGRICAndVariance(tracks,
-																							 normalized_tracks,
-																							 camera_intrinsics,
-																							 reconstruction_options,
-																							 keyframe1,
-																							 keyframe2);
+			                                         normalized_tracks,
+			                                         camera_intrinsics,
+			                                         reconstruction_options,
+			                                         keyframe1,
+			                                         keyframe2);
 		}
 
 		LG << "frames to init from: " << keyframe1 << " " << keyframe2;
 
 		/* Reconstruct for two frames */
 		libmv::vector<libmv::Marker> keyframe_markers =
-			normalized_tracks.MarkersForTracksInBothImages(keyframe1, keyframe2);
+				normalized_tracks.MarkersForTracksInBothImages(keyframe1, keyframe2);
 
 		LG << "number of markers for init: " << keyframe_markers.size();
 




More information about the Bf-blender-cvs mailing list