IScene3DConvexHull.SurfaceGrid

Syntax

SurfaceGrid: IScene3DGrid;

Description

The SurfaceGrid property determines parameters of lines connecting 3D surface points. Use the IScene3DGrid 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;
    Hulls : IScene3DConvexHulls;
    Hull : IScene3DConvexHull;
Begin
    Hulls := S.DisplayedObjects.ConvexHulls;
    Hulls.Count := 1;
    Hull := Hulls.Item(0);
    Hull.SurfaceGrid.Color := New GxColor.CreateARGB(255,0,0,255);
End Sub Chart3D;

After executing the example the lines connecting 3D surface points are displayed in blue.

See also:

IScene3DConvexHull