<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[AfterNow: Mixed Reality]]></title><description><![CDATA[AfterNow, augmented reality and virtual reality for communication, education & training]]></description><link>https://www.afternow.io/</link><image><url>https://www.afternow.io/favicon.png</url><title>AfterNow: Mixed Reality</title><link>https://www.afternow.io/</link></image><generator>Ghost 5.86</generator><lastBuildDate>Mon, 20 Apr 2026 18:48:12 GMT</lastBuildDate><atom:link href="https://www.afternow.io/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[Privacy-First AI Glasses with Local LLM: Open Source Setup on MentraOS]]></title><description><![CDATA[<figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/aTPmxqHStlE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="Your smart glasses are watching you. Here&apos;s how to stop them &#x2014; forever"></iframe></figure><p>I wanted to put MentraOS&apos;s open-source commitment to the test. So I decided to clone one of their official apps&#x2014;Mentra Note&#x2014;and host it locally on my DGX Spark at home.</p><p>Mentra Note is an audio memory app that transcribes everything the glasses hear and</p>]]></description><link>https://www.afternow.io/privacy-first-ai-glasses-with-local-llm-open-source-setup-on-mentraos/</link><guid isPermaLink="false">69e2d2b748c07280296fc1ab</guid><dc:creator><![CDATA[Philippe Lewicki]]></dc:creator><pubDate>Sat, 18 Apr 2026 00:43:03 GMT</pubDate><media:content url="https://www.afternow.io/content/images/2026/04/Mentra-live-unboxing-thumbnail.png" medium="image"/><content:encoded><![CDATA[<figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/aTPmxqHStlE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="Your smart glasses are watching you. Here&apos;s how to stop them &#x2014; forever"></iframe></figure><img src="https://www.afternow.io/content/images/2026/04/Mentra-live-unboxing-thumbnail.png" alt="Privacy-First AI Glasses with Local LLM: Open Source Setup on MentraOS"><p>I wanted to put MentraOS&apos;s open-source commitment to the test. So I decided to clone one of their official apps&#x2014;Mentra Note&#x2014;and host it locally on my DGX Spark at home.</p><p>Mentra Note is an audio memory app that transcribes everything the glasses hear and uses AI to create summary notes.</p><p>As part of this test, I made several changes: I switched to a local LLM and disabled all external data sharing.</p><h3 id="getting-started">Getting Started</h3><p>Check out the MentraOS developer docs to get started:<br><a href="https://docs.menttraglass.com/app-devs/getting-started/overview?ref=afternow.io">https://docs.menttraglass.com/app-devs/getting-started/overview</a></p><p>MentraOS offers a platform where the main MentraOS application manages and runs mini-apps built in JavaScript and React. These mini-apps can be hosted on your own server or computer.</p><p>A standout feature: MentraOS includes a built-in Speech-to-Text mobile app and shares it with the mini-app. This means you don&apos;t need to run your own STT model.</p><h3 id="how-mentra-note-works">How Mentra Note Works</h3><p>The Mentra Note app keeps the microphone open and listens for speech. When it detects speech, it grabs the transcription, saves it to the database, and summarizes it with AI.</p><h3 id="my-fork-of-mentra-note">My Fork of Mentra Note</h3><p>I created a fork of Mentra Note to add local-first capabilities:<br><a href="https://github.com/AfterNow/Mentra-Notes-local?ref=afternow.io">https://github.com/AfterNow/Mentra-Notes-local</a></p><p>I used OpenHands to automate the changes I wanted:<br><a href="https://github.com/AfterNow/Mentra-Notes-local/pull/2?ref=afternow.io">https://github.com/AfterNow/Mentra-Notes-local/pull/2</a></p><h3 id="what-changed">What Changed</h3><p>The original Mentra Note app uses Cloudflare R2 for file storage and Claude or Gemini for summarization. I made the following modifications:</p><ul><li><strong>Added local file storage</strong> &#x2014; replacing AWS and Cloudflare R2</li><li><strong>Added local LLM support</strong> &#x2014; using Ollama and llama.cpp</li><li><strong>Improved privacy</strong> &#x2014; removed all usage/analytics trackers to prevent data leaks</li></ul><h3 id="setting-up-llamacpp-on-my-dgx-spark">Setting Up llama.cpp on My DGX Spark</h3><p>I set up llama.cpp on my DGX Spark using these instructions: <br><a href="https://build.nvidia.com/spark/llama-cpp/instructions?ref=afternow.io">https://build.nvidia.com/spark/llama-cpp/instructions</a></p><p>After downloading the Gemma 4 model, I started the server with:</p><pre><code class="language-text">cd /home/afternow/app/llama.cpp/llama.cpp/build
./bin/llama-server \
  --model ~/models/gemma-4-31B-it-GGUF/gemma-4-31B-it-f16.gguf \
  --host 0.0.0.0 \
  --port 30000 \
  --n-gpu-layers 99 \
  --ctx-size 8192 \
  --threads 8
</code></pre><h3 id="mongodb-setup">MongoDB Setup</h3><p>I tried running the app without MongoDB, but that didn&apos;t work. So I started a Docker container with MongoDB:</p><pre><code class="language-bash">docker pull mongo
docker run --name mongodb-ainotes \
  -e MONGO_INITDB_ROOT_USERNAME=rootuser \
  -e MONGO_INITDB_ROOT_PASSWORD=rootpassword \
  -e MONGO_INITDB_DATABASE=ainotes \
  -p 27017:27017 \
  -d mongo --bind_ip_all
</code></pre><h3 id="development-workflow">Development Workflow</h3><p>OpenHands wrote the code and pushed it to GitHub. I pulled it into a dev container in VS Code to test.</p><p>To create an external HTTPS URL, I used Cloudflared and started a tunnel inside the Docker dev container.</p><h3 id="deploying-to-mentraos">Deploying to MentraOS</h3><p>Once I had a publicly accessible URL, I set up the app on the Mentra Developer Portal:<br><a href="https://console.mentraglass.com/?ref=afternow.io">https://console.mentraglass.com/</a></p><p><strong>Important:</strong> You need a web-accessible URL where your app is running&#x2014;whether on your computer or your own server. Mentra suggests using ngrok, but I used Cloudflare to create a tunnel from my Docker container:</p><pre><code class="language-bash">cloudflared tunnel run --token mytoken
</code></pre><p>In addition to a web-accessible URL, you&apos;ll also need a logo or icon for your app.</p><p>Once that&apos;s done, the app shows up in your MentraOS app.</p><h3 id="one-gotcha">One Gotcha</h3><p>After fixing a few bugs, I discovered an issue with the WebUI URL in the developer portal. It suggests a URL with <code>/webview/</code> at the end&#x2014;but for the AI Note app, this isn&apos;t needed. Removing it resolved the problem.</p><h3 id="final-thoughts">Final Thoughts</h3><p>It all worked, and I was impressed with the result. It&apos;s straightforward overall. Gemma 4 on the Spark is a bit slow, but it works.</p><h3 id="conclusion">Conclusion</h3><p>This experiment proved that a privacy-first AI glasses experience isn&apos;t just possible&#x2014;it&apos;s practical and accessible today.</p><p>With MentraOS&apos;s open platform, you&apos;re not locked into any single company&apos;s ecosystem. You can fork, modify, and self-host your own mini-apps. Your data never leaves your hardware. No cloud dependencies. No corporate surveillance.</p><p>The stack is simple: open-source glasses, open-source software, your own hardware. That&apos;s it.</p><p>If privacy matters to you&#x2014;and it should&#x2014;this is the path forward. The tools exist. The code is out there. All you need to do is take control.</p><p>Want to build your own privacy-first mini-app? Start with the MentraOS developer docs linked above. The community is growing, and contributions are welcome.</p><p><strong>What will you build?</strong></p>
<!--kg-card-begin: html-->
<div class="btn-read-more" style="margin-top:15px;margin-bottom:40px; display:flex; justify-content:center;"><a href="https://www.afternow.io/contact-us-today/">Contact Us</a></div>
<!--kg-card-end: html-->
]]></content:encoded></item><item><title><![CDATA[Prez Beta 2.0]]></title><description><![CDATA[Beta of Prez 2.0 is now available on Meta Quest with App Lab]]></description><link>https://www.afternow.io/prez-beta-2-0/</link><guid isPermaLink="false">634dd2dba338fd7ecac3ba80</guid><category><![CDATA[blog]]></category><dc:creator><![CDATA[Philippe Lewicki]]></dc:creator><pubDate>Mon, 31 Oct 2022 12:30:23 GMT</pubDate><media:content url="https://www.afternow.io/content/images/2022/10/beta2-announced.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://www.afternow.io/content/images/2022/10/beta2-announced.jpg" alt="Prez Beta 2.0"><p>Prez 2.0 is coming and available in beta on Meta Quest Applab.</p><p>A lot of new features and usability improvements. </p><h2 id="install-beta-2-on-quest">Install Beta 2 on Quest</h2><p>Prez 2.0 is available in Beta on Quest. </p><p>To install it on your Quest, go to the <a href="https://www.oculus.com/experiences/quest/3434684843326642/?ref=afternow.io">App Lab</a> page:</p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.oculus.com/experiences/quest/3434684843326642/?ref=afternow.io">
			Prez AppLab Page
		</a>
	</div>
</div><!--kg-card-end: html--><p>Once on the App Lab page, scroll down to <em>Additional Details</em>, and in the <em>Version</em>, select <strong>Beta_2.0</strong><br>That&apos;s it!, now put your Quest on, and in your library, upgrade Prez. <br>If it doesn&apos;t give you the option to upgrade, uninstall Prez and re-install it.</p><figure class="kg-card kg-image-card kg-width-wide kg-card-hascaption"><img src="https://www.afternow.io/content/images/2022/10/image-5.png" class="kg-image" alt="Prez Beta 2.0" loading="lazy" width="660" height="701" srcset="https://www.afternow.io/content/images/size/w600/2022/10/image-5.png 600w, https://www.afternow.io/content/images/2022/10/image-5.png 660w"><figcaption>On the AppLab page, select Beta 2.0 in the Version Section.</figcaption></figure><div class="kg-card kg-callout-card kg-callout-card-pink"><div class="kg-callout-emoji">&#x1F5A5;&#xFE0F;</div><div class="kg-callout-text">Prez Beta 2.0 is for testing purposes. <br>It uses our staging server for creating presentations. <br>You will need to create a new account at <a href="https://anprez-staging.afternow.io/?ref=afternow.io">https://anprez-staging.afternow.io/</a></div></div><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://anprez-staging.afternow.io/?ref=afternow.io">
			Register for a Beta account
		</a>
	</div>
</div><!--kg-card-end: html--><h2 id="new-features">New Features</h2><p>Here are a few of the new features on Prez 2.0 </p><h3 id="new-home-with-featured-presentations">New home with featured presentations</h3><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://www.afternow.io/content/images/2022/10/image.png" class="kg-image" alt="Prez Beta 2.0" loading="lazy" width="1920" height="1080" srcset="https://www.afternow.io/content/images/size/w600/2022/10/image.png 600w, https://www.afternow.io/content/images/size/w1000/2022/10/image.png 1000w, https://www.afternow.io/content/images/size/w1600/2022/10/image.png 1600w, https://www.afternow.io/content/images/2022/10/image.png 1920w" sizes="(min-width: 720px) 720px"><figcaption>Prez new home page</figcaption></figure><p>Now when you open Prez, you can directly start watching one of the six featured presentations. &#xA0;We rotate the presentation monthly for now. If you have an excellent presentation you think should be featured, please get in touch with us.</p><h3 id="new-hand-and-controller-menus">New hand and controller menus</h3><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://www.afternow.io/content/images/2022/10/image-1.png" class="kg-image" alt="Prez Beta 2.0" loading="lazy" width="1920" height="1080" srcset="https://www.afternow.io/content/images/size/w600/2022/10/image-1.png 600w, https://www.afternow.io/content/images/size/w1000/2022/10/image-1.png 1000w, https://www.afternow.io/content/images/size/w1600/2022/10/image-1.png 1600w, https://www.afternow.io/content/images/2022/10/image-1.png 1920w" sizes="(min-width: 720px) 720px"><figcaption>Prez new menus</figcaption></figure><p>Now all the features are available directly in the palms of your hands. &#xA0;</p><h3 id="background-environment-editor">Background &amp; environment editor</h3><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://www.afternow.io/content/images/2022/10/image-2.png" class="kg-image" alt="Prez Beta 2.0" loading="lazy" width="1920" height="1080" srcset="https://www.afternow.io/content/images/size/w600/2022/10/image-2.png 600w, https://www.afternow.io/content/images/size/w1000/2022/10/image-2.png 1000w, https://www.afternow.io/content/images/size/w1600/2022/10/image-2.png 1600w, https://www.afternow.io/content/images/2022/10/image-2.png 1920w" sizes="(min-width: 720px) 720px"><figcaption>Prez new UI concept to position &amp; scale the 3D environment</figcaption></figure><p>You can now upload a 3D model and 360 pictures to create compelling environments for your presentation. We create a new in-device editor that will allow you to scale and place the environment and the ability to rotate the 360 pictures.</p><h3 id="new-elements-manipulations">New elements manipulations</h3><p>We have redesigned the interface and logic for scaling and placing 3D models in 3D space. The new features are designed to make it easier and faster to place objects in your presentation.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://www.afternow.io/content/images/2022/10/image-3.png" class="kg-image" alt="Prez Beta 2.0" loading="lazy" width="1258" height="588" srcset="https://www.afternow.io/content/images/size/w600/2022/10/image-3.png 600w, https://www.afternow.io/content/images/size/w1000/2022/10/image-3.png 1000w, https://www.afternow.io/content/images/2022/10/image-3.png 1258w" sizes="(min-width: 720px) 720px"><figcaption>Lock, Undo and Snapping is now available in the hand menu.</figcaption></figure><h3 id="emoji">Emoji</h3><p>During a live presentation, you can send emojis to the rest of the audience to express your current mood or emotion.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://www.afternow.io/content/images/2022/10/image-4.png" class="kg-image" alt="Prez Beta 2.0" loading="lazy" width="545" height="180"><figcaption>Emoji</figcaption></figure><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.oculus.com/experiences/quest/3434684843326642/?ref=afternow.io">
			Add Prez Beta 2.0 on your Quest
		</a>
	</div>
</div><!--kg-card-end: html--><p></p>]]></content:encoded></item><item><title><![CDATA[[Webminar] Successful AR/VR experience for tradeshows]]></title><description><![CDATA[New technologies are now making it affordable and valuable to create immersive experiences for your trade show booth or experience center.
This free one-hour learning session will share our experience creating successful immersive experiences at live events and tradeshows.]]></description><link>https://www.afternow.io/webminar-successful-ar-vr-experience-for-tradeshows/</link><guid isPermaLink="false">63337a4bd107b21d2401e478</guid><category><![CDATA[Live-Event]]></category><category><![CDATA[events]]></category><dc:creator><![CDATA[Philippe Lewicki]]></dc:creator><pubDate>Wed, 28 Sep 2022 00:00:14 GMT</pubDate><media:content url="https://www.afternow.io/content/images/2022/09/AN-Rez-SprintPCS-1080p.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://www.afternow.io/content/images/2022/09/AN-Rez-SprintPCS-1080p.jpg" alt="[Webminar] Successful AR/VR experience for tradeshows"><p>New technologies are now making it affordable and valuable to create immersive experiences for your trade show booth or experience center.</p><h3 id="join-us-on-wednesday-5th-of-october-for-a-learning-session-on-creating-ar-or-vr-experiences-to-increase-sales">Join us on Wednesday 5th of October for a learning session on creating AR or VR experiences to increase sales.</h3><!--kg-card-begin: html--><div class="atcb" style="display:none;">
  {
    &quot;name&quot;:&quot;AR/VR for tradeshows&quot;,
    &quot;description&quot;:&quot;Zoom and VR learning session on creating successfull immersive experiences for tradeshows.  [url]https://www.afternow.click/webminar-successful-ar-vr-experience-for-tradeshows/[/url]&quot;,
    &quot;startDate&quot;:&quot;2022-10-05&quot;,
    &quot;endDate&quot;:&quot;2022-10-05&quot;,
    &quot;startTime&quot;:&quot;09:30&quot;,
    &quot;endTime&quot;:&quot;10:30&quot;,
    &quot;location&quot;:&quot;Prez ID 53669599&quot;,
    &quot;label&quot;:&quot;Add to Calendar&quot;,
    &quot;options&quot;:[
      &quot;Apple&quot;,
      &quot;Google&quot;,
      &quot;iCal&quot;,
      &quot;Microsoft365&quot;,
      &quot;MicrosoftTeams&quot;,
      &quot;Outlook.com&quot;,
      &quot;Yahoo&quot;
    ],
    &quot;timeZone&quot;:&quot;America/Los_Angeles&quot;,
    &quot;timeZoneOffset&quot;:&quot;-07:00&quot;,
    &quot;trigger&quot;:&quot;click&quot;,
    &quot;iCalFileName&quot;:&quot;Reminder-Event&quot;
  }
</div><!--kg-card-end: html--><p>This free one-hour learning session will share our experience creating successful immersive experiences at live events and tradeshows. <br>We will use new hybrid technology so that you can join the free session from your Quest, Hololens, or regular computer with Zoom.</p><p>Join us for a memorable and instructive experience. </p><h2 id="registration">Registration</h2><p>Register with the form below, it&apos;s free, but space is limited. &#xA0;Lock your seat today.</p><!--kg-card-begin: html--><script type="text/javascript" src="//marketing.afternow.io/form/generate.js?id=21"></script><!--kg-card-end: html--><h2 id="topic-covered">Topic covered</h2><!--kg-card-begin: markdown--><ul>
<li>Benefits of VR/AR experiences
<ul>
<li>Dedicated attention</li>
<li>Memorable experience</li>
<li>Increase perceived value</li>
<li>Extend engagement post-show</li>
</ul>
</li>
<li>Setup and User Experience
<ul>
<li>User Flow</li>
<li>Line and wait time</li>
<li>Hardware setup &amp; charging</li>
<li>Sales support</li>
<li>Headset cleanup</li>
<li>Display on TV the experience</li>
</ul>
</li>
<li>Most effective experiences
<ul>
<li>Multi-user table-top visualizations</li>
<li>Narrative immersive tours</li>
<li>Detail product descriptions</li>
<li>Large &amp; complex products</li>
<li>Data visualizations</li>
</ul>
</li>
</ul>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[AfterNow Prez for Education]]></title><description><![CDATA[Prez for educators features an interface based on traditional tools like Google Slides and PowerPoint. With a minimal learning curve, to bring course materials into virtual reality.]]></description><link>https://www.afternow.io/afternow-prez-for-education/</link><guid isPermaLink="false">60f9aad356ebec3a51c80c8e</guid><category><![CDATA[education]]></category><category><![CDATA[blog]]></category><category><![CDATA[Solutions]]></category><dc:creator><![CDATA[Anne McKinnon]]></dc:creator><pubDate>Thu, 08 Sep 2022 12:29:12 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1637317957434-16798e804fdf?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDMwfHx2aXJ0dWFsfGVufDB8fHx8MTY2NjI5MDA1MA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1637317957434-16798e804fdf?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDMwfHx2aXJ0dWFsfGVufDB8fHx8MTY2NjI5MDA1MA&amp;ixlib=rb-4.0.3&amp;q=80&amp;w=2000" alt="AfterNow Prez for Education"><p>AfterNow <em>Prez </em>is an end-to-end software solution for making and distributing curriculum in augmented reality and virtual reality. </p><p><em>Prez </em>for educators features a drag &amp; drop interface based on traditional tools like Google Slides and PowerPoint. With seamless onboarding and a minimal learning curve, it&#x2019;s easy to bring course material into a new dimension. </p><figure class="kg-card kg-image-card"><img src="https://www.afternow.io/content/images/2022/08/AboutPage-Headsets2-1.png" class="kg-image" alt="AfterNow Prez for Education" loading="lazy" width="2000" height="380" srcset="https://www.afternow.io/content/images/size/w600/2022/08/AboutPage-Headsets2-1.png 600w, https://www.afternow.io/content/images/size/w1000/2022/08/AboutPage-Headsets2-1.png 1000w, https://www.afternow.io/content/images/size/w1600/2022/08/AboutPage-Headsets2-1.png 1600w, https://www.afternow.io/content/images/2022/08/AboutPage-Headsets2-1.png 2000w" sizes="(min-width: 720px) 720px"></figure><p>There are many reasons why transitioning from 2D to 3D learning is beneficial to educators and students alike: </p><h2 id="preparing-course-material-is-as-easy-as-drag-drop">Preparing Course Material is as Easy as Drag &amp; Drop</h2><p>Rather than creating text-heavy and time-consuming powerpoints, use only visuals and a few keywords for each lesson segment. </p><p>Just as you save a .jpeg or .png, then drag and drop it into a 2D presentation, it&#x2019;s possible to find ready-made, freely accessible. Pre-animated 3D assets through platforms like <a href="https://sketchfab.com/feed?ref=afternow.io">Sketchfab</a>, the process is the same for AfterNow <em>Prez</em> to drag and drop 3D assets. &#xA0;</p><p>The only difference? Improved delivery of a lesson and less work to do so. </p><figure class="kg-card kg-image-card"><a href="https://www.afternow.io/mini-virtual-reality-class-to-engage-students/"><img src="https://www.afternow.io/content/images/2022/08/Virtual-reality-solar-system-presentation-3.png" class="kg-image" alt="AfterNow Prez for Education" loading="lazy" width="1135" height="720" srcset="https://www.afternow.io/content/images/size/w600/2022/08/Virtual-reality-solar-system-presentation-3.png 600w, https://www.afternow.io/content/images/size/w1000/2022/08/Virtual-reality-solar-system-presentation-3.png 1000w, https://www.afternow.io/content/images/2022/08/Virtual-reality-solar-system-presentation-3.png 1135w" sizes="(min-width: 720px) 720px"></a></figure><p>For example, demonstrate scale, color, positioning, movement, and contrast by using ready-made 3D assets. See below for a model of the solar system that conveys in one 3D experience what would otherwise in a 2D presentation require numerous bullet points, text, and image blocks to deliver the same lesson. </p><p>The same principles apply to science, math, literature, engineering, history, architecture, computer science, medicine, economics, and the law. </p><p>Create course material with simple drag &amp; drop templates and short text blurbs to save time and deliver education with impact.</p><!--kg-card-begin: html--><div class="sketchfab-embed-wrapper"> <iframe title="Magnetic Field of Solenoid by yuyalyj" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/70e36fd97e234c4a8f326e62191c02c2/embed"> </iframe> <p style="font-size: 13px; font-weight: normal; margin: 5px; color: #4A4A4A;"> <a href="https://sketchfab.com/3d-models/magnetic-field-of-solenoid-by-yuyalyj-70e36fd97e234c4a8f326e62191c02c2?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=70e36fd97e234c4a8f326e62191c02c2&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> Magnetic Field of Solenoid by yuyalyj </a> by <a href="https://sketchfab.com/yuyalyj?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=70e36fd97e234c4a8f326e62191c02c2&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> yuyalyj </a> on <a href="https://sketchfab.com/?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=70e36fd97e234c4a8f326e62191c02c2&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;">Sketchfab</a></p></div><!--kg-card-end: html--><h2 id="all-students-receive-a-one-on-one-session">All Students Receive a One-On-One Session</h2><p>Our software enables educators to simultaneously deliver a premium one-on-one lesson to any number of students. When students enter your presentation, they are immediately situated in a custom, distraction-free, and avatar-free learning environment. </p><p>Every student sees content from the same point of view and hears the same audio quality. </p><p>When you raise your hand in AfterNow <em>Prez</em>, your hand movement is recognized, and the presenter is notified. No need to discover a menu or become distracted by complex interfaces. The entire focus remains on the lesson being presented. <br>As everyone becomes a digital native, particularly generations entering their first year of higher education, top-tier universities will need to accelerate digital adoption to remain relevant throughout the education lifecycle. </p><figure class="kg-card kg-image-card kg-card-hascaption"><a href="https://www.gessleaders.com/steve-bambury?ref=afternow.io"><img src="https://www.afternow.io/content/images/2022/08/Key-Benefits-of-vr-education.jpg" class="kg-image" alt="AfterNow Prez for Education" loading="lazy" width="1280" height="720" srcset="https://www.afternow.io/content/images/size/w600/2022/08/Key-Benefits-of-vr-education.jpg 600w, https://www.afternow.io/content/images/size/w1000/2022/08/Key-Benefits-of-vr-education.jpg 1000w, https://www.afternow.io/content/images/2022/08/Key-Benefits-of-vr-education.jpg 1280w" sizes="(min-width: 720px) 720px"></a><figcaption>Benefits of VR in Education: Image: Steve Bambury</figcaption></figure><p>Recruiters from Fortune 500 firms are looking for talent who can prepare their company for the next paradigm shift in how we live and work, with augmented reality, virtual reality, and 3D thinking playing a crucial role in day-to-day proceedings. </p><p>Presentations are central to communicating information. It all starts with that first step and a principle ingrained in AfterNow Prez&apos;s features: clear and concise messaging designed for immediate and long-lasting comprehension. </p><p>With AfterNow <em>Prez</em>, deliver a one-on-one lesson to any number of students simultaneously, and prepare your students to become leaders in a 3D digitized world. </p><!--kg-card-begin: html--><div class="sketchfab-embed-wrapper"> <iframe title="Medieval Church, Calatrava la Nueva, Spain" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/171a047c08bc4dd588cca5ac744e8065/embed?ui_inspector=0&amp;ui_theme=dark"> </iframe> <p style="font-size: 13px; font-weight: normal; margin: 5px; color: #4A4A4A;"> <a href="https://sketchfab.com/3d-models/medieval-church-calatrava-la-nueva-spain-171a047c08bc4dd588cca5ac744e8065?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=171a047c08bc4dd588cca5ac744e8065&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> Medieval Church, Calatrava la Nueva, Spain </a> by <a href="https://sketchfab.com/GlobalDigitalHeritage?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=171a047c08bc4dd588cca5ac744e8065&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> Global Digital Heritage </a> on <a href="https://sketchfab.com/?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=171a047c08bc4dd588cca5ac744e8065&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;">Sketchfab</a></p></div><!--kg-card-end: html--><h2 id="equal-learning-opportunity-for-on-campus-and-remote-students">Equal Learning Opportunity for On-Campus and Remote Students</h2><p>Augmented reality and virtual reality presentations made with AfterNow <em>Prez </em>can be delivered live, pre-recorded, and self-guided. For educators and students alike, this enables the material to be prepared and delivered at any moment, anywhere, with no disadvantage for students joining remotely. </p><p>Whether on campus or engaging through remote learning, every student has the same opportunity to receive a high-quality education. </p><p>The onboarding process is seamless for students, with even fewer steps when compared to logging in through an on-campus or remote-learning portal. Students can put on their headsets, select the app for AfterNow <em>Prez</em>, enter the course&#x2019;s unique presentation code, and begin their journey. </p><p>These are only a few of the benefits that 3D presentations bring to educators, students, and even educational institutions that gain a competitive advantage and more distinct positioning in the market. </p><p>From complex post-doctorate material to elementary level courses, AfterNow <em>Prez </em>equips educators with the tools needed to make and deliver premium curriculum in augmented reality and virtual reality. </p><!--kg-card-begin: html--><div class="sketchfab-embed-wrapper"> <iframe title="Animated Human Body with circulatory system" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/6a7a537a71444f6e8201e18a685a013d/embed"> </iframe> <p style="font-size: 13px; font-weight: normal; margin: 5px; color: #4A4A4A;"> <a href="https://sketchfab.com/3d-models/animated-human-body-with-circulatory-system-6a7a537a71444f6e8201e18a685a013d?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=6a7a537a71444f6e8201e18a685a013d&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> Animated Human Body with circulatory system </a> by <a href="https://sketchfab.com/AVRcontent?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=6a7a537a71444f6e8201e18a685a013d&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> AVRcontent </a> on <a href="https://sketchfab.com/?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=6a7a537a71444f6e8201e18a685a013d&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;">Sketchfab</a></p></div>
<!--kg-card-end: html--><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/book-a-demo/">
			Request a demo
		</a>
	</div>
</div><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[AfterNow Prez for Sales: Virtual Reality and Augmented Reality Presentations]]></title><description><![CDATA[Innovative sales strategies are more in demand from investors, partners, and customers. AR/VR presentations provide your audience with a one-of-a-kind and memorable experience that stands out from the competition, showing that your approach and vision are ahead of the curve.]]></description><link>https://www.afternow.io/afternow-prez-for-sales-virtual-reality-and-augmented-reality-presentations/</link><guid isPermaLink="false">60feae8556ebec3a51c80cba</guid><category><![CDATA[Solutions]]></category><category><![CDATA[blog]]></category><dc:creator><![CDATA[Anne McKinnon]]></dc:creator><pubDate>Tue, 05 Jul 2022 23:51:49 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1518135714426-c18f5ffb6f4d?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDR8fGhhbmQlMjBzaGFrZXxlbnwwfHx8fDE2NjUxNjMzNTI&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1518135714426-c18f5ffb6f4d?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDR8fGhhbmQlMjBzaGFrZXxlbnwwfHx8fDE2NjUxNjMzNTI&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" alt="AfterNow Prez for Sales: Virtual Reality and Augmented Reality Presentations"><p>AfterNow <em>Prez </em>is a software suite that lets anyone create stunning augmented reality and virtual reality presentations. </p><p>Our code-free, drag and drop interface resembles Microsoft Office PowerPoint and Google Slides, making it seamless to bring your sales pipeline into a new dimension. </p><p>Use ready-made 3D assets from online stores like Sketchfab, or import custom assets. </p><p>Innovative sales strategies are more in demand from investors, partners, and customers. Augmented reality and virtual reality presentations provide your audience with a one-of-a-kind and memorable experience that stands out from the competition, showing that your approach and vision are ahead of the curve. <br></p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/CbFOVU5DR8A?start=4&amp;feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><h2 id="when-to-use-augmented-reality-and-virtual-reality-for-sales">When to use Augmented Reality and Virtual Reality for Sales</h2><p>Augmented reality and virtual reality presentations for sales are best used to demonstrate complex designs and bulky products that would otherwise be expensive to ship or show like cars, yachts, factory machinery, and medical devices. </p><p>Ideal use cases include internal sales initiatives, such as onboarding new sales representatives, and business development associates, and preparing teams for conferences and events where your company will have just a few days to make an impression with the global market. </p><p>AR and VR presentations are also valuable when it comes to showcasing data that can be a key part of the decision-making process. Show cost savings, ROI, energy consumption in comparison to competitors, or the lifetime of components and business impact, or even market projections and opportunity. These concepts can be difficult to communicate in a high-stakes sales meeting or on the sales floor, but in augmented reality and virtual reality, data in proportionate scale and color is comprehensible at a single glance.</p><figure class="kg-card kg-image-card"><img src="https://www.afternow.io/content/images/2022/07/nasa-Q1p7bh3SHj8-unsplash.jpg" class="kg-image" alt="AfterNow Prez for Sales: Virtual Reality and Augmented Reality Presentations" loading="lazy" width="2000" height="1331" srcset="https://www.afternow.io/content/images/size/w600/2022/07/nasa-Q1p7bh3SHj8-unsplash.jpg 600w, https://www.afternow.io/content/images/size/w1000/2022/07/nasa-Q1p7bh3SHj8-unsplash.jpg 1000w, https://www.afternow.io/content/images/size/w1600/2022/07/nasa-Q1p7bh3SHj8-unsplash.jpg 1600w, https://www.afternow.io/content/images/size/w2400/2022/07/nasa-Q1p7bh3SHj8-unsplash.jpg 2400w" sizes="(min-width: 720px) 720px"></figure><h2 id="the-future-of-sales-is-3d">The Future of Sales is 3D</h2><p>Audiences are interacting with 3D content more and more, and expect to see it as a part of the consumer experience or sales process. According to the 2021 report by Snap and Deloitte, Ar boasts a 94% higher conversion rate, and 76% of people expect and desire to use AR as a practical tool in their everyday lives. </p><p>Further, research by the University of Maryland shows a 10% higher recall achieved with AR and VR content and that 85% of augmented reality and virtual reality presenters agree that immersive presentations have a positive impact on their audiences. </p><p>Technavio released in-depth market research of AR and VR, predicting that the market growth in AR and VR will accelerate at a CAGR of almost 46%:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://www.afternow.io/content/images/2022/07/Technavio_AR_and_VR_Market.jpg" class="kg-image" alt="AfterNow Prez for Sales: Virtual Reality and Augmented Reality Presentations" loading="lazy" width="999" height="562" srcset="https://www.afternow.io/content/images/size/w600/2022/07/Technavio_AR_and_VR_Market.jpg 600w, https://www.afternow.io/content/images/2022/07/Technavio_AR_and_VR_Market.jpg 999w" sizes="(min-width: 720px) 720px"><figcaption>Technavio has announced its latest market research report titled Augmented Reality and Virtual Reality Market by Technology and Geography - Forecast and Analysis 2021-2025</figcaption></figure><p>Especially in the last year, our digital habits have changed. Digital innovation strategies that were previously thought to take five years, have already taken place. Sales teams, their customers, calls, and conferences are happening online and remote more than ever before, a trend that will continue. </p><p>Having a highly effective sales strategy to stay ahead of the competition means integrating virtual reality and augmented reality into the sales pipeline, training key stakeholders, and deploying AR and VR headsets in the workplace to easily make impactful 3D presentations, practice delivery, and ship for high-value sales presentations. </p><p>AfterNow Prez seamlessly integrates into sales processes. Sign up for a demo, and start making AR and VR presentations today, or work with our team for bespoke presentations. <br></p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/book-a-demo/">
			Request a demo
		</a>
	</div>
</div>
<!--kg-card-end: html--><p>We also offer a 3D thinking workshop to get your team ready to take your sales into a new dimension. &#xA0;<br></p><p></p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/contact-us-today/">
			Contact Us
		</a>
	</div>
</div>
<!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[Virtual Reality and Augmented Reality for Museums and Exhibitions]]></title><description><![CDATA[Augmented reality and virtual reality are the first mediums that allow visitors to fully immerse in an experience. Whether the Cambrian Age, the first cities emerging in Mesopotamia, or maybe events even closer to the present day like World War II,  we can relive moments in time and space.]]></description><link>https://www.afternow.io/virtual-reality-and-augmented-reality-for-museums-and-exhibitions/</link><guid isPermaLink="false">612fd6f156ebec3a51c80e90</guid><category><![CDATA[blog]]></category><category><![CDATA[Solutions]]></category><dc:creator><![CDATA[Anne McKinnon]]></dc:creator><pubDate>Tue, 05 Jul 2022 22:34:22 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1513038630932-13873b1a7f29?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDR8fG11c2V1bXxlbnwwfHx8fDE2NTcwNjAyMTE&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1513038630932-13873b1a7f29?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDR8fG11c2V1bXxlbnwwfHx8fDE2NTcwNjAyMTE&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" alt="Virtual Reality and Augmented Reality for Museums and Exhibitions"><p>The best way to capture the past is to leverage the capabilities of the future. New tools and technologies enable us to tell stories in new ways, bringing content to life in a context that is most natural to the way we experience the world&#x2014; in three dimensions. </p><p>Augmented reality and virtual reality are the first mediums that allow visitors to fully immerse in an experience. Whether the Cambrian Age, the first cities emerging in Mesopotamia, or maybe events even closer to the present day like World War II, &#xA0;we can relive moments in time and space with augmented reality and virtual reality, or see things from new perspectives like scale and size in science and analytics. </p><p>With the recent developments in computing technology such as faster processing speeds, the miniaturization of hardware, and advances in display technology, virtual reality and augmented reality are already being deployed across numerous cultural applications.</p><p>In this blog post, we&#x2019;ll outline the core benefits of using augmented reality and virtual reality for museums and exhibitions.</p><figure class="kg-card kg-embed-card"><div class="sketchfab-embed-wrapper">
    <iframe title class width="640" height="360" src="https://sketchfab.com/models/6c9ddaafbe8946378283a612606730fd/embed" frameborder="0" allow="autoplay; fullscreen; vr" allowvr allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true"></iframe></div></figure><h2 id="why-use-augmented-reality-and-virtual-reality-for-museums-and-exhibitions"><br>Why use Augmented Reality and Virtual Reality for Museums and Exhibitions?</h2><p>Technology isn&#x2019;t just adding new elements to museums and exhibitions, it&#x2019;s challenging the very idea of what it means to be a museum or exhibition today by bringing the past to life, and adding new perspectives to the present. </p><figure class="kg-card kg-embed-card"><div class="sketchfab-embed-wrapper">
    <iframe title class width="640" height="360" src="https://sketchfab.com/models/012ae83b8d9045468b30584883149035/embed" frameborder="0" allow="autoplay; fullscreen; vr" allowvr allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true"></iframe></div></figure><p>In this section, we&#x2019;ll look at a few core benefits of using AR and VR for museums and exhibitions:</p><h3 id="revitalize-existing-content-and-create-new-experiences">Revitalize Existing Content and Create New Experiences </h3><p>Formerly passive spaces, technology is adding new elements of interactivity and entertainment, where audiences are active participants, gaining a deeper understanding of history and where we might be going in the future. </p><p>Overlay existing exhibitions with informative content and audiovisual narrative. With AR and VR, audiences can pass through an immersive museum or exhibition on their own time, with a personalized experience that caters to their interests, knowledge, language, and level of comprehension. </p><p>Moving from one marker to another where digital experiences are activated, audiences become deeply engaged in content and emotionally invested in the narrative, forming a long lasting impression that encourages audiences to share their experience and attract more visitors. &#xA0;<br></p><p>It&#x2019;s not just the experience that counts, but what happens afterwards too via experience and knowledge sharing that revitalizes culture, and the museum and exhibition economy.</p><figure class="kg-card kg-embed-card"><div class="sketchfab-embed-wrapper">
    <iframe title class width="640" height="360" src="https://sketchfab.com/models/734844933f4642999f0ef284ecd4d184/embed" frameborder="0" allow="autoplay; fullscreen; vr" allowvr allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true"></iframe></div></figure><h3 id="bring-narratives-to-life"><br>Bring Narratives To Life <br></h3><p>In addition to creating richer learning experiences by immersing audiences in digital environments, AR and VR present entirely new ways for audiences to experience existing content by bringing age-old narratives to life. </p><p>While much of history is lost to time, physical remnants like fossils, ornaments, tools, art and architecture remain. Blur the lines between the real and digital by blending augmented reality and virtual reality content with physical elements. </p><p>Allow audiences to go to places that were previously inaccessible, like tombs, protected sites, places in the world that no longer exist or, to see relics that are extremely rare, and visit potentially dangerous places. </p><p>In augmented reality, create audiovisual stories that compliment physical spaces. With virtual reality, design physical spaces that audiences can touch, bringing digital content to life. </p><p>It&#x2019;s through our senses that we experience the world. Adding multisensory elements to augmented reality and virtual reality transports your audience to other places and times, creating an entirely new simulated reality. </p><p>Digital scans of people, objects or places revive history. Capture traditions of peoples from across the world. Bring credibility to content by recreating historical figures, enabling them to share the stories they fought for during their time.</p><figure class="kg-card kg-embed-card"><div class="sketchfab-embed-wrapper">
    <iframe title class width="640" height="360" src="https://sketchfab.com/models/30f43907f7814582b5dacbbadbabbe6d/embed" frameborder="0" allow="autoplay; fullscreen; vr" allowvr allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true"></iframe></div></figure><h3 id="achieve-unparalleled-accuracy"><br>Achieve Unparalleled Accuracy <br></h3><p>Museums and exhibitions inform how we situate ourselves in the world, and our understanding of it. Huge amounts of research goes into recreating natural history and scientific demonstrations, and even animating extinct creatures or creating historical sets. </p><p>Today, 3D scanning technology is incredibly precise. Computing power is accurate enough to handle highly detailed content, with the power to take audiences to places that no longer exist. </p><p>As 3D scanning technology and 3D tools become commonplace, so does the availability of highly accurate models, and creators who are able to make custom assets. </p><p>Augmented reality and virtual reality take things to the next level, where designs can be recreated with ultimate precision using game engines, and highly accurate animation can be done based on algorithms or motion capture. </p><p>Already, doctors are using augmented reality and virtual reality to explore the human body- just one indication of how ready the technology is for advanced and high stakes applications.</p><figure class="kg-card kg-embed-card"><div class="sketchfab-embed-wrapper">
    <iframe title class width="640" height="360" src="https://sketchfab.com/models/385c083f2f734b78ad4bddbb1c305fcf/embed" frameborder="0" allow="autoplay; fullscreen; vr" allowvr allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true"></iframe></div></figure><p><br><strong>Setting up Your Gallery with Augmented Reality or Virtual Reality</strong></p><p>In terms of setup at a gallery or exhibition, we recommend three simple steps of the process: </p><ol><li>Create a prep room where people are fitted with the HoloLens or other device</li><li>Next, audiences enter the exhibition space to physical and virtual elements that can be elements can be pictures, videos, 3D models, animations, or 3D volumetric captures (depending on the goal of the exhibit)</li><li>Finally, create an exit area where visitors can leave the HoloLens or other device with a staff member who returns it for charging and the next group of visitors</li></ol><p>Just like that, your museum or exhibition augmented reality or virtual reality experience is ready to go! Not only that, but there&#x2019;s no demand on visitors other than to walk and look&#x2014; a familiar part of the visitor journey.</p><h2 id="start-today-with-afternow-prez">Start Today with AfterNow Prez</h2><p>There&#x2019;s a world of opportunity with AR and VR to compliment existing spaces, adding new elements of interactivity, enhancing storytelling and knowledge dissemination, and showcasing historical and scientific elements with the utmost accuracy. </p><p>With AfterNow Prez, easily make and distribute augmented reality and virtual reality content for galleries and exhibitions with a drag and drop interface that resembles familiar programs like Microsoft PPT or Google Slides. Drag &amp; drop 3D assets, audio, and text and iterate just as easily, with updates published in real time. </p><p>Get started today, or work directly with our team. As your exhibition or museum develops, easily iterate, update, adjust or change content along the way.</p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/contact-us-today/">
			Contact Us
		</a>
	</div>
</div><!--kg-card-end: html--><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/book-a-demo/">
			Request a demo
		</a>
	</div>
</div><!--kg-card-end: html--><p><br></p>]]></content:encoded></item><item><title><![CDATA[3D Presentations: Why Are They Better?]]></title><description><![CDATA[What are the benefits of using AR and VR to communicate and create presentations? How does it compare with current 2D presentations? ]]></description><link>https://www.afternow.io/3d-presentations-why-are-they-better-2/</link><guid isPermaLink="false">62b3acab453d7d72d0b6b9c4</guid><category><![CDATA[blog]]></category><category><![CDATA[3D Thinking]]></category><dc:creator><![CDATA[Anne McKinnon]]></dc:creator><pubDate>Thu, 23 Jun 2022 00:48:21 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1557804506-669a67965ba0?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDN8fHByZXNlbnRpbmd8ZW58MHx8fHwxNjU1OTQyNjU2&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1557804506-669a67965ba0?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8c2VhcmNofDN8fHByZXNlbnRpbmd8ZW58MHx8fHwxNjU1OTQyNjU2&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" alt="3D Presentations: Why Are They Better?"><p>In this blog post, we will outline four key benefits of augmented reality and virtual reality as a medium for presentations. We will also look at market growth and industry reports on AR and VR as an indication of urgency to implement 3D communication strategies across high-stakes meetings, sales, and conference presentations.</p><h2 id="3d-thinking-the-benefits-of-augmented-reality-and-virtual-reality">3D Thinking: The Benefits of Augmented Reality and Virtual Reality</h2><p>There are many benefits to using augmented reality and virtual reality as a tool for presentations:</p><h3 id="ar-and-vr-is-more-effective-than-2d-presentations">AR and VR is More Effective than 2D Presentations</h3><p>Presenting 3D visual material means that content can be better understood. Interactive 3D models improve engagement, comprehension, and recall.</p><p>By presenting information visually first, audiences have access to a more accurate picture of new or complex concepts and can grasp information quickly, providing an in-depth understanding of a concept and its applications in real life.</p><p>In a <a href="https://www.businesswire.com/news/home/20160627005621/en?ref=afternow.io">survey conducted by Samsung</a>, <strong>85% of teachers agreed that VR will have a positive effect on students and 68% of teachers said they want to use VR</strong> to supplement course curriculum to help students better understand course concepts. The same principles apply when delivering a presentation in a commercial setting.</p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/install-prez-and-watch-your-first-presentation/">
			Get Started! Watch your first presentation
		</a>
	</div>
