MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / DrawLine

Function DrawLine

include/Image.hpp:609–611  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

607 }
608
609 void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, ::Color color = {255, 255, 255, 255}) {
610 ::ImageDrawLine(this, startPosX, startPosY, endPosX, endPosY, color);
611 }
612
613 void DrawLine(::Vector2 start, ::Vector2 end, ::Color color = {255, 255, 255, 255}) {
614 ::ImageDrawLineV(this, start, end, color);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected