/* * Copyright (c) 2020, Shannon Booth * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Gfx { template<> ByteString Triangle::to_byte_string() const { return ByteString::formatted("({},{},{})", m_a, m_b, m_c); } template<> ByteString Triangle::to_byte_string() const { return ByteString::formatted("({},{},{})", m_a, m_b, m_c); } }