RasterStreamUpdate Method |
When overridden in a derived class, updates the raster data associated with the raster stream at the specified time.
When the
Update(JulianDate, JulianDate) method is called, the raster stream contains a raster data buffer defined by the current
Attributes of the stream for updating the raster data.
The time parameter provides the current and next
SceneManager time.
Return true if the raster data was updated, otherwise return false.
Namespace:
AGI.Foundation.Graphics.Imaging
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