chromium/ui/gfx/geometry/vector3d_f_unittest.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/354829279): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "ui/gfx/geometry/vector3d_f.h"

#include <stddef.h>

#include <cmath>
#include <limits>

#include "build/build_config.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace gfx {

TEST(Vector3dFTest, IsZero) {}

TEST(Vector3dFTest, Add) {}

TEST(Vector3dFTest, Negative) {}

TEST(Vector3dFTest, Scale) {}

TEST(Vector3dFTest, Length) {}

TEST(Vector3dFTest, DotProduct) {}

TEST(Vector3dFTest, CrossProduct) {}

TEST(Vector3dFTest, ClampVector3dF) {}

TEST(Vector3dFTest, AngleBetweenVectorsInDegress) {}

TEST(Vector3dFTest, ClockwiseAngleBetweenVectorsInDegress) {}

TEST(Vector3dFTest, GetNormalized) {}

TEST(Vector3dFTest, ToString) {}

}  // namespace gfx