blob: dcdc6b6da293480f2ba8c66211de650532aac0fd [file] [log] [blame]
// Copyright 2013 The Flutter 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 "fml/logging.h"
#include "gtest/gtest.h"
#include "flutter/impeller/geometry/trig.h"
namespace impeller {
namespace testing {
TEST(TrigTest, TrigAngles) {
{
Trig trig(Degrees(0.0));
EXPECT_EQ(trig.cos, 1.0);
EXPECT_EQ(trig.sin, 0.0);
}
{
Trig trig(Radians(0.0));
EXPECT_EQ(trig.cos, 1.0);
EXPECT_EQ(trig.sin, 0.0);
}
{
Trig trig(Degrees(30.0));
EXPECT_NEAR(trig.cos, sqrt(0.75), kEhCloseEnough);
EXPECT_NEAR(trig.sin, 0.5, kEhCloseEnough);
}
{
Trig trig(Radians(kPi / 6.0));
EXPECT_NEAR(trig.cos, sqrt(0.75), kEhCloseEnough);
EXPECT_NEAR(trig.sin, 0.5, kEhCloseEnough);
}
{
Trig trig(Degrees(60.0));
EXPECT_NEAR(trig.cos, 0.5, kEhCloseEnough);
EXPECT_NEAR(trig.sin, sqrt(0.75), kEhCloseEnough);
}
{
Trig trig(Radians(kPi / 3.0));
EXPECT_NEAR(trig.cos, 0.5, kEhCloseEnough);
EXPECT_NEAR(trig.sin, sqrt(0.75), kEhCloseEnough);
}
{
Trig trig(Degrees(90.0));
EXPECT_NEAR(trig.cos, 0.0, kEhCloseEnough);
EXPECT_NEAR(trig.sin, 1.0, kEhCloseEnough);
}
{
Trig trig(Radians(kPi / 2.0));
EXPECT_NEAR(trig.cos, 0.0, kEhCloseEnough);
EXPECT_NEAR(trig.sin, 1.0, kEhCloseEnough);
}
}
} // namespace testing
} // namespace impeller