blob: 6c28ad513ffb29e1aeaee0be867669ae4bd42c4e [file] [log] [blame]
// Copyright 2019 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.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_XR_XR_TEST_UTILS_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_XR_XR_TEST_UTILS_H_
#include <memory>
#include "third_party/blink/renderer/bindings/core/v8/v8_dom_point_init.h"
#include "third_party/blink/renderer/core/geometry/dom_point_read_only.h"
#include "third_party/blink/renderer/core/typed_arrays/dom_typed_array.h"
#include "third_party/blink/renderer/platform/transforms/transformation_matrix.h"
namespace blink {
constexpr double kEpsilon = 0.0001;
Vector<double> GetMatrixDataForTest(const TransformationMatrix& matrix);
DOMPointInit* MakePointForTest(double x, double y, double z, double w);
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_XR_XR_TEST_UTILS_H_