View3DAnimationFormat

The animation properties.

Example

app = pf.GetApplication()
app:NewProject()
app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/startup.fek]])
view = app.Views[1]

    -- Configure the animation type and speed using 'View3DAnimationFormat'

view.Animation.Type = pf.Enums.AnimationTypeEnum.PhiRotate
view.Animation.PhiStepSize = 25 -- deg/s
view.Animation.RealTimeDuration = 5 -- seconds

    -- Export the animation to the current working directory

view:ExportAnimation([[temp_startupAnimation]], 
                      pf.Enums.AnimationFormatEnum.AVI,      
                      pf.Enums.AnimationQualityEnum.Normal,  
                      800,                                   
                      600,                                   
                      25)                                    

Usage locations (object properties)

The following objects have properties using the View3DAnimationFormat object:

Property List

ContinuousFrequencySamples
Number of continuous frequency samples. (Read/Write number)
FrequencyRate
Number of frequency points to step per second (points/s). (Read/Write number)
PhaseStepSize
Phase step size per second (wt/s). (Read/Write number)
PhiStepSize
Phi angle step size per second (deg/s). (Read/Write number)
RealTimeDuration
Real time duration of the time animation in seconds (s). (Read/Write number)
ThetaStepSize
Theta angle step size per second (deg/s). (Read/Write number)
Type
The animation type specified by the AnimationTypeEnum, e.g. Phase, Frequency, etc. (Read/Write AnimationTypeEnum)

Property Details

ContinuousFrequencySamples
Number of continuous frequency samples.
Type
number
Access
Read/Write
FrequencyRate
Number of frequency points to step per second (points/s).
Type
number
Access
Read/Write
PhaseStepSize
Phase step size per second (wt/s).
Type
number
Access
Read/Write
PhiStepSize
Phi angle step size per second (deg/s).
Type
number
Access
Read/Write
RealTimeDuration
Real time duration of the time animation in seconds (s).
Type
number
Access
Read/Write
ThetaStepSize
Theta angle step size per second (deg/s).
Type
number
Access
Read/Write
Type
The animation type specified by the AnimationTypeEnum, e.g. Phase, Frequency, etc.
Type
AnimationTypeEnum
Access
Read/Write