MovieTrackingPlaneMarkers(bpy_struct)

base class — bpy_struct

class bpy.types.MovieTrackingPlaneMarkers(bpy_struct)

Collection of markers for movie tracking plane track

find_frame(frame, exact=True)

Get plane marker for specified frame

Parameters
  • frame (int in [0, 1048574]) – Frame, Frame number to find marker for

  • exact (boolean, (optional)) – Exact, Get plane marker at exact frame number rather than get estimated marker

Returns

Plane marker for specified frame

Return type

MovieTrackingPlaneMarker

insert_frame(frame)

Insert a new plane marker at the specified frame

Parameters

frame (int in [0, 1048574]) – Frame, Frame number to insert marker to

Returns

Newly created plane marker

Return type

MovieTrackingPlaneMarker

delete_frame(frame)

Delete plane marker at specified frame

Parameters

frame (int in [0, 1048574]) – Frame, Frame number to delete plane marker from

classmethod bl_rna_get_subclass(id, default=None)
Parameters

id (string) – 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 (string) – The RNA type identifier.

Returns

The class or default when not found.

Return type

type

Inherited Properties

Inherited Functions

References