|
@@ -1120,6 +1120,60 @@ ErrorOr<void> AcosCalculationNode::dump(StringBuilder& builder, int indent) cons
|
|
|
return {};
|
|
|
}
|
|
|
|
|
|
+ErrorOr<NonnullOwnPtr<AtanCalculationNode>> AtanCalculationNode::create(NonnullOwnPtr<CalculationNode> value)
|
|
|
+{
|
|
|
+ return adopt_nonnull_own_or_enomem(new (nothrow) AtanCalculationNode(move(value)));
|
|
|
+}
|
|
|
+
|
|
|
+AtanCalculationNode::AtanCalculationNode(NonnullOwnPtr<CalculationNode> value)
|
|
|
+ : CalculationNode(Type::Atan)
|
|
|
+ , m_value(move(value))
|
|
|
+{
|
|
|
+}
|
|
|
+
|
|
|
+AtanCalculationNode::~AtanCalculationNode() = default;
|
|
|
+
|
|
|
+ErrorOr<String> AtanCalculationNode::to_string() const
|
|
|
+{
|
|
|
+ StringBuilder builder;
|
|
|
+ builder.append("atan("sv);
|
|
|
+ builder.append(TRY(m_value->to_string()));
|
|
|
+ builder.append(")"sv);
|
|
|
+ return builder.to_string();
|
|
|
+}
|
|
|
+
|
|
|
+Optional<CalculatedStyleValue::ResolvedType> AtanCalculationNode::resolved_type() const
|
|
|
+{
|
|
|
+ return CalculatedStyleValue::ResolvedType::Angle;
|
|
|
+}
|
|
|
+
|
|
|
+bool AtanCalculationNode::contains_percentage() const
|
|
|
+{
|
|
|
+ return m_value->contains_percentage();
|
|
|
+}
|
|
|
+
|
|
|
+CalculatedStyleValue::CalculationResult AtanCalculationNode::resolve(Optional<Length::ResolutionContext const&> context, CalculatedStyleValue::PercentageBasis const& percentage_basis) const
|
|
|
+{
|
|
|
+ auto node_a = m_value->resolve(context, percentage_basis);
|
|
|
+ auto node_a_value = resolve_value(node_a.value(), context);
|
|
|
+ auto result = atan(node_a_value);
|
|
|
+
|
|
|
+ return { Angle(result, Angle::Type::Rad) };
|
|
|
+}
|
|
|
+
|
|
|
+ErrorOr<void> AtanCalculationNode::for_each_child_node(Function<ErrorOr<void>(NonnullOwnPtr<CalculationNode>&)> const& callback)
|
|
|
+{
|
|
|
+ TRY(m_value->for_each_child_node(callback));
|
|
|
+ TRY(callback(m_value));
|
|
|
+ return {};
|
|
|
+}
|
|
|
+
|
|
|
+ErrorOr<void> AtanCalculationNode::dump(StringBuilder& builder, int indent) const
|
|
|
+{
|
|
|
+ TRY(builder.try_appendff("{: >{}}ATAN: {}\n", "", indent, TRY(to_string())));
|
|
|
+ return {};
|
|
|
+}
|
|
|
+
|
|
|
void CalculatedStyleValue::CalculationResult::add(CalculationResult const& other, Optional<Length::ResolutionContext const&> context, PercentageBasis const& percentage_basis)
|
|
|
{
|
|
|
add_or_subtract_internal(SumOperation::Add, other, context, percentage_basis);
|