</div><!--kg-card-end: html--><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://www.afternow.io/content/images/2022/06/vlcsnap-2020-11-12-18h24m15s302.png" class="kg-image" alt="3D Presentations: Why Are They Better?" loading="lazy" width="1920" height="1080" srcset="https://www.afternow.io/content/images/size/w600/2022/06/vlcsnap-2020-11-12-18h24m15s302.png 600w, https://www.afternow.io/content/images/size/w1000/2022/06/vlcsnap-2020-11-12-18h24m15s302.png 1000w, https://www.afternow.io/content/images/size/w1600/2022/06/vlcsnap-2020-11-12-18h24m15s302.png 1600w, https://www.afternow.io/content/images/2022/06/vlcsnap-2020-11-12-18h24m15s302.png 1920w" sizes="(min-width: 720px) 720px"><figcaption>3D body hologram</figcaption></figure><h3 id="improved-memory-stronger-emotional-reactions-are-created-in-immersive-environments">Improved Memory: Stronger Emotional Reactions are Created in Immersive Environments</h3><p>Immersive experiences involving our senses affect our ability to form memories and emotions. Learning effectiveness is strongly correlated with engagement in these areas, where targeting the senses reinforces neural connections to develop our long-term memory.</p><p>A<a href="https://link.springer.com/article/10.1007/s10055-018-0346-3?ref=afternow.io"> study by researchers from the University of Maryland</a> focused on whether VR affects a person&#x2019;s ability to recall information. It was explored whether participants learn better in a virtual environment in comparison to traditional platforms like desktop computers or tablets.</p><p>Researchers found that <strong>participants scored at least 10% higher in recall ability </strong>when using virtual reality. This means your audience is more likely to remember your presentation when it&#x2019;s done in augmented reality or virtual reality.</p><h3 id="augmented-reality-and-virtual-reality-improve-focus">Augmented Reality and Virtual Reality Improve Focus</h3><p>AR and VR is a distraction-free zone. In comparison to desktops, mobile devices, and conference rooms or lecture halls, AR and VR completely focus an audience&#x2019;s attention on the material being presented.</p><p>In the <a href="https://link.springer.com/article/10.1007/s10055-018-0346-3?ref=afternow.io">study by the University of Maryland</a> mentioned above, f<strong>ull immersion improved participants&#x2019; overall focus and helped them perform better</strong>. Researchers found that all but two of the 40 participants also actually preferred using virtual reality for the study compared to a regular desktop.</p><p>Virtual reality captures focus, enabling participants to learn and process information more effectively.</p><!--kg-card-begin: html--><div class="sketchfab-embed-wrapper"> <iframe title="3D chart of Covid19 Deaths per states in the USA" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/a98a6d5e4ce2496daee61c8d9ad19a2e/embed"> </iframe> <p style="font-size: 13px; font-weight: normal; margin: 5px; color: #4A4A4A;"> <a href="https://sketchfab.com/3d-models/3d-chart-of-covid19-deaths-per-states-in-the-usa-a98a6d5e4ce2496daee61c8d9ad19a2e?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=a98a6d5e4ce2496daee61c8d9ad19a2e&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> 3D chart of Covid19 Deaths per states in the USA </a> by <a href="https://sketchfab.com/afternow?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=a98a6d5e4ce2496daee61c8d9ad19a2e&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> afternow </a> on <a href="https://sketchfab.com/?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=a98a6d5e4ce2496daee61c8d9ad19a2e&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;">Sketchfab</a></p></div><!--kg-card-end: html--><h3 id="3d-presentations-provide-a-premium-experience">3D Presentations Provide a Premium Experience</h3><p>Adopting the latest communication tools for presentations positions your company at the forefront of a competitive market. When you only get to make one first impression, AR and VR stand out from the field and demonstrate a forward-thinking approach to business and innovation.</p><p>When working with Maureen Boyle-Henninger, Client Executive, National Accounts at Anthem Healthcare, we received the following feedback from her team:</p><blockquote>&#x201C;Working with the AfterNow team was a true game-changer in the development of our proposal presentation to our largest client. We needed to be creative in a different, bold and unique way&#x2026;.a way we didn&#x2019;t even know was a possibility until we met with the AfterNow team!</blockquote><blockquote>Not only did the team help us create a value story, but then transformed it into an amazing augmented reality experience of which we had not seen before. The AfterNow team showed us how to create this by drawing pictures, taking images and 3D &#xA0;models and synthesizing this into an incredibly compelling story where the user could then &#x201C;feel&#x201D; the experience and not just have to be &#x201C;told&#x201D; about it.</blockquote><blockquote>This part of our Finalist meeting was one of the key highlights for the client, consultant, and our team as well. By doing this, we were really able to show our clients what we wanted them to feel, rather than telling them. The experience became real, an experience, rather than just a discussion.&#x201D;</blockquote><p>When done strategically and creatively, presentations in augmented reality and virtual reality play a substantial role in the decision-making process, winning clients, elevating brand positioning, and earning recognition in a competitive marketplace.</p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/afternow-prez-getting-started/">
			Get Creative Create your first presentation
		</a>
	</div>
</div><!--kg-card-end: html--><figure class="kg-card kg-image-card"><img src="https://www.afternow.io/content/images/2022/06/data-viz-comunity-dashboard.png" class="kg-image" alt="3D Presentations: Why Are They Better?" loading="lazy" width="1920" height="1080" srcset="https://www.afternow.io/content/images/size/w600/2022/06/data-viz-comunity-dashboard.png 600w, https://www.afternow.io/content/images/size/w1000/2022/06/data-viz-comunity-dashboard.png 1000w, https://www.afternow.io/content/images/size/w1600/2022/06/data-viz-comunity-dashboard.png 1600w, https://www.afternow.io/content/images/2022/06/data-viz-comunity-dashboard.png 1920w" sizes="(min-width: 720px) 720px"></figure><h2 id="getting-ready-for-growth-in-the-ar-and-vr-market">Getting Ready for Growth in the AR and VR Market</h2><p>As we&#x2019;ve seen with the data and examples above, augmented reality and virtual reality make their mark in the delivery, engagement, and conversion of content.</p><blockquote>Tony Parisi, Global Head of AR/VR Ads and E-Commerce at Unity Technologies, writes in a guest post with AR Insider, &#x201C;[a] just-released report by Snap and Deloitte sees the technology moving to ubiquity by 2025 and promises unprecedented business outcomes, citing a staggering 94% conversion rate on purchases in some cases.&#x201D;</blockquote><p>Additionally, the report identifies that 76% of people expect and desire to use AR as a practical &#x201C;tool&#x201D; in their everyday lives.</p><blockquote>&#x201C;As AR evolves, it will revolutionize our lives and will become as significant of a technology shift as the web or mobile was to society, changing how we view and interact with the world around us,&#x201D; says Allan Cook, Digital Reality Business Leader at Deloitte Digital.</blockquote><p>The benefits seem nearly too good to be true, but so did the internet when it first became a reality. Snapchat is investing heavily in hardware to make AR more accessible to various industries, announcing <a href="https://www.spectacles.com/?ref=afternow.io">the next generation of Snap Spectacles-</a> with the aim to revolutionize how we interact with computing in our world.</p><p>Facebook is gearing up the <a href="https://business.oculus.com/?ref=afternow.io">Oculus to be positioned as an enterprise headset</a>, and <a href="https://www.pico-interactive.com/us/tob_overview.html?ref=afternow.io">Pico</a> and <a href="https://uploadvr.com/new-htc-vive-headset-enterprise-focus/?ref=afternow.io">HTC </a>are making similar moves with their recent launches and announcements.</p><p>Augmented reality and virtual reality content, including presentations, have a positive impact for professionals in on-the-job training, high stakes presentations, conferences, and sales presentations- helping people to learn and retain information more effectively.</p><p>Early adopters of 3D presentations will emerge as market leaders in their respective fields. There is a blue ocean of opportunity in augmented reality and virtual reality, with presentations being a core middle ground for the dissemination of ideas in this brave new world.</p><figure class="kg-card kg-image-card"><img src="https://www.afternow.io/content/images/2022/06/vlcsnap-2020-07-25-15h30m38s244.png" class="kg-image" alt="3D Presentations: Why Are They Better?" loading="lazy" width="1920" height="1080" srcset="https://www.afternow.io/content/images/size/w600/2022/06/vlcsnap-2020-07-25-15h30m38s244.png 600w, https://www.afternow.io/content/images/size/w1000/2022/06/vlcsnap-2020-07-25-15h30m38s244.png 1000w, https://www.afternow.io/content/images/size/w1600/2022/06/vlcsnap-2020-07-25-15h30m38s244.png 1600w, https://www.afternow.io/content/images/2022/06/vlcsnap-2020-07-25-15h30m38s244.png 1920w" sizes="(min-width: 720px) 720px"></figure>]]></content:encoded></item><item><title><![CDATA[Install Prez and watch your first presentation]]></title><description><![CDATA[A quick tutorial on getting started with Prez to watch your first presentation]]></description><link>https://www.afternow.io/install-prez-and-watch-your-first-presentation/</link><guid isPermaLink="false">62b35381453d7d72d0b6b989</guid><category><![CDATA[Tutorial]]></category><category><![CDATA[blog]]></category><dc:creator><![CDATA[Philippe Lewicki]]></dc:creator><pubDate>Wed, 22 Jun 2022 17:55:22 GMT</pubDate><media:content url="https://www.afternow.io/content/images/2022/10/glasse-city-over-water-at-sunset.png" medium="image"/><content:encoded><![CDATA[<h2 id="intro">Intro</h2><img src="https://www.afternow.io/content/images/2022/10/glasse-city-over-water-at-sunset.png" alt="Install Prez and watch your first presentation"><p>Here is a step by step tutorial on getting AfterNow Prez installed and joined a presentation.</p><h2 id="installation">Installation</h2><p>AfterNow Prez is not yet on the Oculus Store. It is on Oculus App Lab, to install it you will need to follow this link:<br><a href="https://www.oculus.com/experiences/quest/3434684843326642/?ref=afternow.io">https://www.oculus.com/experiences/quest/3434684843326642/</a></p><!--kg-card-begin: html-->
<div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.oculus.com/experiences/quest/3434684843326642/?ref=afternow.io" target="_new">
			Click Here to add Prez to your Quest
		</a>
	</div>
</div><!--kg-card-end: html--><p>Click on the &quot;Get&quot; blue button. If you are not login it will ask you to login with Facebook and authorize Oculus aka MetaQuest. <br>Once the button display in dark blue with &quot;Purchased&quot; it means the app as been added to your app library in your Quest.</p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/book-a-demo/">
			Not yet ready to install the app, book a quick demo
		</a>
	</div>
</div><!--kg-card-end: html--><h2 id="starting-the-app">Starting the app</h2><p>Go in your Quest look for the 9 little squares button to open your app&apos;s library. On the top-right drop-down, select Not Installed, look for AfterNow Prez Beta, and click on it, it will install and start. </p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/KJIP1ZrapvQ?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><h2 id="choose-a-presentation">Choose a presentation</h2><p>If you already have a presentation ID for the presentation jump to Join a presentation.</p><p>We have a list of featured presentation the <a href="https://www.afternow.io/tag/presentation/">Presentation </a>menu above.</p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/tag/presentation/">
			Featured Presentations
		</a>
	</div>
