fake-bpy-module 20240620__py3-none-any.whl → 20240621__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/space_userpref/__init__.pyi +225 -0
- bpy/ops/action/__init__.pyi +50 -50
- bpy/ops/anim/__init__.pyi +94 -94
- bpy/ops/armature/__init__.pyi +54 -54
- bpy/ops/asset/__init__.pyi +50 -50
- bpy/ops/brush/__init__.pyi +10 -10
- bpy/ops/buttons/__init__.pyi +88 -88
- bpy/ops/cachefile/__init__.pyi +88 -88
- bpy/ops/camera/__init__.pyi +14 -14
- bpy/ops/clip/__init__.pyi +175 -174
- bpy/ops/cloth/__init__.pyi +6 -6
- bpy/ops/collection/__init__.pyi +8 -8
- bpy/ops/console/__init__.pyi +26 -26
- bpy/ops/constraint/__init__.pyi +42 -42
- bpy/ops/curve/__init__.pyi +167 -122
- bpy/ops/curves/__init__.pyi +75 -58
- bpy/ops/cycles/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +50 -50
- bpy/ops/export_anim/__init__.pyi +14 -14
- bpy/ops/export_scene/__init__.pyi +250 -250
- bpy/ops/extensions/__init__.pyi +73 -73
- bpy/ops/file/__init__.pyi +94 -94
- bpy/ops/fluid/__init__.pyi +6 -6
- bpy/ops/font/__init__.pyi +100 -100
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +10 -10
- bpy/ops/gpencil/__init__.pyi +411 -410
- bpy/ops/graph/__init__.pyi +194 -194
- bpy/ops/grease_pencil/__init__.pyi +100 -100
- bpy/ops/image/__init__.pyi +399 -390
- bpy/ops/import_anim/__init__.pyi +16 -16
- bpy/ops/import_curve/__init__.pyi +4 -4
- bpy/ops/import_scene/__init__.pyi +56 -56
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +34 -34
- bpy/ops/mask/__init__.pyi +63 -62
- bpy/ops/mball/__init__.pyi +12 -12
- bpy/ops/mesh/__init__.pyi +893 -790
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1013 -840
- bpy/ops/outliner/__init__.pyi +44 -44
- bpy/ops/paint/__init__.pyi +169 -168
- bpy/ops/paintcurve/__init__.pyi +12 -12
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +34 -34
- bpy/ops/pose/__init__.pyi +60 -60
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +150 -150
- bpy/ops/ptcache/__init__.pyi +4 -4
- bpy/ops/render/__init__.pyi +56 -56
- bpy/ops/rigidbody/__init__.pyi +8 -8
- bpy/ops/scene/__init__.pyi +20 -20
- bpy/ops/screen/__init__.pyi +128 -128
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +207 -202
- bpy/ops/sculpt_curves/__init__.pyi +12 -12
- bpy/ops/sequencer/__init__.pyi +465 -464
- bpy/ops/sound/__init__.pyi +154 -154
- bpy/ops/spreadsheet/__init__.pyi +6 -6
- bpy/ops/surface/__init__.pyi +109 -60
- bpy/ops/text/__init__.pyi +110 -110
- bpy/ops/text_editor/__init__.pyi +6 -6
- bpy/ops/transform/__init__.pyi +628 -566
- bpy/ops/ui/__init__.pyi +25 -24
- bpy/ops/uilist/__init__.pyi +12 -12
- bpy/ops/uv/__init__.pyi +235 -234
- bpy/ops/view2d/__init__.pyi +72 -72
- bpy/ops/view3d/__init__.pyi +144 -144
- bpy/ops/wm/__init__.pyi +1813 -1806
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +1611 -1802
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +77 -77
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
bpy/ops/clip/__init__.pyi
CHANGED
|
@@ -2,6 +2,7 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import bpy.ops.transform
|
|
4
4
|
import bpy.types
|
|
5
|
+
import mathutils
|
|
5
6
|
|
|
6
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
7
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -11,7 +12,7 @@ def add_marker(
|
|
|
11
12
|
execution_context: int | str | None = None,
|
|
12
13
|
undo: bool | None = None,
|
|
13
14
|
*,
|
|
14
|
-
location:
|
|
15
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
15
16
|
):
|
|
16
17
|
"""Place new marker at specified location
|
|
17
18
|
|
|
@@ -19,7 +20,7 @@ def add_marker(
|
|
|
19
20
|
:type execution_context: int | str | None
|
|
20
21
|
:type undo: bool | None
|
|
21
22
|
:param location: Location, Location of marker on frame
|
|
22
|
-
:type location:
|
|
23
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
23
24
|
"""
|
|
24
25
|
|
|
25
26
|
...
|
|
@@ -85,7 +86,7 @@ def apply_solution_scale(
|
|
|
85
86
|
execution_context: int | str | None = None,
|
|
86
87
|
undo: bool | None = None,
|
|
87
88
|
*,
|
|
88
|
-
distance:
|
|
89
|
+
distance: float | None = 0.0,
|
|
89
90
|
):
|
|
90
91
|
"""Apply scale on solution itself to make distance between selected tracks equals to desired
|
|
91
92
|
|
|
@@ -93,7 +94,7 @@ def apply_solution_scale(
|
|
|
93
94
|
:type execution_context: int | str | None
|
|
94
95
|
:type undo: bool | None
|
|
95
96
|
:param distance: Distance, Distance between selected tracks
|
|
96
|
-
:type distance:
|
|
97
|
+
:type distance: float | None
|
|
97
98
|
"""
|
|
98
99
|
|
|
99
100
|
...
|
|
@@ -103,7 +104,7 @@ def average_tracks(
|
|
|
103
104
|
execution_context: int | str | None = None,
|
|
104
105
|
undo: bool | None = None,
|
|
105
106
|
*,
|
|
106
|
-
keep_original: bool |
|
|
107
|
+
keep_original: bool | None = True,
|
|
107
108
|
):
|
|
108
109
|
"""Average selected tracks into active
|
|
109
110
|
|
|
@@ -111,7 +112,7 @@ def average_tracks(
|
|
|
111
112
|
:type execution_context: int | str | None
|
|
112
113
|
:type undo: bool | None
|
|
113
114
|
:param keep_original: Keep Original, Keep original tracks
|
|
114
|
-
:type keep_original: bool |
|
|
115
|
+
:type keep_original: bool | None
|
|
115
116
|
"""
|
|
116
117
|
|
|
117
118
|
...
|
|
@@ -135,10 +136,10 @@ def camera_preset_add(
|
|
|
135
136
|
execution_context: int | str | None = None,
|
|
136
137
|
undo: bool | None = None,
|
|
137
138
|
*,
|
|
138
|
-
name: str
|
|
139
|
-
remove_name: bool |
|
|
140
|
-
remove_active: bool |
|
|
141
|
-
use_focal_length: bool |
|
|
139
|
+
name: str = "",
|
|
140
|
+
remove_name: bool | None = False,
|
|
141
|
+
remove_active: bool | None = False,
|
|
142
|
+
use_focal_length: bool | None = True,
|
|
142
143
|
):
|
|
143
144
|
"""Add or remove a Tracking Camera Intrinsics Preset
|
|
144
145
|
|
|
@@ -146,13 +147,13 @@ def camera_preset_add(
|
|
|
146
147
|
:type execution_context: int | str | None
|
|
147
148
|
:type undo: bool | None
|
|
148
149
|
:param name: Name, Name of the preset, used to make the path name
|
|
149
|
-
:type name: str
|
|
150
|
+
:type name: str
|
|
150
151
|
:param remove_name: remove_name
|
|
151
|
-
:type remove_name: bool |
|
|
152
|
+
:type remove_name: bool | None
|
|
152
153
|
:param remove_active: remove_active
|
|
153
|
-
:type remove_active: bool |
|
|
154
|
+
:type remove_active: bool | None
|
|
154
155
|
:param use_focal_length: Include Focal Length, Include focal length into the preset
|
|
155
|
-
:type use_focal_length: bool |
|
|
156
|
+
:type use_focal_length: bool | None
|
|
156
157
|
"""
|
|
157
158
|
|
|
158
159
|
...
|
|
@@ -162,7 +163,7 @@ def change_frame(
|
|
|
162
163
|
execution_context: int | str | None = None,
|
|
163
164
|
undo: bool | None = None,
|
|
164
165
|
*,
|
|
165
|
-
frame:
|
|
166
|
+
frame: int | None = 0,
|
|
166
167
|
):
|
|
167
168
|
"""Interactively change the current frame number
|
|
168
169
|
|
|
@@ -170,7 +171,7 @@ def change_frame(
|
|
|
170
171
|
:type execution_context: int | str | None
|
|
171
172
|
:type undo: bool | None
|
|
172
173
|
:param frame: Frame
|
|
173
|
-
:type frame:
|
|
174
|
+
:type frame: int | None
|
|
174
175
|
"""
|
|
175
176
|
|
|
176
177
|
...
|
|
@@ -180,8 +181,8 @@ def clean_tracks(
|
|
|
180
181
|
execution_context: int | str | None = None,
|
|
181
182
|
undo: bool | None = None,
|
|
182
183
|
*,
|
|
183
|
-
frames:
|
|
184
|
-
error:
|
|
184
|
+
frames: int | None = 0,
|
|
185
|
+
error: float | None = 0.0,
|
|
185
186
|
action: str | None = "SELECT",
|
|
186
187
|
):
|
|
187
188
|
"""Clean tracks with high error values or few frames
|
|
@@ -190,9 +191,9 @@ def clean_tracks(
|
|
|
190
191
|
:type execution_context: int | str | None
|
|
191
192
|
:type undo: bool | None
|
|
192
193
|
:param frames: Tracked Frames, Affect tracks which are tracked less than the specified number of frames
|
|
193
|
-
:type frames:
|
|
194
|
+
:type frames: int | None
|
|
194
195
|
:param error: Reprojection Error, Affect tracks which have a larger reprojection error
|
|
195
|
-
:type error:
|
|
196
|
+
:type error: float | None
|
|
196
197
|
:param action: Action, Cleanup action to execute
|
|
197
198
|
|
|
198
199
|
SELECT
|
|
@@ -228,7 +229,7 @@ def clear_track_path(
|
|
|
228
229
|
undo: bool | None = None,
|
|
229
230
|
*,
|
|
230
231
|
action: str | None = "REMAINED",
|
|
231
|
-
clear_active: bool |
|
|
232
|
+
clear_active: bool | None = False,
|
|
232
233
|
):
|
|
233
234
|
"""Clear tracks after/before current position or clear the whole track
|
|
234
235
|
|
|
@@ -247,7 +248,7 @@ def clear_track_path(
|
|
|
247
248
|
Clear All -- Clear the whole path.
|
|
248
249
|
:type action: str | None
|
|
249
250
|
:param clear_active: Clear Active, Clear active track only instead of all selected tracks
|
|
250
|
-
:type clear_active: bool |
|
|
251
|
+
:type clear_active: bool | None
|
|
251
252
|
"""
|
|
252
253
|
|
|
253
254
|
...
|
|
@@ -299,7 +300,7 @@ def cursor_set(
|
|
|
299
300
|
execution_context: int | str | None = None,
|
|
300
301
|
undo: bool | None = None,
|
|
301
302
|
*,
|
|
302
|
-
location:
|
|
303
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
303
304
|
):
|
|
304
305
|
"""Set 2D cursor location
|
|
305
306
|
|
|
@@ -307,7 +308,7 @@ def cursor_set(
|
|
|
307
308
|
:type execution_context: int | str | None
|
|
308
309
|
:type undo: bool | None
|
|
309
310
|
:param location: Location, Cursor location in normalized clip coordinates
|
|
310
|
-
:type location:
|
|
311
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
311
312
|
"""
|
|
312
313
|
|
|
313
314
|
...
|
|
@@ -317,7 +318,7 @@ def delete_marker(
|
|
|
317
318
|
execution_context: int | str | None = None,
|
|
318
319
|
undo: bool | None = None,
|
|
319
320
|
*,
|
|
320
|
-
confirm: bool |
|
|
321
|
+
confirm: bool | None = True,
|
|
321
322
|
):
|
|
322
323
|
"""Delete marker for current frame from selected tracks
|
|
323
324
|
|
|
@@ -325,7 +326,7 @@ def delete_marker(
|
|
|
325
326
|
:type execution_context: int | str | None
|
|
326
327
|
:type undo: bool | None
|
|
327
328
|
:param confirm: Confirm, Prompt for confirmation
|
|
328
|
-
:type confirm: bool |
|
|
329
|
+
:type confirm: bool | None
|
|
329
330
|
"""
|
|
330
331
|
|
|
331
332
|
...
|
|
@@ -349,7 +350,7 @@ def delete_track(
|
|
|
349
350
|
execution_context: int | str | None = None,
|
|
350
351
|
undo: bool | None = None,
|
|
351
352
|
*,
|
|
352
|
-
confirm: bool |
|
|
353
|
+
confirm: bool | None = True,
|
|
353
354
|
):
|
|
354
355
|
"""Delete selected tracks
|
|
355
356
|
|
|
@@ -357,7 +358,7 @@ def delete_track(
|
|
|
357
358
|
:type execution_context: int | str | None
|
|
358
359
|
:type undo: bool | None
|
|
359
360
|
:param confirm: Confirm, Prompt for confirmation
|
|
360
|
-
:type confirm: bool |
|
|
361
|
+
:type confirm: bool | None
|
|
361
362
|
"""
|
|
362
363
|
|
|
363
364
|
...
|
|
@@ -368,9 +369,9 @@ def detect_features(
|
|
|
368
369
|
undo: bool | None = None,
|
|
369
370
|
*,
|
|
370
371
|
placement: str | None = "FRAME",
|
|
371
|
-
margin:
|
|
372
|
-
threshold:
|
|
373
|
-
min_distance:
|
|
372
|
+
margin: int | None = 16,
|
|
373
|
+
threshold: float | None = 0.5,
|
|
374
|
+
min_distance: int | None = 120,
|
|
374
375
|
):
|
|
375
376
|
"""Automatically detect features and place markers to track
|
|
376
377
|
|
|
@@ -389,11 +390,11 @@ def detect_features(
|
|
|
389
390
|
Outside Annotated Area -- Place markers only outside areas outlined with the Annotation tool.
|
|
390
391
|
:type placement: str | None
|
|
391
392
|
:param margin: Margin, Only features further than margin pixels from the image edges are considered
|
|
392
|
-
:type margin:
|
|
393
|
+
:type margin: int | None
|
|
393
394
|
:param threshold: Threshold, Threshold level to consider feature good enough for tracking
|
|
394
|
-
:type threshold:
|
|
395
|
+
:type threshold: float | None
|
|
395
396
|
:param min_distance: Distance, Minimal distance accepted between two features
|
|
396
|
-
:type min_distance:
|
|
397
|
+
:type min_distance: int | None
|
|
397
398
|
"""
|
|
398
399
|
|
|
399
400
|
...
|
|
@@ -430,8 +431,8 @@ def dopesheet_select_channel(
|
|
|
430
431
|
execution_context: int | str | None = None,
|
|
431
432
|
undo: bool | None = None,
|
|
432
433
|
*,
|
|
433
|
-
location:
|
|
434
|
-
extend: bool |
|
|
434
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
435
|
+
extend: bool | None = False,
|
|
435
436
|
):
|
|
436
437
|
"""Select movie tracking channel
|
|
437
438
|
|
|
@@ -439,9 +440,9 @@ def dopesheet_select_channel(
|
|
|
439
440
|
:type execution_context: int | str | None
|
|
440
441
|
:type undo: bool | None
|
|
441
442
|
:param location: Location, Mouse location to select channel
|
|
442
|
-
:type location:
|
|
443
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
443
444
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
444
|
-
:type extend: bool |
|
|
445
|
+
:type extend: bool | None
|
|
445
446
|
"""
|
|
446
447
|
|
|
447
448
|
...
|
|
@@ -465,7 +466,7 @@ def filter_tracks(
|
|
|
465
466
|
execution_context: int | str | None = None,
|
|
466
467
|
undo: bool | None = None,
|
|
467
468
|
*,
|
|
468
|
-
track_threshold:
|
|
469
|
+
track_threshold: float | None = 5.0,
|
|
469
470
|
):
|
|
470
471
|
"""Filter tracks which has weirdly looking spikes in motion curves
|
|
471
472
|
|
|
@@ -473,7 +474,7 @@ def filter_tracks(
|
|
|
473
474
|
:type execution_context: int | str | None
|
|
474
475
|
:type undo: bool | None
|
|
475
476
|
:param track_threshold: Track Threshold, Filter Threshold to select problematic tracks
|
|
476
|
-
:type track_threshold:
|
|
477
|
+
:type track_threshold: float | None
|
|
477
478
|
"""
|
|
478
479
|
|
|
479
480
|
...
|
|
@@ -527,7 +528,7 @@ def graph_delete_curve(
|
|
|
527
528
|
execution_context: int | str | None = None,
|
|
528
529
|
undo: bool | None = None,
|
|
529
530
|
*,
|
|
530
|
-
confirm: bool |
|
|
531
|
+
confirm: bool | None = True,
|
|
531
532
|
):
|
|
532
533
|
"""Delete track corresponding to the selected curve
|
|
533
534
|
|
|
@@ -535,7 +536,7 @@ def graph_delete_curve(
|
|
|
535
536
|
:type execution_context: int | str | None
|
|
536
537
|
:type undo: bool | None
|
|
537
538
|
:param confirm: Confirm, Prompt for confirmation
|
|
538
|
-
:type confirm: bool |
|
|
539
|
+
:type confirm: bool | None
|
|
539
540
|
"""
|
|
540
541
|
|
|
541
542
|
...
|
|
@@ -586,8 +587,8 @@ def graph_select(
|
|
|
586
587
|
execution_context: int | str | None = None,
|
|
587
588
|
undo: bool | None = None,
|
|
588
589
|
*,
|
|
589
|
-
location:
|
|
590
|
-
extend: bool |
|
|
590
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
591
|
+
extend: bool | None = False,
|
|
591
592
|
):
|
|
592
593
|
"""Select graph curves
|
|
593
594
|
|
|
@@ -595,9 +596,9 @@ def graph_select(
|
|
|
595
596
|
:type execution_context: int | str | None
|
|
596
597
|
:type undo: bool | None
|
|
597
598
|
:param location: Location, Mouse location to select nearest entity
|
|
598
|
-
:type location:
|
|
599
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
599
600
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
600
|
-
:type extend: bool |
|
|
601
|
+
:type extend: bool | None
|
|
601
602
|
"""
|
|
602
603
|
|
|
603
604
|
...
|
|
@@ -637,13 +638,13 @@ def graph_select_box(
|
|
|
637
638
|
execution_context: int | str | None = None,
|
|
638
639
|
undo: bool | None = None,
|
|
639
640
|
*,
|
|
640
|
-
xmin:
|
|
641
|
-
xmax:
|
|
642
|
-
ymin:
|
|
643
|
-
ymax:
|
|
644
|
-
wait_for_input: bool |
|
|
645
|
-
deselect: bool |
|
|
646
|
-
extend: bool |
|
|
641
|
+
xmin: int | None = 0,
|
|
642
|
+
xmax: int | None = 0,
|
|
643
|
+
ymin: int | None = 0,
|
|
644
|
+
ymax: int | None = 0,
|
|
645
|
+
wait_for_input: bool | None = True,
|
|
646
|
+
deselect: bool | None = False,
|
|
647
|
+
extend: bool | None = True,
|
|
647
648
|
):
|
|
648
649
|
"""Select curve points using box selection
|
|
649
650
|
|
|
@@ -651,19 +652,19 @@ def graph_select_box(
|
|
|
651
652
|
:type execution_context: int | str | None
|
|
652
653
|
:type undo: bool | None
|
|
653
654
|
:param xmin: X Min
|
|
654
|
-
:type xmin:
|
|
655
|
+
:type xmin: int | None
|
|
655
656
|
:param xmax: X Max
|
|
656
|
-
:type xmax:
|
|
657
|
+
:type xmax: int | None
|
|
657
658
|
:param ymin: Y Min
|
|
658
|
-
:type ymin:
|
|
659
|
+
:type ymin: int | None
|
|
659
660
|
:param ymax: Y Max
|
|
660
|
-
:type ymax:
|
|
661
|
+
:type ymax: int | None
|
|
661
662
|
:param wait_for_input: Wait for Input
|
|
662
|
-
:type wait_for_input: bool |
|
|
663
|
+
:type wait_for_input: bool | None
|
|
663
664
|
:param deselect: Deselect, Deselect rather than select items
|
|
664
|
-
:type deselect: bool |
|
|
665
|
+
:type deselect: bool | None
|
|
665
666
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
666
|
-
:type extend: bool |
|
|
667
|
+
:type extend: bool | None
|
|
667
668
|
"""
|
|
668
669
|
|
|
669
670
|
...
|
|
@@ -687,7 +688,7 @@ def hide_tracks(
|
|
|
687
688
|
execution_context: int | str | None = None,
|
|
688
689
|
undo: bool | None = None,
|
|
689
690
|
*,
|
|
690
|
-
unselected: bool |
|
|
691
|
+
unselected: bool | None = False,
|
|
691
692
|
):
|
|
692
693
|
"""Hide selected tracks
|
|
693
694
|
|
|
@@ -695,7 +696,7 @@ def hide_tracks(
|
|
|
695
696
|
:type execution_context: int | str | None
|
|
696
697
|
:type undo: bool | None
|
|
697
698
|
:param unselected: Unselected, Hide unselected tracks
|
|
698
|
-
:type unselected: bool |
|
|
699
|
+
:type unselected: bool | None
|
|
699
700
|
"""
|
|
700
701
|
|
|
701
702
|
...
|
|
@@ -834,32 +835,32 @@ def open(
|
|
|
834
835
|
execution_context: int | str | None = None,
|
|
835
836
|
undo: bool | None = None,
|
|
836
837
|
*,
|
|
837
|
-
directory: str
|
|
838
|
+
directory: str = "",
|
|
838
839
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
839
840
|
| None = None,
|
|
840
|
-
hide_props_region: bool |
|
|
841
|
-
check_existing: bool |
|
|
842
|
-
filter_blender: bool |
|
|
843
|
-
filter_backup: bool |
|
|
844
|
-
filter_image: bool |
|
|
845
|
-
filter_movie: bool |
|
|
846
|
-
filter_python: bool |
|
|
847
|
-
filter_font: bool |
|
|
848
|
-
filter_sound: bool |
|
|
849
|
-
filter_text: bool |
|
|
850
|
-
filter_archive: bool |
|
|
851
|
-
filter_btx: bool |
|
|
852
|
-
filter_collada: bool |
|
|
853
|
-
filter_alembic: bool |
|
|
854
|
-
filter_usd: bool |
|
|
855
|
-
filter_obj: bool |
|
|
856
|
-
filter_volume: bool |
|
|
857
|
-
filter_folder: bool |
|
|
858
|
-
filter_blenlib: bool |
|
|
859
|
-
filemode:
|
|
860
|
-
relative_path: bool |
|
|
861
|
-
show_multiview: bool |
|
|
862
|
-
use_multiview: bool |
|
|
841
|
+
hide_props_region: bool | None = True,
|
|
842
|
+
check_existing: bool | None = False,
|
|
843
|
+
filter_blender: bool | None = False,
|
|
844
|
+
filter_backup: bool | None = False,
|
|
845
|
+
filter_image: bool | None = True,
|
|
846
|
+
filter_movie: bool | None = True,
|
|
847
|
+
filter_python: bool | None = False,
|
|
848
|
+
filter_font: bool | None = False,
|
|
849
|
+
filter_sound: bool | None = False,
|
|
850
|
+
filter_text: bool | None = False,
|
|
851
|
+
filter_archive: bool | None = False,
|
|
852
|
+
filter_btx: bool | None = False,
|
|
853
|
+
filter_collada: bool | None = False,
|
|
854
|
+
filter_alembic: bool | None = False,
|
|
855
|
+
filter_usd: bool | None = False,
|
|
856
|
+
filter_obj: bool | None = False,
|
|
857
|
+
filter_volume: bool | None = False,
|
|
858
|
+
filter_folder: bool | None = True,
|
|
859
|
+
filter_blenlib: bool | None = False,
|
|
860
|
+
filemode: int | None = 9,
|
|
861
|
+
relative_path: bool | None = True,
|
|
862
|
+
show_multiview: bool | None = False,
|
|
863
|
+
use_multiview: bool | None = False,
|
|
863
864
|
display_type: str | None = "DEFAULT",
|
|
864
865
|
sort_method: str | None = "",
|
|
865
866
|
):
|
|
@@ -869,55 +870,55 @@ def open(
|
|
|
869
870
|
:type execution_context: int | str | None
|
|
870
871
|
:type undo: bool | None
|
|
871
872
|
:param directory: Directory, Directory of the file
|
|
872
|
-
:type directory: str
|
|
873
|
+
:type directory: str
|
|
873
874
|
:param files: Files
|
|
874
875
|
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
875
876
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
876
|
-
:type hide_props_region: bool |
|
|
877
|
+
:type hide_props_region: bool | None
|
|
877
878
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
878
|
-
:type check_existing: bool |
|
|
879
|
+
:type check_existing: bool | None
|
|
879
880
|
:param filter_blender: Filter .blend files
|
|
880
|
-
:type filter_blender: bool |
|
|
881
|
+
:type filter_blender: bool | None
|
|
881
882
|
:param filter_backup: Filter .blend files
|
|
882
|
-
:type filter_backup: bool |
|
|
883
|
+
:type filter_backup: bool | None
|
|
883
884
|
:param filter_image: Filter image files
|
|
884
|
-
:type filter_image: bool |
|
|
885
|
+
:type filter_image: bool | None
|
|
885
886
|
:param filter_movie: Filter movie files
|
|
886
|
-
:type filter_movie: bool |
|
|
887
|
+
:type filter_movie: bool | None
|
|
887
888
|
:param filter_python: Filter Python files
|
|
888
|
-
:type filter_python: bool |
|
|
889
|
+
:type filter_python: bool | None
|
|
889
890
|
:param filter_font: Filter font files
|
|
890
|
-
:type filter_font: bool |
|
|
891
|
+
:type filter_font: bool | None
|
|
891
892
|
:param filter_sound: Filter sound files
|
|
892
|
-
:type filter_sound: bool |
|
|
893
|
+
:type filter_sound: bool | None
|
|
893
894
|
:param filter_text: Filter text files
|
|
894
|
-
:type filter_text: bool |
|
|
895
|
+
:type filter_text: bool | None
|
|
895
896
|
:param filter_archive: Filter archive files
|
|
896
|
-
:type filter_archive: bool |
|
|
897
|
+
:type filter_archive: bool | None
|
|
897
898
|
:param filter_btx: Filter btx files
|
|
898
|
-
:type filter_btx: bool |
|
|
899
|
+
:type filter_btx: bool | None
|
|
899
900
|
:param filter_collada: Filter COLLADA files
|
|
900
|
-
:type filter_collada: bool |
|
|
901
|
+
:type filter_collada: bool | None
|
|
901
902
|
:param filter_alembic: Filter Alembic files
|
|
902
|
-
:type filter_alembic: bool |
|
|
903
|
+
:type filter_alembic: bool | None
|
|
903
904
|
:param filter_usd: Filter USD files
|
|
904
|
-
:type filter_usd: bool |
|
|
905
|
+
:type filter_usd: bool | None
|
|
905
906
|
:param filter_obj: Filter OBJ files
|
|
906
|
-
:type filter_obj: bool |
|
|
907
|
+
:type filter_obj: bool | None
|
|
907
908
|
:param filter_volume: Filter OpenVDB volume files
|
|
908
|
-
:type filter_volume: bool |
|
|
909
|
+
:type filter_volume: bool | None
|
|
909
910
|
:param filter_folder: Filter folders
|
|
910
|
-
:type filter_folder: bool |
|
|
911
|
+
:type filter_folder: bool | None
|
|
911
912
|
:param filter_blenlib: Filter Blender IDs
|
|
912
|
-
:type filter_blenlib: bool |
|
|
913
|
+
:type filter_blenlib: bool | None
|
|
913
914
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
914
|
-
:type filemode:
|
|
915
|
+
:type filemode: int | None
|
|
915
916
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
916
|
-
:type relative_path: bool |
|
|
917
|
+
:type relative_path: bool | None
|
|
917
918
|
:param show_multiview: Enable Multi-View
|
|
918
|
-
:type show_multiview: bool |
|
|
919
|
+
:type show_multiview: bool | None
|
|
919
920
|
:param use_multiview: Use Multi-View
|
|
920
|
-
:type use_multiview: bool |
|
|
921
|
+
:type use_multiview: bool | None
|
|
921
922
|
:param display_type: Display Type
|
|
922
923
|
|
|
923
924
|
DEFAULT
|
|
@@ -1000,7 +1001,7 @@ def refine_markers(
|
|
|
1000
1001
|
execution_context: int | str | None = None,
|
|
1001
1002
|
undo: bool | None = None,
|
|
1002
1003
|
*,
|
|
1003
|
-
backwards: bool |
|
|
1004
|
+
backwards: bool | None = False,
|
|
1004
1005
|
):
|
|
1005
1006
|
"""Refine selected markers positions by running the tracker from track's reference to current frame
|
|
1006
1007
|
|
|
@@ -1008,7 +1009,7 @@ def refine_markers(
|
|
|
1008
1009
|
:type execution_context: int | str | None
|
|
1009
1010
|
:type undo: bool | None
|
|
1010
1011
|
:param backwards: Backwards, Do backwards tracking
|
|
1011
|
-
:type backwards: bool |
|
|
1012
|
+
:type backwards: bool | None
|
|
1012
1013
|
"""
|
|
1013
1014
|
|
|
1014
1015
|
...
|
|
@@ -1032,9 +1033,9 @@ def select(
|
|
|
1032
1033
|
execution_context: int | str | None = None,
|
|
1033
1034
|
undo: bool | None = None,
|
|
1034
1035
|
*,
|
|
1035
|
-
extend: bool |
|
|
1036
|
-
deselect_all: bool |
|
|
1037
|
-
location:
|
|
1036
|
+
extend: bool | None = False,
|
|
1037
|
+
deselect_all: bool | None = False,
|
|
1038
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
1038
1039
|
):
|
|
1039
1040
|
"""Select tracking markers
|
|
1040
1041
|
|
|
@@ -1042,11 +1043,11 @@ def select(
|
|
|
1042
1043
|
:type execution_context: int | str | None
|
|
1043
1044
|
:type undo: bool | None
|
|
1044
1045
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
1045
|
-
:type extend: bool |
|
|
1046
|
+
:type extend: bool | None
|
|
1046
1047
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
1047
|
-
:type deselect_all: bool |
|
|
1048
|
+
:type deselect_all: bool | None
|
|
1048
1049
|
:param location: Location, Mouse location in normalized coordinates, 0.0 to 1.0 is within the image bounds
|
|
1049
|
-
:type location:
|
|
1050
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1050
1051
|
"""
|
|
1051
1052
|
|
|
1052
1053
|
...
|
|
@@ -1086,11 +1087,11 @@ def select_box(
|
|
|
1086
1087
|
execution_context: int | str | None = None,
|
|
1087
1088
|
undo: bool | None = None,
|
|
1088
1089
|
*,
|
|
1089
|
-
xmin:
|
|
1090
|
-
xmax:
|
|
1091
|
-
ymin:
|
|
1092
|
-
ymax:
|
|
1093
|
-
wait_for_input: bool |
|
|
1090
|
+
xmin: int | None = 0,
|
|
1091
|
+
xmax: int | None = 0,
|
|
1092
|
+
ymin: int | None = 0,
|
|
1093
|
+
ymax: int | None = 0,
|
|
1094
|
+
wait_for_input: bool | None = True,
|
|
1094
1095
|
mode: str | None = "SET",
|
|
1095
1096
|
):
|
|
1096
1097
|
"""Select markers using box selection
|
|
@@ -1099,15 +1100,15 @@ def select_box(
|
|
|
1099
1100
|
:type execution_context: int | str | None
|
|
1100
1101
|
:type undo: bool | None
|
|
1101
1102
|
:param xmin: X Min
|
|
1102
|
-
:type xmin:
|
|
1103
|
+
:type xmin: int | None
|
|
1103
1104
|
:param xmax: X Max
|
|
1104
|
-
:type xmax:
|
|
1105
|
+
:type xmax: int | None
|
|
1105
1106
|
:param ymin: Y Min
|
|
1106
|
-
:type ymin:
|
|
1107
|
+
:type ymin: int | None
|
|
1107
1108
|
:param ymax: Y Max
|
|
1108
|
-
:type ymax:
|
|
1109
|
+
:type ymax: int | None
|
|
1109
1110
|
:param wait_for_input: Wait for Input
|
|
1110
|
-
:type wait_for_input: bool |
|
|
1111
|
+
:type wait_for_input: bool | None
|
|
1111
1112
|
:param mode: Mode
|
|
1112
1113
|
|
|
1113
1114
|
SET
|
|
@@ -1128,10 +1129,10 @@ def select_circle(
|
|
|
1128
1129
|
execution_context: int | str | None = None,
|
|
1129
1130
|
undo: bool | None = None,
|
|
1130
1131
|
*,
|
|
1131
|
-
x:
|
|
1132
|
-
y:
|
|
1133
|
-
radius:
|
|
1134
|
-
wait_for_input: bool |
|
|
1132
|
+
x: int | None = 0,
|
|
1133
|
+
y: int | None = 0,
|
|
1134
|
+
radius: int | None = 25,
|
|
1135
|
+
wait_for_input: bool | None = True,
|
|
1135
1136
|
mode: str | None = "SET",
|
|
1136
1137
|
):
|
|
1137
1138
|
"""Select markers using circle selection
|
|
@@ -1140,13 +1141,13 @@ def select_circle(
|
|
|
1140
1141
|
:type execution_context: int | str | None
|
|
1141
1142
|
:type undo: bool | None
|
|
1142
1143
|
:param x: X
|
|
1143
|
-
:type x:
|
|
1144
|
+
:type x: int | None
|
|
1144
1145
|
:param y: Y
|
|
1145
|
-
:type y:
|
|
1146
|
+
:type y: int | None
|
|
1146
1147
|
:param radius: Radius
|
|
1147
|
-
:type radius:
|
|
1148
|
+
:type radius: int | None
|
|
1148
1149
|
:param wait_for_input: Wait for Input
|
|
1149
|
-
:type wait_for_input: bool |
|
|
1150
|
+
:type wait_for_input: bool | None
|
|
1150
1151
|
:param mode: Mode
|
|
1151
1152
|
|
|
1152
1153
|
SET
|
|
@@ -1274,7 +1275,7 @@ def set_origin(
|
|
|
1274
1275
|
execution_context: int | str | None = None,
|
|
1275
1276
|
undo: bool | None = None,
|
|
1276
1277
|
*,
|
|
1277
|
-
use_median: bool |
|
|
1278
|
+
use_median: bool | None = False,
|
|
1278
1279
|
):
|
|
1279
1280
|
"""Set active marker as origin by moving camera (or its parent if present) in 3D space
|
|
1280
1281
|
|
|
@@ -1282,7 +1283,7 @@ def set_origin(
|
|
|
1282
1283
|
:type execution_context: int | str | None
|
|
1283
1284
|
:type undo: bool | None
|
|
1284
1285
|
:param use_median: Use Median, Set origin to median point of selected bundles
|
|
1285
|
-
:type use_median: bool |
|
|
1286
|
+
:type use_median: bool | None
|
|
1286
1287
|
"""
|
|
1287
1288
|
|
|
1288
1289
|
...
|
|
@@ -1316,7 +1317,7 @@ def set_scale(
|
|
|
1316
1317
|
execution_context: int | str | None = None,
|
|
1317
1318
|
undo: bool | None = None,
|
|
1318
1319
|
*,
|
|
1319
|
-
distance:
|
|
1320
|
+
distance: float | None = 0.0,
|
|
1320
1321
|
):
|
|
1321
1322
|
"""Set scale of scene by scaling camera (or its parent if present)
|
|
1322
1323
|
|
|
@@ -1324,7 +1325,7 @@ def set_scale(
|
|
|
1324
1325
|
:type execution_context: int | str | None
|
|
1325
1326
|
:type undo: bool | None
|
|
1326
1327
|
:param distance: Distance, Distance between selected tracks
|
|
1327
|
-
:type distance:
|
|
1328
|
+
:type distance: float | None
|
|
1328
1329
|
"""
|
|
1329
1330
|
|
|
1330
1331
|
...
|
|
@@ -1348,7 +1349,7 @@ def set_solution_scale(
|
|
|
1348
1349
|
execution_context: int | str | None = None,
|
|
1349
1350
|
undo: bool | None = None,
|
|
1350
1351
|
*,
|
|
1351
|
-
distance:
|
|
1352
|
+
distance: float | None = 0.0,
|
|
1352
1353
|
):
|
|
1353
1354
|
"""Set object solution scale using distance between two selected tracks
|
|
1354
1355
|
|
|
@@ -1356,7 +1357,7 @@ def set_solution_scale(
|
|
|
1356
1357
|
:type execution_context: int | str | None
|
|
1357
1358
|
:type undo: bool | None
|
|
1358
1359
|
:param distance: Distance, Distance between selected tracks
|
|
1359
|
-
:type distance:
|
|
1360
|
+
:type distance: float | None
|
|
1360
1361
|
"""
|
|
1361
1362
|
|
|
1362
1363
|
...
|
|
@@ -1412,7 +1413,7 @@ def slide_marker(
|
|
|
1412
1413
|
execution_context: int | str | None = None,
|
|
1413
1414
|
undo: bool | None = None,
|
|
1414
1415
|
*,
|
|
1415
|
-
offset:
|
|
1416
|
+
offset: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
1416
1417
|
):
|
|
1417
1418
|
"""Slide marker areas
|
|
1418
1419
|
|
|
@@ -1420,7 +1421,7 @@ def slide_marker(
|
|
|
1420
1421
|
:type execution_context: int | str | None
|
|
1421
1422
|
:type undo: bool | None
|
|
1422
1423
|
:param offset: Offset, Offset in floating-point units, 1.0 is the width and height of the image
|
|
1423
|
-
:type offset:
|
|
1424
|
+
:type offset: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1424
1425
|
"""
|
|
1425
1426
|
|
|
1426
1427
|
...
|
|
@@ -1542,9 +1543,9 @@ def track_color_preset_add(
|
|
|
1542
1543
|
execution_context: int | str | None = None,
|
|
1543
1544
|
undo: bool | None = None,
|
|
1544
1545
|
*,
|
|
1545
|
-
name: str
|
|
1546
|
-
remove_name: bool |
|
|
1547
|
-
remove_active: bool |
|
|
1546
|
+
name: str = "",
|
|
1547
|
+
remove_name: bool | None = False,
|
|
1548
|
+
remove_active: bool | None = False,
|
|
1548
1549
|
):
|
|
1549
1550
|
"""Add or remove a Clip Track Color Preset
|
|
1550
1551
|
|
|
@@ -1552,11 +1553,11 @@ def track_color_preset_add(
|
|
|
1552
1553
|
:type execution_context: int | str | None
|
|
1553
1554
|
:type undo: bool | None
|
|
1554
1555
|
:param name: Name, Name of the preset, used to make the path name
|
|
1555
|
-
:type name: str
|
|
1556
|
+
:type name: str
|
|
1556
1557
|
:param remove_name: remove_name
|
|
1557
|
-
:type remove_name: bool |
|
|
1558
|
+
:type remove_name: bool | None
|
|
1558
1559
|
:param remove_active: remove_active
|
|
1559
|
-
:type remove_active: bool |
|
|
1560
|
+
:type remove_active: bool | None
|
|
1560
1561
|
"""
|
|
1561
1562
|
|
|
1562
1563
|
...
|
|
@@ -1580,8 +1581,8 @@ def track_markers(
|
|
|
1580
1581
|
execution_context: int | str | None = None,
|
|
1581
1582
|
undo: bool | None = None,
|
|
1582
1583
|
*,
|
|
1583
|
-
backwards: bool |
|
|
1584
|
-
sequence: bool |
|
|
1584
|
+
backwards: bool | None = False,
|
|
1585
|
+
sequence: bool | None = False,
|
|
1585
1586
|
):
|
|
1586
1587
|
"""Track selected markers
|
|
1587
1588
|
|
|
@@ -1589,9 +1590,9 @@ def track_markers(
|
|
|
1589
1590
|
:type execution_context: int | str | None
|
|
1590
1591
|
:type undo: bool | None
|
|
1591
1592
|
:param backwards: Backwards, Do backwards tracking
|
|
1592
|
-
:type backwards: bool |
|
|
1593
|
+
:type backwards: bool | None
|
|
1593
1594
|
:param sequence: Track Sequence, Track marker during image sequence rather than single image
|
|
1594
|
-
:type sequence: bool |
|
|
1595
|
+
:type sequence: bool | None
|
|
1595
1596
|
"""
|
|
1596
1597
|
|
|
1597
1598
|
...
|
|
@@ -1671,9 +1672,9 @@ def tracking_settings_preset_add(
|
|
|
1671
1672
|
execution_context: int | str | None = None,
|
|
1672
1673
|
undo: bool | None = None,
|
|
1673
1674
|
*,
|
|
1674
|
-
name: str
|
|
1675
|
-
remove_name: bool |
|
|
1676
|
-
remove_active: bool |
|
|
1675
|
+
name: str = "",
|
|
1676
|
+
remove_name: bool | None = False,
|
|
1677
|
+
remove_active: bool | None = False,
|
|
1677
1678
|
):
|
|
1678
1679
|
"""Add or remove a motion tracking settings preset
|
|
1679
1680
|
|
|
@@ -1681,11 +1682,11 @@ def tracking_settings_preset_add(
|
|
|
1681
1682
|
:type execution_context: int | str | None
|
|
1682
1683
|
:type undo: bool | None
|
|
1683
1684
|
:param name: Name, Name of the preset, used to make the path name
|
|
1684
|
-
:type name: str
|
|
1685
|
+
:type name: str
|
|
1685
1686
|
:param remove_name: remove_name
|
|
1686
|
-
:type remove_name: bool |
|
|
1687
|
+
:type remove_name: bool | None
|
|
1687
1688
|
:param remove_active: remove_active
|
|
1688
|
-
:type remove_active: bool |
|
|
1689
|
+
:type remove_active: bool | None
|
|
1689
1690
|
"""
|
|
1690
1691
|
|
|
1691
1692
|
...
|
|
@@ -1709,7 +1710,7 @@ def view_all(
|
|
|
1709
1710
|
execution_context: int | str | None = None,
|
|
1710
1711
|
undo: bool | None = None,
|
|
1711
1712
|
*,
|
|
1712
|
-
fit_view: bool |
|
|
1713
|
+
fit_view: bool | None = False,
|
|
1713
1714
|
):
|
|
1714
1715
|
"""View whole image with markers
|
|
1715
1716
|
|
|
@@ -1717,7 +1718,7 @@ def view_all(
|
|
|
1717
1718
|
:type execution_context: int | str | None
|
|
1718
1719
|
:type undo: bool | None
|
|
1719
1720
|
:param fit_view: Fit View, Fit frame to the viewport
|
|
1720
|
-
:type fit_view: bool |
|
|
1721
|
+
:type fit_view: bool | None
|
|
1721
1722
|
"""
|
|
1722
1723
|
|
|
1723
1724
|
...
|
|
@@ -1755,7 +1756,7 @@ def view_pan(
|
|
|
1755
1756
|
execution_context: int | str | None = None,
|
|
1756
1757
|
undo: bool | None = None,
|
|
1757
1758
|
*,
|
|
1758
|
-
offset:
|
|
1759
|
+
offset: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
1759
1760
|
):
|
|
1760
1761
|
"""Pan the view
|
|
1761
1762
|
|
|
@@ -1763,7 +1764,7 @@ def view_pan(
|
|
|
1763
1764
|
:type execution_context: int | str | None
|
|
1764
1765
|
:type undo: bool | None
|
|
1765
1766
|
:param offset: Offset, Offset in floating-point units, 1.0 is the width and height of the image
|
|
1766
|
-
:type offset:
|
|
1767
|
+
:type offset: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1767
1768
|
"""
|
|
1768
1769
|
|
|
1769
1770
|
...
|
|
@@ -1787,8 +1788,8 @@ def view_zoom(
|
|
|
1787
1788
|
execution_context: int | str | None = None,
|
|
1788
1789
|
undo: bool | None = None,
|
|
1789
1790
|
*,
|
|
1790
|
-
factor:
|
|
1791
|
-
use_cursor_init: bool |
|
|
1791
|
+
factor: float | None = 0.0,
|
|
1792
|
+
use_cursor_init: bool | None = True,
|
|
1792
1793
|
):
|
|
1793
1794
|
"""Zoom in/out the view
|
|
1794
1795
|
|
|
@@ -1796,9 +1797,9 @@ def view_zoom(
|
|
|
1796
1797
|
:type execution_context: int | str | None
|
|
1797
1798
|
:type undo: bool | None
|
|
1798
1799
|
:param factor: Factor, Zoom factor, values higher than 1.0 zoom in, lower values zoom out
|
|
1799
|
-
:type factor:
|
|
1800
|
+
:type factor: float | None
|
|
1800
1801
|
:param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
|
|
1801
|
-
:type use_cursor_init: bool |
|
|
1802
|
+
:type use_cursor_init: bool | None
|
|
1802
1803
|
"""
|
|
1803
1804
|
|
|
1804
1805
|
...
|
|
@@ -1808,7 +1809,7 @@ def view_zoom_in(
|
|
|
1808
1809
|
execution_context: int | str | None = None,
|
|
1809
1810
|
undo: bool | None = None,
|
|
1810
1811
|
*,
|
|
1811
|
-
location:
|
|
1812
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
1812
1813
|
):
|
|
1813
1814
|
"""Zoom in the view
|
|
1814
1815
|
|
|
@@ -1816,7 +1817,7 @@ def view_zoom_in(
|
|
|
1816
1817
|
:type execution_context: int | str | None
|
|
1817
1818
|
:type undo: bool | None
|
|
1818
1819
|
:param location: Location, Cursor location in screen coordinates
|
|
1819
|
-
:type location:
|
|
1820
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1820
1821
|
"""
|
|
1821
1822
|
|
|
1822
1823
|
...
|
|
@@ -1826,7 +1827,7 @@ def view_zoom_out(
|
|
|
1826
1827
|
execution_context: int | str | None = None,
|
|
1827
1828
|
undo: bool | None = None,
|
|
1828
1829
|
*,
|
|
1829
|
-
location:
|
|
1830
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
1830
1831
|
):
|
|
1831
1832
|
"""Zoom out the view
|
|
1832
1833
|
|
|
@@ -1834,7 +1835,7 @@ def view_zoom_out(
|
|
|
1834
1835
|
:type execution_context: int | str | None
|
|
1835
1836
|
:type undo: bool | None
|
|
1836
1837
|
:param location: Location, Cursor location in normalized (0.0 to 1.0) coordinates
|
|
1837
|
-
:type location:
|
|
1838
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1838
1839
|
"""
|
|
1839
1840
|
|
|
1840
1841
|
...
|
|
@@ -1844,7 +1845,7 @@ def view_zoom_ratio(
|
|
|
1844
1845
|
execution_context: int | str | None = None,
|
|
1845
1846
|
undo: bool | None = None,
|
|
1846
1847
|
*,
|
|
1847
|
-
ratio:
|
|
1848
|
+
ratio: float | None = 0.0,
|
|
1848
1849
|
):
|
|
1849
1850
|
"""Set the zoom ratio (based on clip size)
|
|
1850
1851
|
|
|
@@ -1852,7 +1853,7 @@ def view_zoom_ratio(
|
|
|
1852
1853
|
:type execution_context: int | str | None
|
|
1853
1854
|
:type undo: bool | None
|
|
1854
1855
|
:param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out
|
|
1855
|
-
:type ratio:
|
|
1856
|
+
:type ratio: float | None
|
|
1856
1857
|
"""
|
|
1857
1858
|
|
|
1858
1859
|
...
|