Defines the x- and y-coordinates of a point.
C++ Syntax
typedef struct PointF {
REAL x;
REAL y;
};
FreeBASIC 语法
TYPE PointF
x AS FLOAT
y AS FLOAT
END TYPE
Members
x
Specifies the x-coordinate of a point.
y
Specifies the y-coordinate of a point.