diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/xrboundedreferencespace/boundsgeometry/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/xrboundedreferencespace/boundsgeometry/index.html')
-rw-r--r-- | files/ja/web/api/xrboundedreferencespace/boundsgeometry/index.html | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/files/ja/web/api/xrboundedreferencespace/boundsgeometry/index.html b/files/ja/web/api/xrboundedreferencespace/boundsgeometry/index.html new file mode 100644 index 0000000000..ac3f9331bf --- /dev/null +++ b/files/ja/web/api/xrboundedreferencespace/boundsgeometry/index.html @@ -0,0 +1,85 @@ +--- +title: XRBoundedReferenceSpace.boundsGeometry +slug: Web/API/XRBoundedReferenceSpace/boundsGeometry +tags: + - API + - AR + - Boundary + - Edges + - Geometry + - Property + - Read-only + - Reality + - Reference + - VR + - Virtual + - WebXR + - WebXR API + - WebXR Device API + - XR + - XRBoundedReferenceSpace + - augmented + - boundsGeometry + - space +translation_of: Web/API/XRBoundedReferenceSpace/boundsGeometry +--- +<p>{{APIRef("WebXR Device API")}}{{secureContext_header}}{{draft}}</p> + +<p><span class="seoSummary">{{domxref("XRBoundedReferenceSpace")}} の <strong><code>boundsGeometry</code></strong> 読み取り専用プロパティは、ビューアーが移動できる多角形の内部を構成する点を指定する {{domxref("DOMPointReadOnly")}} オブジェクトの配列です。</span> 各点は2次元の点として扱われ、地面レベルに配置する必要があります(つまり、その <code>y</code> 座標は 0 である必要があります)。</p> + +<p>この境界は通常、XR ハードウェアを制御するソフトウェアを使用してユーザーが構成します。 これは、使用したい空間の境界を歩くか、XR 入力デバイスを使用して部屋の形状を描くことによって行うことができます。 理論的には、より高度なシステムでは、センサーやその他の検出方法を使用して、専用の XR ルーム(それを慎重にホロデッキとは呼んでいないことに気づきましたか?)の境界を決定する場合があります。</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox notranslate"><em>bounds</em> = <em>xrReferenceSpace</em>.boundsGeometry;</pre> + +<h3 id="Value" name="Value">値</h3> + +<p><code>boundsGeometry</code> プロパティは、{{domxref("DOMPointReadOnly")}} オブジェクトの配列であり、各オブジェクトは、ビューアーが留まる必要がある多角形(polygon、ポリゴン)内の1つの頂点を定義します。 各点は床レベルにあり、<code>y</code> 座標の値は 0 に設定されている必要があります。 さらに、<code>w</code> の値は、配列内のすべての点で常に 1 です。 さらに、点は時計回りにリストする<em>必要があります</em>。</p> + +<p><code>boundsGeometry</code> の各エントリーは、部屋のネイティブの境界ジオメトリー点のリストのエントリーと同じであり、原点オフセットの逆数が事前に乗算されています。 言い換えると、境界は使用可能な空間の物理的な制限であり、参照空間の境界点がすべて <code>XRBoundedReferenceSpace</code> の実際の原点に対して定義されるようにシフトされます。</p> + +<h2 id="Usage_notes" name="Usage_notes">使用上の注意</h2> + +<p>制限付き参照空間の原点は常に地面レベルにあり、<code>y</code> は 0 です。 原則として、基盤となるプラットフォームまたは XR ハードウェアに応じたものとして、<code>x</code> と <code>z</code> の原点は空間の中心またはその近くにあり、向きは論理的前方を向いています。</p> + +<p>部屋の境界がフィンガープリントの目的で使用されるリスクを減らすために、<code>boundsGeometry</code> 配列の各点は、丸められるか、ある程度調整される場合があります。 仕様では、ブラウザーが点を最も近い5センチメートルにシフトすることを推奨しています(ハードウェアの物理的な制限の外側に出ないようにしながら)。</p> + +<h3 id="Boundary_size" name="Boundary_size">境界の大きさ</h3> + +<p><code>XRBoundedReferenceSpace</code> は、非常に大きな制限付き領域に使用することを目的としていません。 それよりも、ネイティブの原点から任意の方向に使用可能な移動空間が約 15 メートル以下の1部屋の空間に使用することを目的としています。 とはいえ、境界は2次元でのみ定義されるため、境界は無限に上向きに拡張されます。</p> + +<p>複数部屋の空間を作成する必要がある場合、または非常に大きい空間やさまざまな床レベルが必要な場合は、代わりに無制限の {{domxref("XRReferenceSpace")}} を使用し、必要に応じて独自に境界を適用する必要があります。</p> + +<h3 id="Boundary_shape" name="Boundary_shape">境界の形状</h3> + +<p><code>boundsGeometry</code> によって定義される形状は、正方形のように単純な場合もあれば、必要に応じて複雑な場合もあり、凹部や凸部を含む可能性があります。 ただし、<code>XRBoundedReferenceSpace</code> を使用して、床レベルが不均一な空間を表すことはできません。 地面は<em>常に</em> <code>y</code> = 0 にあります。</p> + +<p>ユーザーが <code>boundsGeometry</code> で指定された境界から出る必要があるようにコンテンツを設計していないことが重要です。 ただし、ユーザーの周囲が定義された境界を超えるように移動することを許可している場合、コンテンツはその状況を適切に処理できる必要があり、これはエラー状態とは見なされません。</p> + +<p>一部のサンプルは、メッシュまたはその他の形状をレンダリングしてユーザーに境界を表示しますが、実際のアプリケーションでは、これを行うべきではありません。 ただし、ブラウザーは、リスク(移動し続けると、物理的な壁にぶつかる恐れなど)についてユーザーに適切な警告を提供する必要があります。</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-xrboundedreferencespace-boundsgeometry','boundsGeometry')}}</td> + <td>{{Spec2('WebXR')}}</td> + <td>初期定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div class="hidden"> +<p>The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p> +</div> + +<p>{{Compat("api.XRBoundedReferenceSpace.boundsGeometry")}}</p> |