blob: 41e4df083b9cd9b9e8d85cc2fd2f1c8a1ce2c2c9 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
---
title: XRReferenceSpaceEventInit.transform
slug: Web/API/XRReferenceSpaceEventInit/transform
tags:
- API
- AR
- Mixed
- Property
- Reality
- Reference
- VR
- Virtual
- WebXR
- WebXR API
- WebXR Device API
- XR
- XRReferenceSpaceEventInit
- augmented
- transform
translation_of: Web/API/XRReferenceSpaceEventInit/transform
---
<p>{{APIRef("WebXR Device API")}}{{SecureContext_header}}</p>
<p><span class="seoSummary">{{domxref("XRReferenceSpaceEventInit")}} の <strong><code>transform</code></strong> プロパティは、イベントが表す変更が適用された後の、影響を受ける参照空間のネイティブの原点の位置と向きを示します。</span> <code>transform</code> は古い座標系を使用して定義します。 これにより、座標をイベント前の座標系からイベント後の座標系に変換するために使用できます。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate">let <em>eventInitDict</em> = {
referenceSpace: <em>xrReferenceSpace</em>,
transform: <em>xrRigidTransform</em>
});</pre>
<h3 id="Value" name="Value">値</h3>
<p>座標をイベント前の座標系からイベント後の座標系に変換するために使用できる変換を提供する {{domxref("XRRigidTransform")}} オブジェクト。</p>
<h2 id="Examples" name="Examples">例</h2>
<p>{{page("/ja/docs/Web/API/XRReferenceSpaceEventInit", "Examples")}}</p>
<h2 id="Specifications" name="Specifications">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様</th>
<th scope="col">状態</th>
<th scope="col">コメント</th>
</tr>
<tr>
<td>{{SpecName('WebXR','#dom-xrreferencespaceeventinit-transform','XRReferenceSpaceEventInit.transform')}}</td>
<td>{{Spec2('WebXR')}}</td>
<td>初期定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.XRReferenceSpaceEventInit.transform")}}</p>
|