</div><!--kg-card-end: html--><p></p><h2 id="join-a-presentation">Join a presentation</h2><p>Once the app open, you will see the <code>Login Menu</code>. To join someone else&apos;s presentation, you can either log into your <code>User Account</code> or uses <code>Guest Access</code>.</p><p>The quickest way to attend someone else&apos;s presentation is to join as a Guest. To do so:</p><ul><li>Select the <code>Guest Access</code> tab.</li><li>Enter your name (optional)</li><li>Enter the eight-digit Presentation ID.</li><li>Click <code>Visit Presentation</code>.</li></ul><h2 id="start-and-navigate-the-presentation">Start and navigate the presentation</h2><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/qlsEZYoDHLA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><p><a href="https://youtu.be/BYYwqQ91QN4?ref=afternow.io">Click here</a> if you are using your hands instead of the controllers: <br><a href="https://youtu.be/BYYwqQ91QN4?ref=afternow.io">https://youtu.be/BYYwqQ91QN4</a></p><h2></h2><p></p><p></p>]]></content:encoded></item><item><title><![CDATA[How to join an AfterNow Prez presentation on Quest]]></title><description><![CDATA[Join an AfterNow Prez virtual reality presentation on the Quest.]]></description><link>https://www.afternow.io/how-to-join-an-afternow-prez-presentation/</link><guid isPermaLink="false">601068d098d8cb1fc46a0cda</guid><category><![CDATA[Tutorial]]></category><dc:creator><![CDATA[Philippe Lewicki]]></dc:creator><pubDate>Tue, 14 Jun 2022 20:42:00 GMT</pubDate><media:content url="https://www.afternow.io/content/images/2021/01/quest2.jpeg" medium="image"/><content:encoded><![CDATA[<h2 id="intro">Intro</h2><img src="https://www.afternow.io/content/images/2021/01/quest2.jpeg" alt="How to join an AfterNow Prez presentation on Quest"><p>Someone sent you a presentation id and asked you to join their presentation. That&apos;s great. An AfterNow Prez presentation is something you don&apos;t want to miss, and we suggest experiencing it with a VR or AR headset.</p><p>Here is a step by step tutorial on getting AfterNow Prez installed and joined the presentation.</p><h2 id="installation">Installation</h2><p>AfterNow Prez is not yet on the Oculus Store. It is on Oculus App Lab, to install it you will need to follow this link:<br><a href="https://www.oculus.com/experiences/quest/3434684843326642/?ref=afternow.io">https://www.oculus.com/experiences/quest/3434684843326642/</a></p><p>Click on the &quot;Get&quot; blue button. If you are not login it will ask you to login with Facebook and authorize Oculus aka MetaQuest. <br>Once the button display in dark blue with &quot;Purchased&quot; it means the app as been added to your app library in your Quest.</p><h2 id="starting-the-app">Starting the app</h2><p>Go in your Quest look for the 9 little squares button to open your app&apos;s library. On the top-right drop-down, select Not Installed, look for AfterNow Prez, and click click on it, it will install and start. </p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/KJIP1ZrapvQ?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><h2 id="join-a-presentation">Join a presentation</h2><p>Once the app open, you will see the <code>Login Menu</code>. To join someone else&apos;s presentation, you can either log into your <code>User Account</code> or uses <code>Guest Access</code>.</p><p>The quickest way to attend someone else&apos;s presentation is to join as a Guest. To do so:</p><ul><li>Select the <code>Guest Access</code> tab.</li><li>Enter the eight-digit Presentation ID.</li><li>Click <code>Join as Guest</code>.</li></ul><h2 id="start-and-navigate-the-presentation">Start and navigate the presentation</h2><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/qlsEZYoDHLA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><p><a href="https://youtu.be/BYYwqQ91QN4?ref=afternow.io">Click here</a> if you are using your hands instead of the controllers: <br><a href="https://youtu.be/BYYwqQ91QN4?ref=afternow.io">https://youtu.be/BYYwqQ91QN4</a></p><h2 id="open-the-spectator-menu">Open the Spectator menu</h2><p>If you have your controllers put them down to initiate hand-tracking.<br>You should now see your hands, look at the palm of your hand to reveal the hand menu button. Click on it with the index finger of your other hand.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/rWEYNbyHFXg?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><p>If you want to use your controllers press the <code>X</code> or <code>A</code> button to popup and hide the menu.</p><p>Once summoned, the menu will pop up in front of you and look something like this:</p><figure class="kg-card kg-image-card"><img src="https://www.afternow.io/content/images/2021/01/ViewMenu.png" class="kg-image" alt="How to join an AfterNow Prez presentation on Quest" loading="lazy"></figure><p>In this menu, you will find the following:</p><ul><li>Slide Number - &quot;Lobby&quot; is used &#xA0;here before the presentation has started.</li><li>Presentation Title &amp; ID - which you entered to access the session.</li><li>Leave Button - to exit the presentation once the meeting is done.</li><li>Participant Count &amp; Mute Button - to disable your microphone, if desired.</li><li>Raise Hand button - to get the attention of the speaker.</li><li>Relocate Button - to adjust the presentation&apos;s placement, if desired.</li><li>Close Button - to hide the menu again; you can also press <code>A</code> or <code>X</code> again.</li></ul><p>To use any of the buttons in the menu, you can aim at it with either controller and use the trigger, or (with hand-tracking enabled) simply aim with your hand and perform an AirTap by pinching your index finger and thumb.</p><h3 id="changing-your-location">Changing your Location</h3><p>The presentation&apos;s placement is determined by where you were standing/sitting when it initially loaded. Please take moment to look down and notice the location pad underneath you. Although you are free to move around, of course, we recommend using this positioning during the presentation for the best experience. In case the initial location does not work well for you, please select a new location and heading (i.e., the direction in which you are facing) and press the Relocate button in the menu. You can perform this adjustment as many times are you want.</p><h3 id="self-guided-presentations">Self Guided presentations</h3><p>Most of the presentation will have a presenter and a live audience. &#xA0;But some presentations are designed to be viewed and experienced without a presenter. We call them <code>Self guided</code> presentations. In those presentation, will you need to start the presentation yourself and possibly move through slides on your own.<br>On a <code>Self Guided</code> presentation, the menu will look like this:</p><figure class="kg-card kg-image-card"><img src="https://www.afternow.io/content/images/2021/01/PlayMenu_SelfGuided.png" class="kg-image" alt="How to join an AfterNow Prez presentation on Quest" loading="lazy"></figure><p>You can use the menu or do an AirTap/Pinch or press the trigger on the controllers to move through slides.</p>]]></content:encoded></item><item><title><![CDATA[Covid Death in 3D, Data visualization]]></title><description><![CDATA[3D visualization of covid 19 death in the USA.]]></description><link>https://www.afternow.io/covid-death-in-3d-data-visualization/</link><guid isPermaLink="false">61fae0c0f1bd15706458efd1</guid><category><![CDATA[viz]]></category><category><![CDATA[data visualization]]></category><category><![CDATA[dataviz]]></category><category><![CDATA[3D Thinking]]></category><category><![CDATA[lab]]></category><category><![CDATA[blog]]></category><dc:creator><![CDATA[Philippe Lewicki]]></dc:creator><pubDate>Thu, 03 Feb 2022 14:30:00 GMT</pubDate><media:content url="https://www.afternow.io/content/images/2022/02/Covid-19-death-dataviz.png" medium="image"/><content:encoded><![CDATA[<img src="https://www.afternow.io/content/images/2022/02/Covid-19-death-dataviz.png" alt="Covid Death in 3D, Data visualization"><p>We created a series of new graphs with a new visual concept to grasp the gravity of the Covid 19 pandemic.<br>This first version is in the United States of America. We display a column of deaths composed of monthly rings for each state. The size of the ring is proportional to the number of deaths.</p><!--kg-card-begin: html--><div class="sketchfab-embed-wrapper"> <iframe title="3D chart of Covid19 Deaths per states in the USA" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/a98a6d5e4ce2496daee61c8d9ad19a2e/embed"> </iframe> <p style="font-size: 13px; font-weight: normal; margin: 5px; color: #4A4A4A;"> <a href="https://sketchfab.com/3d-models/3d-chart-of-covid19-deaths-per-states-in-the-usa-a98a6d5e4ce2496daee61c8d9ad19a2e?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=a98a6d5e4ce2496daee61c8d9ad19a2e&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> 3D chart of Covid19 Deaths per states in the USA </a> by <a href="https://sketchfab.com/afternow?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=a98a6d5e4ce2496daee61c8d9ad19a2e&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> afternow </a> on <a href="https://sketchfab.com/?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=a98a6d5e4ce2496daee61c8d9ad19a2e&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;">Sketchfab</a></p></div><!--kg-card-end: html--><p>The original metaphor is smoke going up. Each monthly ring is a cloud going up containing all the death that month.</p><p>We have an animated version in a Prez presentation with an alternate view on Per 100k instead of totals.</p><figure class="kg-card kg-embed-card"><iframe src="https://player.vimeo.com/video/672921358?h=bc0bc2d51c&amp;app_id=122963" width="360" height="360" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe></figure><p></p><p>Watch this data visualization in your Quest with Prez. &#xA0;</p><h2 id="presentation-id-57318778">Presentation ID: 57318778</h2><p>Install AfterNow Prez from this link:<br><a href="https://www.oculus.com/experiences/quest/3434684843326642/?ref=afternow.io">https://www.oculus.com/experiences/quest/3434684843326642/</a></p><p>Then open AfterNow Prez in your Quest and enter as a Guest Access presentation id: <strong>57318778 &#xA0; </strong>No need to create an account.</p><h2 id="create-your-own-3d-datavisualization">Create your own 3D datavisualization</h2><p>We are working on a new application to create 3D datavisualization.</p><p>Find out more and join our early access list: &#xA0;<br><a href="https://www.afternow.io/augmented-reality-and-virtual-reality-presentations-for-data-visualization/">Immersive Data Visualization with Viz</a></p>]]></content:encoded></item><item><title><![CDATA[AfterNow Prez and Spatial: What is the Difference?]]></title><description><![CDATA[Simply put, AfterNow Prez focuses on the creation and delivery of a polished presentation to an audience, while Spatial is primarily a meeting platform.
]]></description><link>https://www.afternow.io/afternow-prez-and-spatial-what-is-the-difference/</link><guid isPermaLink="false">6079c6e404c9fe7a7e64add3</guid><category><![CDATA[blog]]></category><dc:creator><![CDATA[Anne McKinnon]]></dc:creator><pubDate>Tue, 11 Jan 2022 18:41:11 GMT</pubDate><media:content url="https://www.afternow.io/content/images/2022/01/vlcsnap-2020-07-28-08h31m30s590.png" medium="image"/><content:encoded><![CDATA[<img src="https://www.afternow.io/content/images/2022/01/vlcsnap-2020-07-28-08h31m30s590.png" alt="AfterNow Prez and Spatial: What is the Difference?"><p>We often get asked the question, what is the difference between <em>Prez </em>and Spatial?</p><p>Simply put, AfterNow <em>Prez </em>focuses on the creation and delivery of a polished presentation to an audience, while Spatial is primarily a meeting platform.</p><p>Spatial might be where the ideas are formed and brainstorming sessions are held, but <em>Prez</em> is the platform where final concepts are designed and delivered.</p><p>In fact, there are many instances where our team begins ideation and holds meetings using Spatial, and then jumps into Prez for the production and delivery stage.</p><p>Let&#x2019;s look at <em>Prez</em>&#x2019;s core differentiators in more detail below.</p><h2 id="afternow-prez-is-a-communication-platform-to-create-and-deliver-premium-presentations-in-ar-and-vr">AfterNow Prez is a Communication Platform to Create and Deliver Premium Presentations in AR and VR</h2><figure class="kg-card kg-image-card"><img src="https://www.afternow.io/content/images/2022/01/vlcsnap-2020-07-25-15h33m26s599.png" class="kg-image" alt="AfterNow Prez and Spatial: What is the Difference?" loading="lazy" width="1920" height="1080" srcset="https://www.afternow.io/content/images/size/w600/2022/01/vlcsnap-2020-07-25-15h33m26s599.png 600w, https://www.afternow.io/content/images/size/w1000/2022/01/vlcsnap-2020-07-25-15h33m26s599.png 1000w, https://www.afternow.io/content/images/size/w1600/2022/01/vlcsnap-2020-07-25-15h33m26s599.png 1600w, https://www.afternow.io/content/images/2022/01/vlcsnap-2020-07-25-15h33m26s599.png 1920w" sizes="(min-width: 720px) 720px"></figure><p>While working with the likes of Anthem, Boeing, Hersheys, Hyperloop and TMobile, we have seen one consistent pain point across all use cases that Augmented Reality and Virtual Reality presentations solve for: communication.</p><p>Whether it&#x2019;s communicating an internal initiative, a new product, a proposal or training, AR and VR provide a medium for messages to be communicated effectively, standing out from the field of content and ultimately delivering results that exceed expectations.</p><p>AfterNow <em>Prez </em>is the result of these learnings, an accessible, code free and easy-to-use platform designed specifically for presenters to create and deliver premium content for clear and concise communication.</p><p>Team leads can take everything that has been deliberated and discussed in collaboration tools such as Spatial, and create and deliver the ultimate presentation experience in <em>Prez</em>.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/48etyj3FfR4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><h2 id="how-we-differ-our-approach-to-3d-presentations">How We Differ: Our Approach to 3D Presentations</h2><p>When you arrive in a presentation powered by AfterNow <em>Prez</em>, you will notice right away that the look and feel is very different to that of Spatial. It&#x2019;s a more formal setting with a customized environment, and a singular point of focus (the presentation).</p><p>There are a number of unique approaches we take into consideration for design that include the following:</p><h3 id="presentation-mode-is-focused-on-the-formal-delivery-of-content">Presentation Mode is Focused on the Formal Delivery of Content</h3><p>In AfterNow <em>Prez</em>, the focus is solely on the presenter and content of the presentation. Every attendee arrives in the same space oriented in a perfect position to view the presentation, examine 3D models, read text, and each receive the same quality of audio that is spatialized to draw focus to the content of the presentation.</p><h3 id="audio-is-uniform-and-controlled-by-the-presenter">Audio is Uniform and Controlled by the Presenter</h3><p>In <em>Prez</em>, the presenter has primary control of audio. They can toggle between their voice only, or enable audience members to speak. This enables organized, one-at-a-time exchanges to prioritize concise and attentive communication.</p><p>Attendees can raise their hand to speak, and the presenter is simultaneously notified.</p><h3 id="point-of-view-pov-puts-everyone-in-the-front-seat">Point of View (PoV) Puts Everyone in the Front Seat</h3><p>There is no back seat to our presentations. Each audience member is front and center. The look and feel is that of a one-on-one presentation no matter the audience size. For executives, potential clients, or pupils in a large class, this delivers a consistent message to each attendee- that they are the one the presenter is speaking to.</p><p>It&#x2019;s an effective way to deliver content in an inclusive manner, to win the attention of each audience member, and to encourage active participation when the floor is open for questions.</p><figure class="kg-card kg-image-card"><img src="https://www.afternow.io/content/images/2022/01/vlcsnap-2020-11-12-18h24m15s302.png" class="kg-image" alt="AfterNow Prez and Spatial: What is the Difference?" loading="lazy" width="1920" height="1080" srcset="https://www.afternow.io/content/images/size/w600/2022/01/vlcsnap-2020-11-12-18h24m15s302.png 600w, https://www.afternow.io/content/images/size/w1000/2022/01/vlcsnap-2020-11-12-18h24m15s302.png 1000w, https://www.afternow.io/content/images/size/w1600/2022/01/vlcsnap-2020-11-12-18h24m15s302.png 1600w, https://www.afternow.io/content/images/2022/01/vlcsnap-2020-11-12-18h24m15s302.png 1920w" sizes="(min-width: 720px) 720px"></figure><h3 id="no-avatars-means-no-distraction">No Avatars Means No Distraction</h3><p>Audience members see their hands only. This removes any point of friction on the onboarding process, as a user simply arrives in the presentation without having to go through additional avatar customisation menus. It also means there are fewer distractions as a user&apos;s eyes are solely on the presentation taking place.</p><h3 id="custom-environments-for-every-context">Custom Environments for Every Context</h3><p>When delivering the presentation in virtual reality, custom environments can be easily selected or uploaded to create the ideal setting for each presentation.</p><h3 id="importing-sharing-and-viewing-3d-objects-made-easy">Importing, Sharing and Viewing 3D Objects Made Easy</h3><p><em>Prez </em>enables users to upload GLB and GLTF files, pictures, video, audio, and animated 3D objects. This makes presentations memorable and tangible, which is highly effective for memory recall.</p><h3 id="deliver-a-message-within-time-constraints">Deliver a Message Within Time Constraints</h3><p>While brainstorming sessions can go on for hours, <em>Prez </em>focuses on delivering content in efficient time constraints, focusing first on the presentation of information, and then on questions or exchanges to clarify communication for the decision making process.</p><h3 id="a-seamless-experience-for-first-time-ar-and-vr-users">A Seamless Experience for First-Time AR and VR Users</h3><p>Prez&#x2019;s interface is an all-in-one solution where presentations can be made and deployed. It&#x2019;s a code-free AR and VR presentation builder that anyone can use.</p><p>We leverage the advantages of virtual reality and augmented reality to create an optimized setting for the communication of content and ideas. User onboarding, experience and interfaces have all been simplified to achieve just one goal, the delivery of a premium presentation.</p><h2 id="when-to-use-each-platform">When to Use Each Platform:</h2><p>Our users, including Fortune 50 companies, come from the worlds of engineering, healthcare, consumer goods, aerospace, education, transportation, and telecommunications. In many cases we use Spatial for the ideation phase, and ArterNow <em>Prez </em>to deliver the final premium content piece.</p><p>Here are some examples of which stage or activity we will use Spatial, and when we use AfterNow <em>Prez</em>:</p><!--kg-card-begin: markdown--><table>
<thead>
<tr>
<th></th>
<th style="text-align:center">Spatial</th>
<th style="text-align:center">AfterNow Prez</th>
</tr>
</thead>
<tbody>
<tr>
<td>Interactive Prototypes</td>
<td style="text-align:center"></td>
<td style="text-align:center">Yes</td>
</tr>
<tr>
<td>Meeting with 3D presentations</td>
<td style="text-align:center">2D PowerPoint Only</td>
<td style="text-align:center">Yes</td>
</tr>
<tr>
<td>Product Pitch</td>
<td style="text-align:center"></td>
<td style="text-align:center">Yes</td>
</tr>
<tr>
<td>Product Design &amp; Reviews</td>
<td style="text-align:center">Limited to small GLB</td>
<td style="text-align:center">Yes</td>
</tr>
<tr>
<td>Education &amp; Remote Learning</td>
<td style="text-align:center"></td>
<td style="text-align:center">Yes</td>
</tr>
<tr>
<td>Training</td>
<td style="text-align:center"></td>
<td style="text-align:center">Yes</td>
</tr>
<tr>
<td>Creating &amp; Distributing Premium content</td>
<td style="text-align:center"></td>
<td style="text-align:center">Yes</td>
</tr>
<tr>
<td>Data Visualization</td>
<td style="text-align:center"></td>
<td style="text-align:center">Yes</td>
</tr>
<tr>
<td>Post-it ideation</td>
<td style="text-align:center">Yes</td>
<td style="text-align:center"></td>
</tr>
<tr>
<td>Cross-Platform Meetings</td>
<td style="text-align:center">Yes</td>
<td style="text-align:center"></td>
</tr>
<tr>
<td>Daily Meetings</td>
<td style="text-align:center">Yes</td>
<td style="text-align:center"></td>
</tr>
<tr>
<td>Brainstorming</td>
<td style="text-align:center">Yes</td>
<td style="text-align:center"></td>
</tr>
</tbody>
</table>
<!--kg-card-end: markdown--><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/grySMTxPtCk?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure>]]></content:encoded></item><item><title><![CDATA[Augmented Reality and Virtual Reality Presentations for Data Visualization]]></title><description><![CDATA[With augmented reality and virtual reality presentations, show your audience what data means in one simple 3D and interactive experience to deliver a winning communication strategy.]]></description><link>https://www.afternow.io/augmented-reality-and-virtual-reality-presentations-for-data-visualization/</link><guid isPermaLink="false">60feae3156ebec3a51c80cb4</guid><category><![CDATA[Solutions]]></category><category><![CDATA[blog]]></category><dc:creator><![CDATA[Anne McKinnon]]></dc:creator><pubDate>Wed, 22 Dec 2021 16:30:00 GMT</pubDate><media:content url="https://www.afternow.io/content/images/2021/08/vlcsnap-2020-07-25-15h33m06s805-1.png" medium="image"/><content:encoded><![CDATA[<figure class="kg-card kg-image-card kg-width-wide"><img src="https://www.afternow.io/content/images/2021/08/vlcsnap-2020-11-12-18h25m10s275.png" class="kg-image" alt="Augmented Reality and Virtual Reality Presentations for Data Visualization" loading="lazy" width="1920" height="1080" srcset="https://www.afternow.io/content/images/size/w600/2021/08/vlcsnap-2020-11-12-18h25m10s275.png 600w, https://www.afternow.io/content/images/size/w1000/2021/08/vlcsnap-2020-11-12-18h25m10s275.png 1000w, https://www.afternow.io/content/images/size/w1600/2021/08/vlcsnap-2020-11-12-18h25m10s275.png 1600w, https://www.afternow.io/content/images/2021/08/vlcsnap-2020-11-12-18h25m10s275.png 1920w" sizes="(min-width: 1200px) 1200px"></figure><img src="https://www.afternow.io/content/images/2021/08/vlcsnap-2020-07-25-15h33m06s805-1.png" alt="Augmented Reality and Virtual Reality Presentations for Data Visualization"><p>Today we&#x2019;re introducing AfterNow <em>Viz</em>, a new software product in our suite of AR and VR presentation tools. </p><p>With augmented reality and virtual reality presentations, show your audience what data means in one simple 3D and interactive experience to deliver a winning communication strategy. </p><p>At the core of our digital transformation is data, enabling us to make unprecedented advances in machine learning, anthropology, science, geology, astronomy, chemistry, physics, and psychology, just to name a few. </p><p>It used to take entire rooms of machines to process the amount of data that our computers can now run in just a few minutes. It would take specialists years to become experts in data science, extracting meaningful insights from massive amounts of data, and then communicating it to the world. </p><p>Augmented reality and virtual reality take these complex and fascinating data modules and, with a single glance, make these insights accessible to everyone. <br></p><!--kg-card-begin: html--><div class="sketchfab-embed-wrapper"> <iframe title="Earthquakes - 2000 to 2019" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="fullscreen; autoplay; vr" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/894ad84ceb8b444a91fbc05f20530bcd/embed"> </iframe> <p style="font-size: 13px; font-weight: normal; margin: 5px; color: #4A4A4A;"> <a href="https://sketchfab.com/3d-models/earthquakes-2000-to-2019-894ad84ceb8b444a91fbc05f20530bcd?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=894ad84ceb8b444a91fbc05f20530bcd&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> Earthquakes - 2000 to 2019 </a> by <a href="https://sketchfab.com/norgeotloic?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=894ad84ceb8b444a91fbc05f20530bcd&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> Lo&#xEF;c Norgeot </a> on <a href="https://sketchfab.com/?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=894ad84ceb8b444a91fbc05f20530bcd&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;">Sketchfab</a></p></div><!--kg-card-end: html--><h2 id="3d-presentations-a-winning-communication-strategy-for-data-insights">3D Presentations: A Winning Communication Strategy for Data Insights</h2><p>Any presentation whether for sales, financial projections, inventory analysis, scientific research or product visualization is backed up with data.</p><p>For example, show customers the lifetime value of a car in comparison to competitor models. Or, create 3D financial projections that your customers can easily grasp for long-term investment planning. Demonstrate the results of a complex scientific study with 3D charts that are easy to understand in the context of scale and color. </p><p>Create visually compelling and interactive data experiences that leave a long-lasting impression for internal and external initiatives.</p><h2 id="use-cases">Use Cases</h2><p>Take a moment to think about the amount of data you encounter each day, in your professional and personal life. Whether that&#x2019;s charts and graphs in reports, to simple likes and share counts on social media profiles. These numbers are abstract on a 2D page, but imagine these as rich 3D data models that can empower data-driven decision-making. </p><p>The following are only a few examples of the infinite possibilities of 3D data visualization, and how it can be used to communicate with impact:</p><!--kg-card-begin: markdown--><table>
<thead>
<tr>
<th>Identify Trends for Long Term Planning</th>
<th>Aggregate Data for Decision Making</th>
<th>Develop Premium Reports for Clients and Executives</th>
<th>Evaluate Market Opportunities for Growth</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="https://www.afternow.io/content/images/2021/08/Icon-IdentifyTrends.png" alt="Augmented Reality and Virtual Reality Presentations for Data Visualization" loading="lazy"></td>
<td><img src="https://www.afternow.io/content/images/2021/08/Icon-AggregateData.png" alt="Augmented Reality and Virtual Reality Presentations for Data Visualization" loading="lazy"></td>
<td><img src="https://www.afternow.io/content/images/2021/08/Icon-DevelopReports.png" alt="Augmented Reality and Virtual Reality Presentations for Data Visualization" loading="lazy"></td>
<td><img src="https://www.afternow.io/content/images/2021/08/Icon-EvaluateOppotunities.png" alt="Augmented Reality and Virtual Reality Presentations for Data Visualization" loading="lazy"></td>
</tr>
<tr>
<td>Overlay data on 3D maps that demonstrate the scale of trends over a specific geographic area, or even the entire world.</td>
<td>Collate data from various sources, such as sales from multiple regions, and visualize this in the context of color and scale to understand market needs, business weaknesses and strengths.</td>
<td>Show your client and team the results of a campaign, research, or collaboration, visualizing the before and after impact, or the process of achieving key milestones and what this means with data.</td>
<td>Identify new market opportunities at a glance by importing market data over time or regions, and visualizing it in terms of scale and projections to make data-driven decisions.</td>
</tr>
</tbody>
</table>
<!--kg-card-end: markdown--><!--kg-card-begin: html--><div class="sketchfab-embed-wrapper"> <iframe title="CO2 emissions by country and GDP over 60 years" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="fullscreen; autoplay; vr" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/fd91adc096794ff59a2bb9ff00a90f18/embed"> </iframe> <p style="font-size: 13px; font-weight: normal; margin: 5px; color: #4A4A4A;"> <a href="https://sketchfab.com/3d-models/co2-emissions-by-country-and-gdp-over-60-years-fd91adc096794ff59a2bb9ff00a90f18?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=fd91adc096794ff59a2bb9ff00a90f18&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> CO2 emissions by country and GDP over 60 years </a> by <a href="https://sketchfab.com/afternow?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=fd91adc096794ff59a2bb9ff00a90f18&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> afternow </a> on <a href="https://sketchfab.com/?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=fd91adc096794ff59a2bb9ff00a90f18&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;">Sketchfab</a></p></div>
<!--kg-card-end: html--><h2 id="data-visualization-with-augmented-reality-and-virtual-reality-drives-results">Data Visualization with Augmented Reality and Virtual Reality Drives Results</h2><p>Augmented reality and virtual reality presentations bring context to content. Immerse your audience in a data-driven and interactive experience, enabling them to easily understand impact and scale, and connect with data in a meaningful and memorable way. <br></p><p>AR and VR data visualizations deliver high value, standing out from 2D content, strengthening emotional engagement, and recall. Create immersive and interactive environments for your clients or team, with personalized touches and deeper insights into business initiatives. <br></p><p>Our clients have closed multi-billion dollar deals with augmented reality and virtual reality presentations. Today&#x2019;s audiences are multidimensional, and using 3D communication tools places your company at the cutting edge of digital strategy&#x2014; a pathway to success. <br></p><!--kg-card-begin: html--><div class="sketchfab-embed-wrapper"> <iframe title="Sleep Graph" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="fullscreen; autoplay; vr" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/391792f14d29454aac36b768c6191390/embed"> </iframe> <p style="font-size: 13px; font-weight: normal; margin: 5px; color: #4A4A4A;"> <a href="https://sketchfab.com/3d-models/sleep-graph-391792f14d29454aac36b768c6191390?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=391792f14d29454aac36b768c6191390&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> Sleep Graph </a> by <a href="https://sketchfab.com/afternow?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=391792f14d29454aac36b768c6191390&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> afternow </a> on <a href="https://sketchfab.com/?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=391792f14d29454aac36b768c6191390&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;">Sketchfab</a></p></div><!--kg-card-end: html--><h2 id="user-interface-as-easy-as-drag-drop">User Interface: As Easy As Drag &amp; Drop</h2><p>AR and VR presentations are about making data-driven communication easy and accessible. Our interface is comparable to those such as Google Docs, and Microsoft Office. </p><p>In just a few easy steps, import your data in CSV into Viz, choose a template for the style of 3D data experience, and export the results into augmented reality and virtual reality. </p><p>From there, share your 3D data visualization with a simple access code for a guided or self-guided presentation.</p><p>Preview data on your mobile phone, then deploy to your audience using augmented reality or virtual reality devices. &#xA0;<br></p><h2 id="sign-up-for-early-access">Sign up for Early Access</h2><p>Sign up for early access! We&#x2019;ve been speaking closely with our customers, refining our data visualization software, and can&#x2019;t wait to see what you make. </p><!--kg-card-begin: html--><script type="text/javascript" src="//marketing.afternow.io/form/generate.js?id=16"></script><!--kg-card-end: html--><p>Need help developing your idea or delivering a bespoke presentation?</p><p>Don&#x2019;t hesitate to contact us. </p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/contact-us-today/">
			Contact Us
		</a>
	</div>
