Skip to content

Instantly share code, notes, and snippets.

View KotBasilio's full-sized avatar
🏠
Working from home

Sergei Mironov KotBasilio

🏠
Working from home
View GitHub Profile
@KotBasilio
KotBasilio / graph_types.cpp
Last active January 23, 2026 12:21
for Bob And Trace
#include "graph_types.h"
static ImVec2 AnchorRightMid(const ImVec2& node_min, const ImVec2& node_size)
{
return ImVec2(node_min.x + node_size.x, node_min.y + node_size.y * 0.5f);
}
static ImVec2 AnchorLeftMid(const ImVec2& node_min, const ImVec2& node_size)
{
return ImVec2(node_min.x, node_min.y + node_size.y * 0.5f);