Changeset View
Changeset View
Standalone View
Standalone View
space_clip_editor_autotracker.py
| Context not available. | |||||
| ''' my_string : the text we want to print | ''' my_string : the text we want to print | ||||
| pos_x, pos_y : coordinates in integer values | pos_x, pos_y : coordinates in integer values | ||||
| size : font height. | size : font height. | ||||
| colour : used for definining the colour''' | colour : used for defining the colour''' | ||||
| dpi, font_id = 72, 0 # dirty fast assignment | dpi, font_id = 72, 0 # dirty fast assignment | ||||
| bgl.glColor4f(*colour) | bgl.glColor4f(*colour) | ||||
| blf.position(font_id, x, y, 0) | blf.position(font_id, x, y, 0) | ||||
| Context not available. | |||||
| jump_cut = FloatProperty( | jump_cut = FloatProperty( | ||||
| name="Jump Cut", | name="Jump Cut", | ||||
| description="How much distance a marker can travel before it is considered " | description="How much distance a marker can travel before it is considered " | ||||
| "to be a bad track and cut.\nA new track wil be added " | "to be a bad track and cut.\nA new track will be added " | ||||
| "(factor relative to mean motion)", | "(factor relative to mean motion)", | ||||
| default=5.0, | default=5.0, | ||||
| min=0.0, | min=0.0, | ||||
| Context not available. | |||||