IScene3DViewProperty.ViewPoint

Syntax

ViewPoint: IScene3DViewPoint;

Description

The ViewPoint property determines camera position. Use the IScene3DViewPoint interface to work with available parameters.

Example

This example assumes that there is the object S of the IScene3D type.

Sub Chart3D;

Var

s : IScene3D;

Begin

s.SceneView.SceneViewProperty.ViewPoint.HorizontalRotation := 30;

End Sub Chart3D;

Executing the example rotates the scene horizontally at 30 degrees.

See also:

IScene3DViewProperty