Code cleanup: line wraps and file names in doxy comments
This commit is contained in:
@@ -1186,7 +1186,8 @@ MovieTrackingPlaneTrack *BKE_tracking_plane_track_add(MovieTracking *tracking, L
|
||||
plane_track->image_opacity = 1.0f;
|
||||
|
||||
/* Use selected tracks from given list as a plane. */
|
||||
plane_track->point_tracks = MEM_mallocN(sizeof(MovieTrackingTrack *) * num_selected_tracks, "new plane tracks array");
|
||||
plane_track->point_tracks =
|
||||
MEM_mallocN(sizeof(MovieTrackingTrack *) * num_selected_tracks, "new plane tracks array");
|
||||
for (track = tracks->first, track_index = 0; track; track = track->next) {
|
||||
if (TRACK_SELECTED(track)) {
|
||||
plane_track->point_tracks[track_index] = track;
|
||||
|
||||
@@ -230,7 +230,9 @@ BLI_INLINE void float_corners_to_double(/*const*/ float corners[4][2], double do
|
||||
copy_v2db_v2fl(double_corners[3], corners[3]);
|
||||
}
|
||||
|
||||
void BKE_tracking_homography_between_two_quads(/*const*/ float reference_corners[4][2], /*const*/ float corners[4][2], float H[3][3])
|
||||
void BKE_tracking_homography_between_two_quads(/*const*/ float reference_corners[4][2],
|
||||
/*const*/ float corners[4][2],
|
||||
float H[3][3])
|
||||
{
|
||||
Vec2 x1[4], x2[4];
|
||||
double H_double[3][3];
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
* ***** END GPL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
/** \file blender/blenkernel/intern/tracking_tracker.c
|
||||
/** \file blender/blenkernel/intern/tracking_region_tracker.c
|
||||
* \ingroup bke
|
||||
*
|
||||
* This file contains implementation of blender-side region tracker
|
||||
|
||||
@@ -169,7 +169,8 @@ static float stabilization_calculate_autoscale_factor(MovieTracking *tracking, i
|
||||
|
||||
stabilization_median_point_get(tracking, cfra, median);
|
||||
|
||||
stabilization_calculate_data(tracking, cfra, width, height, firstmedian, median, translation, &tmp_scale, &angle);
|
||||
stabilization_calculate_data(tracking, cfra, width, height, firstmedian, median, translation,
|
||||
&tmp_scale, &angle);
|
||||
|
||||
BKE_tracking_stabilization_data_to_mat4(width, height, aspect, translation, 1.0f, angle, mat);
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
* ***** END GPL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
/** \file blender/blenkernel/tracking_private.c
|
||||
/** \file blender/blenkernel/tracking_util.c
|
||||
* \ingroup bke
|
||||
*
|
||||
* This file contains implementation of function which are used
|
||||
|
||||
Reference in New Issue
Block a user