IScene3DCoordinatePlanes.BackPlane

Syntax

BackPlane: IScene3DPlane;

Description

The BackPlane property defines parameters for the scene back wall (the XOZ plane). Use the IScene3DPlane 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;

Plane : IScene3DCoordinatePlanes;

Begin

Plane := s.DisplayedObjects.CoordinatePlanes;

Plane.BackPlane.Plane.Color := New GxColor.CreateRGB(255,0,0);

End Sub Chart3D;

Executing this example changes the color of the scene back wall to red.

See also:

IScene3DCoordinatePlanes