[Bf-blender-cvs] [152754a477d] master: Tracking: Cleanup, typos and spelling in DNA comments

Sergey Sharybin noreply at git.blender.org
Mon Nov 23 15:26:14 CET 2020


Commit: 152754a477d1f8846f1a4b75f47b98c3f1af431c
Author: Sergey Sharybin
Date:   Mon Nov 23 15:25:55 2020 +0100
Branches: master
https://developer.blender.org/rB152754a477d1f8846f1a4b75f47b98c3f1af431c

Tracking: Cleanup, typos and spelling in DNA comments

===================================================================

M	source/blender/makesdna/DNA_tracking_types.h

===================================================================

diff --git a/source/blender/makesdna/DNA_tracking_types.h b/source/blender/makesdna/DNA_tracking_types.h
index 1a5b2360732..8ec9a260e18 100644
--- a/source/blender/makesdna/DNA_tracking_types.h
+++ b/source/blender/makesdna/DNA_tracking_types.h
@@ -171,7 +171,7 @@ typedef struct MovieTrackingTrack {
   /* tracking parameters */
   /** Model of the motion for this track. */
   short motion_model;
-  /** Flags for the tracking algorithm (use brute, use esm, use pyramid, etc. */
+  /** Flags for the tracking algorithm (use brute, use ESM, use pyramid, etc. */
   int algorithm_flag;
   /** Minimal correlation which is still treated as successful tracking. */
   float minimum_correlation;
@@ -223,7 +223,7 @@ typedef struct MovieTrackingPlaneTrack {
   char name[64];
 
   /**
-   * Array of point tracks used to define this pla.ne.
+   * Array of point tracks used to define this plane.
    * Each element is a pointer to MovieTrackingTrack.
    */
   MovieTrackingTrack **point_tracks;
@@ -255,7 +255,7 @@ typedef struct MovieTrackingSettings {
   /* ** default tracker settings */
   /** Model of the motion for this track. */
   short default_motion_model;
-  /** Flags for the tracking algorithm (use brute, use esm, use pyramid, etc. */
+  /** Flags for the tracking algorithm (use brute, use ESM, use pyramid, etc. */
   short default_algorithm_flag;
   /** Minimal correlation which is still treated as successful tracking. */
   float default_minimum_correlation;
@@ -365,7 +365,7 @@ typedef struct MovieTrackingObject {
   /** Name of tracking object, MAX_NAME. */
   char name[64];
   int flag;
-  /** Scale of object solution in amera space. */
+  /** Scale of object solution in camera space. */
   float scale;
 
   /** List of tracks use to tracking this object. */
@@ -562,7 +562,7 @@ enum {
   REFINE_TANGENTIAL_DISTORTION = (1 << 3),
 };
 
-/* MovieTrackingStrabilization->flag */
+/* MovieTrackingStabilization->flag */
 enum {
   TRACKING_2D_STABILIZATION = (1 << 0),
   TRACKING_AUTOSCALE = (1 << 1),
@@ -571,7 +571,7 @@ enum {
   TRACKING_SHOW_STAB_TRACKS = (1 << 5),
 };
 
-/* MovieTrackingStrabilization->filter */
+/* MovieTrackingStabilization->filter */
 enum {
   TRACKING_FILTER_NEAREST = 0,
   TRACKING_FILTER_BILINEAR = 1,



More information about the Bf-blender-cvs mailing list