The current navigation speed.
Declaring type: Browser
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract float CurrentSpeed { get; }
Property Value
The current navigation speed, i.e. the speed of the currently bound Viewpoint, in units per second. This can be 0 when the browser does not support to provide this information.
Collapse/Expand Remarks
This is a read-only property.
Collapse/Expand Example
The following example prints the current navigation speed to the console:
C#
Vrml.EAI.Browser browser = ...;
System.Console.WriteLine("Browser.CurrentSpeed = " + browser.CurrentSpeed);