.. _program_listing_file_src_primitives_edge.h: Program Listing for File edge.h =============================== |exhale_lsh| :ref:`Return to documentation for file ` (``src/primitives/edge.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include "tal/vector3.h" namespace sota { struct Edge { Vector3 a; Vector3 b; }; } // namespace sota