</div>
<!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[This Augmented Reality and Virtual Reality Presentation Tool is Helping Medical Doctors with Professional Development]]></title><description><![CDATA[From scanning technology to 3D tools, augmented reality and virtual reality, these technologies are bringing new perspectives to complex medical cases and providing the resources to share unique insights that can ultimately result in a higher standard of care.]]></description><link>https://www.afternow.io/this-augmented-reality-and-virtual-reality-presentation-tool-is-helping-medical-doctors-with-professional-development/</link><guid isPermaLink="false">60fead9c56ebec3a51c80cab</guid><category><![CDATA[blog]]></category><category><![CDATA[Solutions]]></category><category><![CDATA[healthcare]]></category><dc:creator><![CDATA[Anne McKinnon]]></dc:creator><pubDate>Mon, 16 Aug 2021 10:30:00 GMT</pubDate><media:content url="https://www.afternow.io/content/images/2021/08/hololens_2_medical_images.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://www.afternow.io/content/images/2021/08/hololens_2_medical_images.jpg" alt="This Augmented Reality and Virtual Reality Presentation Tool is Helping Medical Doctors with Professional Development"><p>In medical practice, accuracy and precision can be a matter of life and death. Each day, doctors are learning new techniques and adopting new tools to become even better at what they do: save lives. </p><p>Central to this is high-level communication between medical practitioners. Comprehension is a must. Technology is enabling doctors to establish better communication with their patients, and also with professional colleagues. </p><p>Advancing the development of communication for medical purposes, AfterNow <em>Prez </em>is a software product to make premium augmented reality and virtual reality presentations that drive professional development and collaboration. With a drag and drop, code free interface - that resembles Microsoft PowerPoint and Google Slides- you can make your own presentation using custom or <a href="https://www.slicer.org/?ref=afternow.io">ready-made assets</a> from scans or 3D assets stores, or collaborate with our team for bespoke projects. </p><figure class="kg-card kg-image-card"><img src="https://www.afternow.io/content/images/2021/08/hololens-healthcare2.jpg" class="kg-image" alt="This Augmented Reality and Virtual Reality Presentation Tool is Helping Medical Doctors with Professional Development" loading="lazy" width="780" height="300" srcset="https://www.afternow.io/content/images/size/w600/2021/08/hololens-healthcare2.jpg 600w, https://www.afternow.io/content/images/2021/08/hololens-healthcare2.jpg 780w" sizes="(min-width: 720px) 720px"></figure><p>From scanning technology to 3D tools, augmented reality and virtual reality, these technologies are bringing new perspectives to complex medical cases and providing the resources to share unique insights that can ultimately result in a higher standard of care. </p><figure class="kg-card kg-embed-card"><div class="sketchfab-embed-wrapper">
    <iframe title class width="640" height="360" src="https://sketchfab.com/models/d604eab39d6040dcaf528d311d280220/embed" frameborder="0" allow="autoplay; fullscreen; vr" allowvr allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true"></iframe></div></figure><h2 id="doctor-collaboration-augmented-reality-and-virtual-reality-presentations-are-helping-medical-professionals-communicate">Doctor Collaboration: Augmented Reality and Virtual Reality Presentations are Helping Medical Professionals Communicate</h2><p>Medical professionals around the world gather to exchange critical knowledge and skills. As medical care is becoming more personalized, and precise, having the tools and resources to present hyper-real demonstrations are becoming even more important. </p><p>Presentations in augmented reality and virtual reality make it easy to share and display interactive 3D models that assist with visual comprehension of human anatomy, procedures and medical processes, drawing from imaging such as MRI scans, CT scans, and DiComs. </p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/contact-us-today/">
			Contact Us
		</a>
	</div>
</div>
<!--kg-card-end: html--><p>Doctors can use models based on real human anatomy for the utmost accuracy. With augmented reality and virtual reality presentation software, medical professionals can view and interact with complex models, draw attention to specific components, and show how everything in the body is interconnected. <br></p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/kG9wKUd-jPo?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><p>3D brings context to content as the next big transformation in medical technology. </p><p>Medical practitioners are able to better understand what was happening in the body with 3D models, even getting a first-time glimpse at the movement of inner organs, and then being able to understand exactly what&#x2019;s going on in the body when they encounter rare medical conditions in the field.</p><p>More recently, medical institutions have used the HoloLens for remote collaboration and surgery assistance, achieving results that surpassed expectations:</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/fU7Dk8ZZSLY?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><h2 id="medical-training-ar-and-vr-presentations-drive-high-level-education-results">Medical Training: AR and VR Presentations Drive High-Level Education Results</h2><p>Access to 3D models has catalyzed the development of new surgical tools and techniques, including contouring templates and implant sizing models that can be used to size implants in the operating room, helping surgeons reduce time and increase the accuracy of complex procedures (<a href="https://formlabs.com/blog/3d-printing-in-medicine-healthcare/?ref=afternow.io">source</a>). </p><p>Integrated medical learning with 3D models from imaging such as MRI scans, CT scans, and DiComs in augmented reality and virtual reality presentations enable medical practitioners to see the body and interact with anatomy like never before. 3D presentations foster collaboration, open communication, and comprehension during in-person and remote educational opportunities. </p><figure class="kg-card kg-image-card"><img src="https://www.afternow.io/content/images/2021/08/HCJS-Group-on-Hololens.jpg" class="kg-image" alt="This Augmented Reality and Virtual Reality Presentation Tool is Helping Medical Doctors with Professional Development" loading="lazy" width="600" height="444" srcset="https://www.afternow.io/content/images/2021/08/HCJS-Group-on-Hololens.jpg 600w"></figure><p>As complexity has increased, it takes longer to acquire case-specific knowledge and to gain expertise in surgical procedures. So much so, that the existing system of surgical training is starting to show cracks, as up to 30% of graduating general surgery residents are unable to operate independently (<a href="https://www.statnews.com/2019/08/16/virtual-reality-improve-surgeon-training/?ref=afternow.io">Statnews</a>).</p><p><br>In a study, which was recently presented at the annual meeting of the Western Orthopedic Association, medical practitioners who were given VR training for a procedure completed it 20% faster and completed 38% more steps correctly than those in the traditionally trained group,&#x201D; wrote Justin Barad, M.D., an orthopedic surgeon and co-founder and CEO of Osso VR (<a href="https://www.statnews.com/2019/08/16/virtual-reality-improve-surgeon-training/?ref=afternow.io">stat news</a>). <br><br></p><figure class="kg-card kg-image-card"><img src="https://lh5.googleusercontent.com/trZiUXMLjLOMZ36dIJMg-LWufGK8wPODxpWPC33FAgf5kihVCUT4ryk7LMR8bAaYwSBx6cSs5xJ6QKYLtKwZFalS_ngcWA8BYFFoG83kHobYu01IPS49jnLLf3qV_J_eBrKWOCtc" class="kg-image" alt="This Augmented Reality and Virtual Reality Presentation Tool is Helping Medical Doctors with Professional Development" loading="lazy"></figure><p><br></p><h2 id="augmented-reality-and-virtual-reality-medical-use-cases">Augmented Reality and Virtual Reality Medical Use Cases</h2><p>Hepatocellular Carcinoma (HCC) is one of the most commonly found primary liver tumors and one of the most common cancers worldwide. One of many deployments of virtual reality in pre-surgical planning is to display a virtual 3D liver model. Studies done by researchers have shown that pre-surgical planning tools aid surgeons in planning surgery procedures for HCC as well as increasing post-surgery survival rate (<a href="https://ieeexplore.ieee.org/document/5608963/authors?ref=afternow.io#authors">IEEE</a>).</p><p>Similarly, congenital heart disease (CHD) is complex and requires the understanding of highly specific anomalous hearts. In this area, 3D models are invaluable for surgical planning (<a href="https://faseb.onlinelibrary.wiley.com/doi/abs/10.1096/fasebj.2018.32.1_supplement.lb534?ref=afternow.io">The FASEB Journal</a>).<br></p><figure class="kg-card kg-image-card"><img src="https://lh5.googleusercontent.com/HEXAheXDJ58grruM0EIjkJQQn2Oam7Ukrp_dYlMcW1eVJp0LzpD8VE9bExXSW0-1Uen6GmnFsa39gYvAbLoAjWv4X_KajmQSXeUkVwNPmudBUmbr60uFcvjlrFBaHoUjPIwNCoFF" class="kg-image" alt="This Augmented Reality and Virtual Reality Presentation Tool is Helping Medical Doctors with Professional Development" loading="lazy"></figure><p><br></p><h2 id="the-benefits-of-ar-and-vr-presentations-for-professional-development-in-medical-practice">The Benefits of AR and VR Presentations for Professional Development in Medical Practice</h2><p>3D scanning is becoming easier, highly accurate, simple, and seamlessly accessible to upload into 3D spaces like augmented reality and virtual reality, revolutionizing the way doctors can collaborate in person, and remotely. </p><p>It reduces time and cost in the operating room, producing long-term benefits for medical practitioners, and their patients, resulting in improved patient satisfaction, reducing anxiety and recovery time. <br></p><figure class="kg-card kg-embed-card"><div class="sketchfab-embed-wrapper">
    <iframe title class width="640" height="360" src="https://sketchfab.com/models/06025e628aa94e1fadcc8fc60ef6fa77/embed" frameborder="0" allow="autoplay; fullscreen; vr" allowvr allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true"></iframe></div></figure><p>With 3D collaborative presentations, doctors can achieve greater accuracy in determining the course of treatment in a highly specialized area of medical practice. Dissemination of knowledge becomes more accessible and more consistent. It&#x2019;s easy to update, share, and present worldwide, such as in the case of surgeon conferences. </p><figure class="kg-card kg-image-card"><img src="https://www.afternow.io/content/images/2021/08/hololens-healthcare.jpg" class="kg-image" alt="This Augmented Reality and Virtual Reality Presentation Tool is Helping Medical Doctors with Professional Development" loading="lazy" width="2000" height="1333" srcset="https://www.afternow.io/content/images/size/w600/2021/08/hololens-healthcare.jpg 600w, https://www.afternow.io/content/images/size/w1000/2021/08/hololens-healthcare.jpg 1000w, https://www.afternow.io/content/images/size/w1600/2021/08/hololens-healthcare.jpg 1600w, https://www.afternow.io/content/images/size/w2400/2021/08/hololens-healthcare.jpg 2400w" sizes="(min-width: 720px) 720px"></figure><p>Doctors can use augmented reality and virtual reality presentations to learn anatomy in the context of what they need to know clinically, precisely drawing attention to specific areas of a model, and speeding up the process of learning material by presenting it in an intuitive and naturally engaging way. </p><p>Virtual reality and augmented reality is rapidly accelerating professional development, collaboration, and applied results. </p><p>For a limited time, our team is offering custom demos at no-cost. Experience the benefits of augmented reality and virtual reality presentations in the context of your professional endeavors. </p><!--kg-card-begin: html-->
<div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/book-a-demo/">
			Request a demo
		</a>
	</div>
</div><!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[Wind Turbines: Virtual Reality and Augmented Reality Presentations for Sales, Demos, and Engineering]]></title><description><![CDATA[With Virtual Reality, your prospect can visit the inside of their future wind turbine before manufacturing it. It is enabling a better understanding of its properties, values, and operations.]]></description><link>https://www.afternow.io/wind-turbines-virtual-reality-and-augmented-reality-presentations-for-sales-demos-and-engineering/</link><guid isPermaLink="false">60f85552f946d1504613e816</guid><category><![CDATA[blog]]></category><category><![CDATA[Presentation]]></category><category><![CDATA[Solutions]]></category><dc:creator><![CDATA[Anne McKinnon]]></dc:creator><pubDate>Wed, 11 Aug 2021 18:05:47 GMT</pubDate><media:content url="https://www.afternow.io/content/images/2021/07/Alta_Wind_Energy_Center_from_Oak_Creek_Road.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://www.afternow.io/content/images/2021/07/Alta_Wind_Energy_Center_from_Oak_Creek_Road.jpg" alt="Wind Turbines: Virtual Reality and Augmented Reality Presentations for Sales, Demos, and Engineering"><p>Setting your products and services apart from the competition has never been more challenging and yet more essential to your business. AfterNow <em>Prez </em>allows your first impression to move from &#x201C;just another sales presentation&#x201D; to a singular experience for your prospects.</p><p>Even more, before the sales process begins, there is a great deal of work to do. 3D presentations can be used for critical initiatives such as demonstrating complex parts and mechanics that are otherwise inaccessible during the sales process, including product visualizations and advanced engineering demos that showcase your product&#x2019;s strengths.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://www.afternow.io/content/images/2021/07/2000px-Gansu.Guazhou.windfarm.croped.jpg" class="kg-image" alt="Wind Turbines: Virtual Reality and Augmented Reality Presentations for Sales, Demos, and Engineering" loading="lazy" width="2000" height="317" srcset="https://www.afternow.io/content/images/size/w600/2021/07/2000px-Gansu.Guazhou.windfarm.croped.jpg 600w, https://www.afternow.io/content/images/size/w1000/2021/07/2000px-Gansu.Guazhou.windfarm.croped.jpg 1000w, https://www.afternow.io/content/images/size/w1600/2021/07/2000px-Gansu.Guazhou.windfarm.croped.jpg 1600w, https://www.afternow.io/content/images/2021/07/2000px-Gansu.Guazhou.windfarm.croped.jpg 2000w" sizes="(min-width: 720px) 720px"><figcaption>Gansu Wind Farm</figcaption></figure><p>AfterNow <em>Prez </em>is a software product to make premium augmented reality and virtual reality presentations that deliver results. With a drag and drop, code free interface - that resembles Microsoft PowerPoint and Google Slides- you can make your own presentation using ready-made or custom assets, or collaborate with our team for bespoke projects.</p><p>In this post, we&#x2019;ll introduce you to augmented reality and virtual reality for wind turbine sales. The same techniques will apply for the sales and demonstrations of complex technology such as engines, land and air vehicles, and many more examples.</p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/contact-us-today/">
			Contact Us
		</a>
	</div>
</div><!--kg-card-end: html--><h2 id="drive-sales-with-augmented-reality-and-virtual-reality">Drive Sales With Augmented Reality and Virtual Reality</h2><p>Augmented reality and virtual reality are becoming more prolific in the workforce for remote collaboration, a trend rapidly accelerating as a result of the pandemic. In the next few years, it will become mainstream as the technology is widely adopted.</p><p>Today, these cutting-edge technologies have a novel effect that impresses your prospects and sets you apart from the competition. Getting immersed in a premium AR or VR experience leaves a memorable feeling of wonder and clearly differentiates your company and products as leading-edge.</p><p><br>AfterNow <em>Prez </em>makes it possible for anyone to easily create and remotely deliver a product or service presentation in virtual or augmented reality. Get your client excited and in awe at your products by presenting at scale in 3D with lifelike models:</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/CbFOVU5DR8A?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/book-a-demo/">
			Request a demo
		</a>
	</div>
</div><!--kg-card-end: html--><h2 id="bring-your-products-to-life-in-3d-virtual-demonstrations">Bring Your Products to Life in 3D: Virtual Demonstrations</h2><p>Cutting-edge technology and complex products are perfect to demonstrate in augmented reality and virtual reality. Allow customers to fully experience your products and services and immerse themselves in the vision of your product. Bring emotions and excitement to remote meetings, and enable your engineering team to demonstrate their work.<br></p><p>Wind turbines represent an incredible opportunity to deliver renewable energy, contributing to sustainable development. Upfront, it&#x2019;s a significant investment, but the return on investment for energy and the environment presents a wealth of opportunity that is easy to demonstrate in 3D.</p><h3 id="virtual-demonstrations">Virtual Demonstrations</h3><p>One major challenge in wind turbine sales is enabling access to the more complex infrastructure of a turbine on site, or during the manufacturing process as this is often outsourced. Presenting in AR and VR is highly effective in alleviating pain points and barriers in the sales process such as this that can make a significant result in the closure of a deal.</p><!--kg-card-begin: html--><div class="sketchfab-embed-wrapper"> <iframe title="Wind Turbine Cutaway: Renewable Energy" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="fullscreen; autoplay; vr" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/c2a8d9fd07b944ff93d38770558de94c/embed"> </iframe> <p style="font-size: 13px; font-weight: normal; margin: 5px; color: #4A4A4A;"> <a href="https://sketchfab.com/3d-models/wind-turbine-cutaway-renewable-energy-c2a8d9fd07b944ff93d38770558de94c?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=c2a8d9fd07b944ff93d38770558de94c&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> Wind Turbine Cutaway: Renewable Energy </a> by <a href="https://sketchfab.com/thunderstormfx?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=c2a8d9fd07b944ff93d38770558de94c&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> Thunderstorm FX&#xAE; </a> on <a href="https://sketchfab.com/?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=c2a8d9fd07b944ff93d38770558de94c&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;">Sketchfab</a></p></div><!--kg-card-end: html--><p>With Virtual Reality, your prospect can visit the inside of their future wind turbine before manufacturing it. It is enabling a better understanding of its properties, values, and operations.</p><p>Aside from demonstrating the structure and function of a wind turbine in virtual reality and augmented reality, there are additional factors to consider in the sales of wind turbines such as demonstrating:</p><p>&#x2022; maximum install capacity (grid connection)<br>&#x2022; site boundary<br>&#x2022; &#x2018;set back&#x2019; &#x2013; from roads, dwellings, overhead lines, and other buildings<br>&#x2022; environmental constraints<br>&#x2022; location of noise-sensitive dwellings and assessment criteria<br>&#x2022; location of visually-sensitive viewpoints<br>&#x2022; flickering shadows cast by rotating blades that may affect local dwellings&#x2022; turbine spacing</p><!--kg-card-begin: html--><div class="sketchfab-embed-wrapper"> <iframe title="Windturbine" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="fullscreen; autoplay; vr" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/92c772b37b6d49a397295091acabf482/embed?annotations_visible=0"> </iframe> <p style="font-size: 13px; font-weight: normal; margin: 5px; color: #4A4A4A;"> <a href="https://sketchfab.com/3d-models/windturbine-92c772b37b6d49a397295091acabf482?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=92c772b37b6d49a397295091acabf482&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> Windturbine </a> by <a href="https://sketchfab.com/animramesh?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=92c772b37b6d49a397295091acabf482&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> animramesh </a> on <a href="https://sketchfab.com/?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=92c772b37b6d49a397295091acabf482&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;">Sketchfab</a></p></div><!--kg-card-end: html--><p>While secondary, these factors also impact project approval, and can be complex to understand on a 2D map or screen, but are easily brought to life in 3D in augmented reality or virtual reality to demonstrate to a non-technical audience.</p><p>Hyper-real maps, and life-size models can be viewed and interacted with during a presentation or remote meeting using augmented reality or virtual reality headsets.</p><p>At a glance, it&#x2019;s possible for respective stakeholders to visualize the project, the mechanics of the wind turbine, its technical specifications, economic benefits, and give peace of mind that the well-being of the community has been carefully considered.</p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/contact-us-today/">
			Contact Us
		</a>
	</div>
