UNPKG

three.ar.js

Version:

A helper three.js library for building AR web experiences that run in WebARonARKit and WebARonARCore

261 lines (234 loc) 7.5 kB
<!-- /* * Copyright 2017 Google Inc. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <!DOCTYPE html> <html lang="en"> <head> <title>three.ar.js - Spawn At Camera</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <style> body { font-family: monospace; margin: 0; overflow: hidden; position: fixed; width: 100%; height: 100vh; -webkit-user-select: none; user-select: none; } #info { position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 0); margin: 1em; z-index: 10; display: block; line-height: 2em; text-align: center; } #info * { color: #fff; } .title { background-color: rgba(40, 40, 40, 0.4); padding: 0.4em 0.6em; border-radius: 0.1em; } .links { background-color: rgba(40, 40, 40, 0.6); padding: 0.4em 0.6em; border-radius: 0.1em; } canvas { position: absolute; top: 0; left: 0; } </style> </head> <body> <div id="info"> <span class="title">Tap to spawn objects at camera position.</span><br/> <span class="links"> <a href="https://github.com/google-ar/three.ar.js">three.ar.js</a> - <a href="https://developers.google.com/ar/develop/web/getting-started#examples">examples</a> </span> </div> <script src="../third_party/three.js/three.js"></script> <script src="../third_party/three.js/VRControls.js"></script> <script src="../dist/three.ar.js"></script> <script> var vrDisplay; var vrFrameData; var vrControls; var arView; var canvas; var camera; var scene; var renderer; var cube; var colors = [ new THREE.Color( 0xffffff ), new THREE.Color( 0xffff00 ), new THREE.Color( 0xff00ff ), new THREE.Color( 0xff0000 ), new THREE.Color( 0x00ffff ), new THREE.Color( 0x00ff00 ), new THREE.Color( 0x0000ff ), new THREE.Color( 0x000000 ) ]; /** * Use the `getARDisplay()` utility to leverage the WebVR API * to see if there are any AR-capable WebVR VRDisplays. Returns * a valid display if found. Otherwise, display the unsupported * browser message. */ THREE.ARUtils.getARDisplay().then(function (display) { if (display) { vrFrameData = new VRFrameData(); vrDisplay = display; init(); } else { THREE.ARUtils.displayUnsupportedMessage(); } }); function init() { // Turn on the debugging panel var arDebug = new THREE.ARDebug(vrDisplay); document.body.appendChild(arDebug.getElement()); // Setup the three.js rendering environment renderer = new THREE.WebGLRenderer({ alpha: true }); renderer.setPixelRatio(window.devicePixelRatio); console.log('setRenderer size', window.innerWidth, window.innerHeight); renderer.setSize(window.innerWidth, window.innerHeight); renderer.autoClear = false; canvas = renderer.domElement; document.body.appendChild(canvas); scene = new THREE.Scene(); // Creating the ARView, which is the object that handles // the rendering of the camera stream behind the three.js // scene arView = new THREE.ARView(vrDisplay, renderer); // The ARPerspectiveCamera is very similar to THREE.PerspectiveCamera, // except when using an AR-capable browser, the camera uses // the projection matrix provided from the device, so that the // perspective camera's depth planes and field of view matches // the physical camera on the device. camera = new THREE.ARPerspectiveCamera( vrDisplay, 60, window.innerWidth / window.innerHeight, vrDisplay.depthNear, vrDisplay.depthFar ); // VRControls is a utility from three.js that applies the device's // orientation/position to the perspective camera, keeping our // real world and virtual world in sync. vrControls = new THREE.VRControls(camera); // Create the cube geometry that we'll copy and place in the // scene when the user clicks the screen var geometry = new THREE.BoxGeometry( 0.05, 0.05, 0.05 ); var faceIndices = ['a', 'b', 'c']; for (var i = 0; i < geometry.faces.length; i++) { var f = geometry.faces[i]; for (var j = 0; j < 3; j++) { var vertexIndex = f[faceIndices[ j ]]; f.vertexColors[j] = colors[vertexIndex]; } } var material = new THREE.MeshBasicMaterial({ vertexColors: THREE.VertexColors }); cube = new THREE.Mesh(geometry, material); // Bind our event handlers window.addEventListener('resize', onWindowResize, false); canvas.addEventListener('touchstart', onClick, false); // Kick off the render loop! update(); } /** * The render loop, called once per frame. Handles updating * our scene and rendering. */ function update() { // Clears color from the frame before rendering the camera (arView) or scene. renderer.clearColor(); // Render the device's camera stream on screen first of all. // It allows to get the right pose synchronized with the right frame. arView.render(); // Update our camera projection matrix in the event that // the near or far planes have updated camera.updateProjectionMatrix(); // From the WebVR API, populate `vrFrameData` with // updated information for the frame vrDisplay.getFrameData(vrFrameData); // Update our perspective camera's positioning vrControls.update(); // Render our three.js virtual scene renderer.clearDepth(); renderer.render(scene, camera); // Kick off the requestAnimationFrame to call this function // when a new VRDisplay frame is rendered vrDisplay.requestAnimationFrame(update); } /** * On window resize, update the perspective camera's aspect ratio, * and call `updateProjectionMatrix` so that we can get the latest * projection matrix provided from the device */ function onWindowResize () { console.log('setRenderer size', window.innerWidth, window.innerHeight); camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); renderer.setSize(window.innerWidth, window.innerHeight); } /** * When clicking on the screen, create a cube at the user's * current position. */ function onClick () { // Fetch the pose data from the current frame var pose = vrFrameData.pose; // Convert the pose orientation and position into // THREE.Quaternion and THREE.Vector3 respectively var ori = new THREE.Quaternion( pose.orientation[0], pose.orientation[1], pose.orientation[2], pose.orientation[3] ); var pos = new THREE.Vector3( pose.position[0], pose.position[1], pose.position[2] ); var dirMtx = new THREE.Matrix4(); dirMtx.makeRotationFromQuaternion(ori); var push = new THREE.Vector3(0, 0, -1.0); push.transformDirection(dirMtx); pos.addScaledVector(push, 0.125); // Clone our cube object and place it at the camera's // current position var clone = cube.clone(); scene.add(clone); clone.position.copy(pos); clone.quaternion.copy(ori); } </script> </body> </html>