/* * Copyright (c) 2020, Shannon Booth * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Gfx { String Triangle::to_string() const { return String::formatted("({},{},{})", m_a, m_b, m_c); } }