blob: a52e8d5ac3a8cc8ab4fe142a4ddf37e7b6302587 [file] [log] [blame]
// Copyright 2020 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_joint_pose.h"
#include "third_party/blink/renderer/modules/xr/xr_pose.h"
namespace blink {
XRJointPose::XRJointPose(const TransformationMatrix& transform, float radius)
: XRPose(transform, /* emulatedPosition */ false), radius_(radius) {}
} // namespace blink