IScene3DViewProperty.Projection

Syntax

Projection: IScene3DProjection;

Description

The Projection property determines scene projection parameters. Use the IScene3DProjection 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.Projection.Type := Scene3DProjectionType.Ortho;

End Sub Chart3D;

After executing the example positional scene view is set up.

See also:

IScene3DViewProperty