MovieTrackingMarker(bpy_struct)#
base class — bpy_struct
- class bpy.types.MovieTrackingMarker(bpy_struct)#
Match-moving marker data for tracking
- co#
Marker position at frame in normalized coordinates
- Type:
mathutils.Vector
of 2 items in [-inf, inf], default (0.0, 0.0)
- frame#
Frame number marker is keyframed on
- Type:
int in [-inf, inf], default 0
- is_keyed#
Whether the position of the marker is keyframed or tracked
- Type:
boolean, default False
- mute#
Is marker muted for current frame
- Type:
boolean, default False
- pattern_bound_box#
Pattern area bounding box in normalized coordinates
- Type:
float multi-dimensional array of 2 * 2 items in [-inf, inf], default ((0.0, 0.0), (0.0, 0.0)), (readonly)
- pattern_corners#
Array of coordinates which represents pattern’s corners in normalized coordinates relative to marker position
- Type:
float multi-dimensional array of 4 * 2 items in [-inf, inf], default ((0.0, 0.0), (0.0, 0.0), (0.0, 0.0), (0.0, 0.0))
- search_max#
Right-bottom corner of search area in normalized coordinates relative to marker position
- Type:
mathutils.Vector
of 2 items in [-inf, inf], default (0.0, 0.0)
- search_min#
Left-bottom corner of search area in normalized coordinates relative to marker position
- Type:
mathutils.Vector
of 2 items in [-inf, inf], default (0.0, 0.0)
- classmethod bl_rna_get_subclass(id, default=None)#
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
bpy.types.Struct
subclass
- classmethod bl_rna_get_subclass_py(id, default=None)#
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type