|
||
char *xyz_to_text ( SS_XYZ *xyz, char *txt )
SS_XYZ *xyz; // address of XYZ struct char *txt; // string to receive XYZ string
|
|
|
Synopsis |
#include "silver.h"
The xyz_to_text function converts the SS_XYZ pointed to by xyz into a text string formatted as "<double>,<double>,<double>", which is stored into txt.
|
|
Parameters |
xyz is the address of an SS_XYZ structure that holds the XYZ value to be formatted. txt is a character buffer that is to hold the formatted string..
|
|
Return Value |
xyz_to_text returns txt always.
|
|
See Also |
|
|
|
|