3.9.13 tUTIL_2DPoints_s Struct

C

typedef struct
{
    float32_t x;     /* Represents the X-coordinate of the point in 2D space */
    float32_t y;     /* Represents the Y-coordinate of the point in 2D space */
}tUTIL_2DPoints_s;

Summary

Structure representing a two-dimensional (2D) data.

Description

This structure is used to represent a point in a two-dimensional (2D) space.

Remarks

None.