跳转至

line.h

Line drawing utilities for 2D graphics rendering.

Classes

Name
struct CFBDGraphic_Line
Represents a line segment defined by two endpoints.

Source code

#pragma once

#include "point.h"

typedef struct
{
    CFBDGraphic_Point p_left;  
    CFBDGraphic_Point p_right; 
} CFBDGraphic_Line;

void CFBDGraphic_DrawLine(CFBD_GraphicDevice* handler, CFBDGraphic_Line* line);

 // End of Line_Module group

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