ProjectionStreamUpdate Method |
When overridden in a derived class, updates the projection data associated with the projection stream at the specified time. When the Update method is called, the projection stream contains the current projection data.
The time parameter provides the current and next
SceneManager time. Return true if the projection data was updated, otherwise return false.
Namespace:
AGI.Foundation.Graphics.Advanced
Assembly:
AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public abstract bool Update(
JulianDate time,
JulianDate nextTime
)
Public MustOverride Function Update (
time As JulianDate,
nextTime As JulianDate
) As Boolean
public:
virtual bool Update(
JulianDate time,
JulianDate nextTime
) abstract
abstract Update :
time : JulianDate *
nextTime : JulianDate -> bool
Parameters
- time
- Type: AGI.Foundation.TimeJulianDate
The current SceneManager time. - nextTime
- Type: AGI.Foundation.TimeJulianDate
The next SceneManager time.
Return Value
Type:
BooleanTrue if the stream was updated, and false if it was not.
See Also