SurfaceGrid: IScene3DGrid;
The SurfaceGrid property defines parameters for lines connecting 3D surface points. To work with available parameters, use the IScene3DGrid interface.
This example assumes that there is the object S 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 points of the 3D surface are displayed in blue.
See also: