iOS Quick Start
Create an app that allows you to paint real life surfaces with virtual paint.
Last updated
Create an app that allows you to paint real life surfaces with virtual paint.
Last updated
Painting a real room with virtual paint is not a trivial task, there is a lot of complexity involved as well as a lot of domain specific knowledge that is required to do it correctly. With Remodel-AR, you don’t need to know anything about how it works, just what you want to do with it. Let Remodel-AR do all the heavy lifting for you.
Creating a new app is as simple as creating an and binding it to your ARKit scene if using UIKit. Using SwiftUI is even easier, just create an ARView using and add it to your view.
(see for a step by step setup)
Using the Remodel-AR framework with SwiftUI is quite simple. You only need to create an object, then initialize and add an ARView instance as shown below.
Saving a 3D model of the scene can be done using the following code. The file is shared as a USDZ file that anyone with an iOS device can place in their own space to view.
UIKit:
SwiftUI (add this view):
Resetting the scene can be used to start over, removing all geometry from the view.
UIKit:
SwiftUI (add this view):
If at any point you need help from the Passio team, please reach out to us at support@passiolife.com
(see for a step by step setup)
To create a basic Remodel-AR based app, you initialize a new instance of the structure, and supply an instance of ARSCNView, as the following code shows: