IScene3DDisplayedObjects.SceneCoordinates

Syntax

SceneCoordinates: IScene3DCoordinates;

Description

The SceneCoordinates property determines parameters of a coordinate system. Use the IScene3DCoordinates interface to work with available parameters.

Example

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

Sub Chart3D;
Var
    S : IScene3D;
    i, point : Integer;
Begin
    point := s.DisplayedObjects.SceneCoordinates.AxisStep;
    S.DisplayedObjects.SceneCoordinates.UseNumericAxes := False;
    For i:= 0 To point Do
        S.BeginUpdate;
        s.DisplayedObjects.SceneCoordinates.NonnumericValueX(i) := "Point" + i.ToString;
        S.EndUpdate;
    End For;
End Sub Chart3D;

Executing the example displays specified names next to each point of the OX axis.

See also:

IScene3DDisplayedObjects