IScene3DLighting.HighAccuracy

Syntax

HighAccuracy: Boolean;

Description

The HighAccuracy property determines smoothed appearance and high accuracy of the 3D scene.

Comments

If this property is set to True, high accuracy is used; if the property is set to False, it is not used.

The property is set to True by default.

This property increases resources consumption, it is not recommended to use it with animation. This property requires lighting to be enabled using the IScene3DLighting.UseLighting property.

Example

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:

IScene3DLighting

IScene3DLighting.UseLighting