HighAccuracy: Boolean;
The HighAccuracy property specifies smoothed appearance, that is accurate and realistic view of the 3D scene.
If the property is set to True, the realistic view is used.
The default value of this property is True.
This property increases resources consumption, it is not recommended to use it with animation. This property requires lighting to be enabled (the IScene3DLighting.UseLighting property).
This example assumes that there is the object S of the IScene3D type.
Sub Chart3D;
Var
s : IScene3D;
Begin
s.SceneView.Lighting.HighAccuracy := False;
End Sub Chart3D;
After executing the example high accuracy of the scene is disabled.
See also: