FMX.Utils.Point3DToString

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Point3DToString(const P: TPoint3D): string;

C++

extern DELPHI_PACKAGE System::UnicodeString __fastcall Point3DToString(const System::Math::Vectors::TPoint3D &P);

Properties

Type Visibility Source Unit Parent
function public
FMX.Utils.pas
FMX.Utils.hpp
FMX.Utils FMX.Utils

Description

Converts the given TPoint3D to a string.

The string looks like:

  '(x, y, z)'

where x, y, and z are numbers that represent the coordinates of the 3D point in space.

See Also