mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
25 lines
508 B
C++
25 lines
508 B
C++
/*
|
|
* Copyright (c) 2020, Shannon Booth <shannon@serenityos.org>
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/ByteString.h>
|
|
#include <LibGfx/Triangle.h>
|
|
|
|
namespace Gfx {
|
|
|
|
template<>
|
|
ByteString Triangle<int>::to_byte_string() const
|
|
{
|
|
return ByteString::formatted("({},{},{})", m_a, m_b, m_c);
|
|
}
|
|
|
|
template<>
|
|
ByteString Triangle<float>::to_byte_string() const
|
|
{
|
|
return ByteString::formatted("({},{},{})", m_a, m_b, m_c);
|
|
}
|
|
|
|
}
|