2022-03-06 13:48:32 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Ratio.h"
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
2023-08-20 13:02:41 +01:00
|
|
|
Ratio::Ratio(double first, double second)
|
2022-03-06 13:48:32 +00:00
|
|
|
: m_first_value(first)
|
|
|
|
, m_second_value(second)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://www.w3.org/TR/css-values-4/#degenerate-ratio
|
|
|
|
bool Ratio::is_degenerate() const
|
|
|
|
{
|
|
|
|
return !isfinite(m_first_value) || m_first_value == 0
|
|
|
|
|| !isfinite(m_second_value) || m_second_value == 0;
|
|
|
|
}
|
|
|
|
|
2023-01-06 19:02:26 +01:00
|
|
|
ErrorOr<String> Ratio::to_string() const
|
2022-03-06 13:48:32 +00:00
|
|
|
{
|
2023-01-06 19:02:26 +01:00
|
|
|
return String::formatted("{} / {}", m_first_value, m_second_value);
|
2022-03-06 13:48:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|