Files
zmVault/timestamped/2025-08-26_00-00-00.md
T

391 B

id, aliases, title, tags, dg-publish
id aliases title tags dg-publish
2025-08-26T00:00:00-04:00
2025-08-26
authorship/original
destiny/permanent
status/draft
type/timestamped
true

2025-08-26 ??:??:??

Pathfinding

struct point {
    double x
    double y
}

struct point p1;
p1.x = 1.0d;
p1.y = 3.0d;

struct point p2;
p1.x = 4.0d;
p1.y = 6.0d;

// ??? = Pathfinder.Taxicab(p1, p2)