c4d.documents.BaseVideoPost
¶
c4d.documents.
BaseVideoPost
¶
BaseVideoPost.StereoMergeImages()
BaseVideoPost.StereoGetCameraCountEditor()
BaseVideoPost.StereoGetCameraCountRenderer()
BaseVideoPost.StereoGetCameraInfo()
c4d.BaseList2D
BaseVideoPost.
__init__
(
type
)
¶
Initializes a new
BaseVideoPost
.
Parameters: | type ( int ) – The videopost type: VideoPost Types . |
---|---|
Return type: | c4d.documents.BaseVideoPost |
Returns: | A new videopost. |
BaseVideoPost.
RenderEngineCheck
(
type
)
¶
Checks if a videopost is available for a certain render engine.
Parameters: | type ( int ) – The ID of the render engine. |
---|---|
Return type: | bool |
Returns: | True if the videopost is available for the specified render engine, otherwise False . |
BaseVideoPost.
StereoMergeImages
(
dest
,
source
,
settings
,
transform
)
¶
Merges stereoscopic images for rendering.
Parameters: |
|
||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Return type: |
bool |
||||||||||
Returns: |
True if the stereo images were merged, otherwise False . |
BaseVideoPost.
StereoGetCameraCountEditor
(
doc
,
bd
)
¶
Returns the number of stereoscopic editor cameras.
Parameters: |
|
---|---|
Return type: |
int |
Returns: |
The number of stereoscopic cameras. |
BaseVideoPost.
StereoGetCameraCountRenderer
(
doc
,
rd
)
¶
Returns the number of stereoscopic cameras used for rendering.
Parameters: |
|
---|---|
Return type: |
int |
Returns: |
The number of stereoscopic cameras. |
BaseVideoPost.
StereoGetCameraInfo
(
doc
,
bd
,
rd
,
index
)
¶
Retrieves the information for a stereoscopic camera.
Parameters: |
|
---|---|
Return type: |
dict{‘m’:
|
Returns: |
A dictionary ( None if the function failed) with the following information for the stereoscopic camera: m :
c4d.Matrix
: Matrix of the stereoscopic camera.
off_x
:
float
: Stereoscopic camera film X offset.
off_y
:
float
: Stereoscopic camera film Y offset.
name
:
str
: Name of the stereoscopic camera.
|