blob: e0c7b9f6000e78dcf18c4e6a0bebba84f42bf64d [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/animation/svg_angle_interpolation_type.h"
#include "third_party/blink/renderer/core/animation/interpolation_environment.h"
#include "third_party/blink/renderer/core/animation/string_keyframe.h"
#include "third_party/blink/renderer/core/svg/svg_angle.h"
namespace blink {
InterpolationValue SVGAngleInterpolationType::MaybeConvertNeutral(
const InterpolationValue&,
ConversionCheckers&) const {
return InterpolationValue(InterpolableNumber::Create(0));
}
InterpolationValue SVGAngleInterpolationType::MaybeConvertSVGValue(
const SVGPropertyBase& svg_value) const {
if (ToSVGAngle(svg_value).OrientType()->EnumValue() != kSVGMarkerOrientAngle)
return nullptr;
return InterpolationValue(
InterpolableNumber::Create(ToSVGAngle(svg_value).Value()));
}
SVGPropertyBase* SVGAngleInterpolationType::AppliedSVGValue(
const InterpolableValue& interpolable_value,
const NonInterpolableValue*) const {
double double_value = ToInterpolableNumber(interpolable_value).Value();
SVGAngle* result = SVGAngle::Create();
result->NewValueSpecifiedUnits(SVGAngle::kSvgAngletypeDeg, double_value);
return result;
}
} // namespace blink