r3tblur
plugins/postproc/timeblur/r3tblur.h
r3tblur
Blur rendering class.
r3Postprocessor
R3CLID_POSTPROCESSOR
r3Timeblurrender
R3CLID_TIMEBLURRENDER - 1568
Before, After, Index, FileName, Destination, Channel, TriggerChannel, TriggerLevel, GWeight, NormalChannel, DistanceChannel,
int R3RegisterTimeBlurRenderClass(R3APP *app);
Before
Before
R3TBLURA_Before
Integer
R3INT
frames before current
jsobj.SetBefore(value);
R3INT value = ...;
R3SetAttrs(r3obj, R3TBLURA_Before, value, R3TAG_END);
After
After
R3TBLURA_After
Integer
R3INT
frames after current
jsobj.SetAfter(value);
R3INT value = ...;
R3SetAttrs(r3obj, R3TBLURA_After, value, R3TAG_END);
Index
Index
R3TBLURA_Index
Integer
R3INT
current frame
jsobj.SetIndex(value);
R3INT value = ...;
R3SetAttrs(r3obj, R3TBLURA_Index, value, R3TAG_END);
FileName
FileName
R3TBLURA_FileName
String
char*
name of image sequence (includes formatting)
jsobj.SetFileName(value);
char* value = ...;
R3SetAttrs(r3obj, R3TBLURA_FileName, value, R3TAG_END);
Destination
Destination
R3TBLURA_Destination
String
char*
result is stored to this
jsobj.SetDestination(value);
char* value = ...;
R3SetAttrs(r3obj, R3TBLURA_Destination, value, R3TAG_END);
Channel
Channel
R3TBLURA_Channel
String
char*
name of channel to be blurred
jsobj.SetChannel(value);
char* value = ...;
R3SetAttrs(r3obj, R3TBLURA_Channel, value, R3TAG_END);
TriggerChannel
TriggerChannel
R3TBLURA_TriggerChannel
String
char*
name of width control channel (or NULL)
jsobj.SetTriggerChannel(value);
char* value = ...;
R3SetAttrs(r3obj, R3TBLURA_TriggerChannel, value, R3TAG_END);
TriggerLevel
TriggerLevel
R3TBLURA_TriggerLevel
Number
R3FLOAT
unused
jsobj.SetTriggerLevel(value);
R3FLOAT value = ...;
R3SetAttrs(r3obj, R3TBLURA_TriggerLevel, value, R3TAG_END);
GWeight
GWeight
R3TBLURA_GWeight
Number
R3FLOAT
amount of blur weighting by geom. continuity
jsobj.SetGWeight(value);
R3FLOAT value = ...;
R3SetAttrs(r3obj, R3TBLURA_GWeight, value, R3TAG_END);
NormalChannel
NormalChannel
R3TBLURA_NormalChannel
String
char*
name of normal channel for geom. weight
jsobj.SetNormalChannel(value);
char* value = ...;
R3SetAttrs(r3obj, R3TBLURA_NormalChannel, value, R3TAG_END);
DistanceChannel
DistanceChannel
R3TBLURA_DistanceChannel
String
char*
name of distance channel for geom. weight
jsobj.SetDistanceChannel(value);
char* value = ...;
R3SetAttrs(r3obj, R3TBLURA_DistanceChannel, value, R3TAG_END);