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

Function DrawLine

include/Vector2.hpp:317–317  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

315 void DrawPixel(::Color color = {0, 0, 0, 255}) const { ::DrawPixelV(*this, color); }
316
317 void DrawLine(::Vector2 endPos, ::Color color = {0, 0, 0, 255}) const { ::DrawLineV(*this, endPos, color); }
318
319 void DrawLine(::Vector2 endPos, float thick, ::Color color = {0, 0, 0, 255}) const {
320 ::DrawLineEx(*this, endPos, thick, color);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected