summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/xr/xr_hit_result.cc
blob: 004c50aa759f2e1325a0f498b8eeec02324676f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2018 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/modules/xr/xr_hit_result.h"

#include "third_party/blink/renderer/modules/xr/xr_utils.h"
#include "third_party/blink/renderer/platform/transforms/transformation_matrix.h"

namespace blink {
XRHitResult::XRHitResult(std::unique_ptr<TransformationMatrix> hit_transform)
    : hit_transform_(std::move(hit_transform)) {}

XRHitResult::~XRHitResult() {}

DOMFloat32Array* XRHitResult::hitMatrix() const {
  if (!hit_transform_)
    return nullptr;
  // TODO(https://crbug.com/845296): rename
  // transformationMatrixToFloat32Array() to
  // TransformationMatrixToDOMFloat32Array().
  return transformationMatrixToFloat32Array(*hit_transform_);
}

}  // namespace blink