TVRMLExportFormat
Hierarchy Methods
Unit
TeeVRML3D
Description
This class implements an "export format", to convert Charts into VRML format.
VRML format (Virtual Reality Modelling Language) is defined at:
http://en.wikipedia.org/wiki/VRML
Example:
procedure TForm1.Button1Click(Sender: TObject);
begin
with TVRMLExportFormat.Create do
try
Panel:=Chart1;
SaveToFile('c:\test.vrml');
finally
Free;
end;
end;
Alternative method:
TeeSaveToVRMLFile(Chart1,'c:\test.xaml');