</div><!--kg-card-end: html--><h3 id="engineering">Engineering</h3><p>Wind turbines are made of many assets from manufacturing hardware to electrical components. These designs vary per wind turbine manufacturer and can be key to differentiating from competitors.</p><p>Using augmented reality and virtual reality to visualize the various parts and components of a wind turbine and its mechanics is easy with 3D still and animated models. Take prospective clients through an augmented reality or virtual reality presentation that showcases rotor blades, electrical systems, energy production, and performance. Show how your product works and the difference that your design makes.</p><p>Whether this is a part of an internal initiative where engineers share their cutting-edge work, or as a part of the sales process, 3D visualizations have a powerful impact on comprehension, memory, and recall.</p><!--kg-card-begin: html--><div class="sketchfab-embed-wrapper"> <iframe title="Windkraftanlage mit Eingang" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="fullscreen; autoplay; vr" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/258d26f195854c20be8e59d8072ced1d/embed"> </iframe> <p style="font-size: 13px; font-weight: normal; margin: 5px; color: #4A4A4A;"> <a href="https://sketchfab.com/3d-models/windkraftanlage-mit-eingang-258d26f195854c20be8e59d8072ced1d?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=258d26f195854c20be8e59d8072ced1d&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> Windkraftanlage mit Eingang </a> by <a href="https://sketchfab.com/VIS-All?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=258d26f195854c20be8e59d8072ced1d&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;"> VIS-All-3D </a> on <a href="https://sketchfab.com/?utm_medium=embed&amp;utm_campaign=share-popup&amp;utm_content=258d26f195854c20be8e59d8072ced1d&amp;ref=afternow.io" target="_blank" style="font-weight: bold; color: #1CAAD9;">Sketchfab</a></p></div>
<!--kg-card-end: html--><h2 id="afternow-prez-a-frictionless-sales-process-that-delivers-results">AfterNow Prez: A Frictionless Sales Process That Delivers Results</h2><p>Research has shown that immersive experiences using AR or VR increase attention, retention, and satisfaction for education, training, and sales.</p><p>Get a significant edge over your competition and win more business. Our clients are using AR experiences to close billion-dollar deals in highly competitive markets.</p><p>Our frictionless experience enables anyone to experience mind-blowing immersive experiences, with no technical expertise required.</p><p>We start with an all-inclusive service to create your sales experience in VR, then manage all the headset logistics for your meetings. Rental &amp; shipping service brings ready-to-use AR or VR headsets to your prospect for the meeting.</p><p>It&apos;s as simple as delivering a PowerPoint over a zoom meeting.</p><!--kg-card-begin: html--><div class="d-flex">
<div class="btn-read-more custom-read-more mx-auto"><a href="https://www.afternow.io/book-a-demo/">Request a demo</a></div>
</div><!--kg-card-end: html--><h2 id="demo-experience-wind-turbines-in-3d">Demo: Experience Wind Turbines in 3D</h2><p>To experience our wind turbine demo presentation, install Prez on the Quest (<a href="https://www.afternow.io/how-to-join-an-afternow-prez-presentation/">click here for instructions</a>) or HoloLens (<a href="https://www.afternow.io/how-to-join-an-afternow-prez-presentation-on-hololens/">click here for instructions</a>)</p><p>Once Prez has installed start Prez on the login prompt select Guest access and enter the Prez ID: <strong>57617179</strong></p><!--kg-card-begin: html--><div class="d-flex">
	<div class="btn-read-more custom-read-more mx-auto">
		<a href="https://www.afternow.io/contact-us-today/">
			Contact Us
		</a>
	</div>
</div>
<!--kg-card-end: html-->]]></content:encoded></item><item><title><![CDATA[3D Thinking™: Getting Started with Augmented Reality and Virtual Reality]]></title><description><![CDATA[<p>For newcomers to Virtual Reality, Augmented Reality, and 3D, this three-step guide to getting started is for you. This means jumping from a 2D screen to a 3D environment, your new space to think, create, share, and boost your creativity.</p><p>The goal of the <em>3D Thinking&#x2122;</em> articles is to</p>]]></description><link>https://www.afternow.io/3d-thinking-getting-started-with-augmented-reality-and-virtual-reality/</link><guid isPermaLink="false">60a2fdf681b21421d9fa889f</guid><category><![CDATA[3D Thinking]]></category><category><![CDATA[lab]]></category><category><![CDATA[blog]]></category><dc:creator><![CDATA[Philippe Lewicki]]></dc:creator><pubDate>Wed, 23 Jun 2021 13:44:02 GMT</pubDate><media:content url="https://images.unsplash.com/photo-1621187980880-6e44120b8a95?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8YWxsfDEyfHx8fHx8Mnx8MTYyMTI5NDk2MA&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" medium="image"/><content:encoded><![CDATA[<img src="https://images.unsplash.com/photo-1621187980880-6e44120b8a95?crop=entropy&amp;cs=tinysrgb&amp;fit=max&amp;fm=jpg&amp;ixid=MnwxMTc3M3wwfDF8YWxsfDEyfHx8fHx8Mnx8MTYyMTI5NDk2MA&amp;ixlib=rb-1.2.1&amp;q=80&amp;w=2000" alt="3D Thinking&#x2122;: Getting Started with Augmented Reality and Virtual Reality"><p>For newcomers to Virtual Reality, Augmented Reality, and 3D, this three-step guide to getting started is for you. This means jumping from a 2D screen to a 3D environment, your new space to think, create, share, and boost your creativity.</p><p>The goal of the <em>3D Thinking&#x2122;</em> articles is to provide exercises, tools, technology, techniques to unlock a new dimension in your brain.</p><p>Because you&#x2019;ve spent most of your life in front of 2D flat screens like computers, tablets, TV, or phones, it&#x2019;s likely that your mind&#x2019;s natural 3D thinning capabilities have been limited.</p><p>Today, we have 3D technologies that break 2D limitations, enabling us to create and communicate in 3D, leveraging the full spatial capabilities of our brain.</p><p>This is the second article in the series (you can read the <a href="https://www.afternow.io/3d-thinking-quick-introduction/">introduction here</a>). &#xA0;In no time at all, you&#x2019;ll be well on your way to creating a premium presentation and delivering results with AfterNow <em>Prez</em>:</p><hr><h2 id="1choosing-an-augmented-reality-or-virtual-reality-headset">1- Choosing an Augmented Reality or Virtual Reality Headset</h2><p>The first step is to choose the right headset for your use case.</p><p>Augmented Reality headsets are just like a large pair of glasses, enabling you to continue to see the world around you, and then adding digital content into the real-world environment. It may be more comfortable for clients or first-time users at a conference or in a public setting. It&#x2019;s also ideal for in-person meetings, enabling individuals to remain connected in their physical space throughout the experience, but also fully engaged with content.</p><p>Virtual Reality headsets are more like a pair of ski goggles, and completely immerse you in a computer-generated environment. When absolute focus is required, for remote meetings, investor presentations, and high stakes presentations we often use virtual reality.</p><p>For all your business needs, AfterNow <em>Prez </em>is available on the HoloLens 1 and 2, Quest 1 &amp; 2, and VR mixed reality headsets.</p><p>You can always get in touch with our team to discuss the best approach for your business:</p><!--kg-card-begin: html--><div class="d-flex">
<div class="btn-read-more custom-read-more mx-auto"><a href="https://www.afternow.io/contact-us-today/">Contact US</a></div>
</div><!--kg-card-end: html--><p>To get started today, we recommend ordering the Oculus Quest 2 virtual reality headset. It&#x2019;s easy to set up as a standalone VR headset, meaning it can be used without a computer or phone. It&#x2019;s also perfect for remote presentations, demos, and has a great deal of content that you can explore while becoming familiar with 3D design.</p><hr><h2 id="2playing-games-to-develop-your-3d-skills">2- Playing Games to Develop Your 3D Skills</h2><p>Whether it&#x2019;s a presentation or game, the same skills are used to develop spatial awareness in digital 3D environments.</p><p>When your Oculus Quest 2 arrives, we recommend starting out with these fun games to get a sense of space, motion, and the potential of Augmented Reality and Virtual Reality:</p><ol><li><a href="https://www.oculus.com/experiences/quest/2448060205267927/?locale=en_US&amp;ref=afternow.io">Beat Saber</a> is a unique VR rhythm game where your goal is to slash beats (represented by small cubes) as they are coming at you. Every beat indicates which color saber you need to use and also the direction you need to match.</li><li><a href="https://www.oculus.com/experiences/quest/2108775495884888/?ranking_trace=0_2108775495884888_QUESTSEARCH_0a7aecc2-1742-4530-b9e8-52b76810fa07&amp;ref=afternow.io">Vader Immortal</a> invites you to step inside a galaxy far, far away. You&#x2019;ll navigate the dangers of a fortress, hone your lightsaber skills, and meet new characters along the way in this Star Wars VR series.</li><li><a href="https://www.oculus.com/experiences/quest/2807364355977144/?ranking_trace=0_2807364355977144_QUESTSEARCH_5853deea-c4e2-4b4b-8bc5-6196ca66c848&amp;ref=afternow.io">Shooty Fruity</a> is an award-winning multi-tasking fruit shooting game. Shooty Fruity combines job simulation with exhilarating combat. Take on new roles and unlock weapons to fight your way through your career. Scan shoot repeat!</li><li><a href="https://www.oculus.com/experiences/quest/1921533091289407?ref=afternow.io">Superhot VR</a> is a multi-award-winning, smash-hit that blurs the lines between cautious strategy and mayhem action. Time moves only when you move. Superhot VR&#x2019;s signature is slow-motion combat.</li></ol><p>Virtual Reality is one of those things that once you try it, you&#x2019;ll never look back.</p><p>AR and VR is transforming the way we think, transferring us back into a 3D world that is more intuitive than our 2D interfaces, and transforming the way we do business, increasing productivity, comprehension, and performance.</p><p>On this journey, these games will help you master <em>3D Thinking&#x2122;</em> and spatial awareness.</p><hr><h2 id="3apply-your-3d-skills-with-these-fun-vr-creator-tools">3- Apply Your 3D Skills with These Fun VR Creator Tools</h2><p>Now that you&#x2019;re a pro at navigating 3D experiences, it&#x2019;s time to get started making your own, taking 3D thinking to 3D making.</p><p>With these four easy-to-use creator tools, you can create your own 3D content while in VR:</p><ol><li><a href="https://www.oculus.com/experiences/quest/2322529091093901/?ref=afternow.io">Tilt Brush</a> lets you paint in 3D space with virtual reality. The possibilities are endless.</li><li><a href="https://www.oculus.com/experiences/quest/1587090851394426/?ref=afternow.io">Gravity Sketch</a> is about thinking and creating in 3D. Communicate ideas in 3D at each stage, capture work as an image or model to use in other phases of your workflow.</li><li><a href="https://www.maquette.ms/?ref=afternow.io">Maquette</a> makes spatial prototyping easy, quick, and immersive. It&#x2019;s a comprehensive toolset for spatial prototyping in VR.</li><li><a href="https://design.sketchbox3d.com/?ref=afternow.io">Sketchbox</a> allows you to instantly bring your 3D content into an infinite, collaborative workspace.</li></ol><p>The goal here is to become accustomed to moving around in a 3D environment, and designing a 3D environment with 3D content. Next, try each of these steps in the above programs:</p><ol><li>Make simple shapes in 3D including a cube, prism, and sphere</li><li>Position these at varying heights and distances in space</li><li>Walk around the objects within your space</li><li>Explore moving the objects around to learn about positioning and scale</li><li>Imagine if instead of shapes, you were presenting and positioning data. Consider how you could use 3D for communicating data in the context of scale.</li></ol><p>Finally, set up a parkour obstacle course and go through it by physically moving through space. Ensure you have an open and clear floor for this step.</p><p>When you&#x2019;re confident with the setup, share the experience with a colleague or friend. This is an opportunity to share what you have learned, and also to become familiar with onboarding new users.</p><p>Now, you&#x2019;ve just mastered the basics of spatial thinking, and are familiar with key tools to make 3D content while in virtual reality.</p><p>You can also use ready-made 3D models available on platforms like <a href="https://sketchfab.com/?ref=afternow.io">Sketchfab</a>, with integration into your AfterNow <em>Prez </em>presentation as simple as drag &amp; drop, no coding required.</p><p>If you are ready to onboard your team, whether that&#x2019;s in enterprise training, sales, remote collaboration, investor presentations, or other applications, we offer customized<em> 3D Thinking&#x2122;</em> Workshops for each use case.</p><hr><!--kg-card-begin: html--><div class="d-flex">
<div class="btn-read-more custom-read-more mx-auto"><a href="https://www.afternow.io/book-a-demo/">Request a demo</a></div>
</div><!--kg-card-end: html-->]]></content:encoded></item></channel></rss>