跳转至

CFBDGraphic_Point

Module: Point Utilities

Represents a 2D point in the graphics coordinate system. More...

#include <point.h>

Public Attributes

Name
PointBaseType x
PointBaseType y

Detailed Description

struct CFBDGraphic_Point;

Represents a 2D point in the graphics coordinate system.

This structure defines a point in 2D space with unsigned 16-bit coordinates. It is used throughout the graphics module for positioning and drawing operations.

The coordinates are limited to the range [0, UINT16_MAX] by the PointBaseType definition. This allows for efficient storage and computation on embedded systems.

Public Attributes Documentation

variable x

PointBaseType x;

X-coordinate of the point

variable y

PointBaseType y;

Y-coordinate of the point


Updated on 2026-02-03 at 13:21:55 +0000