I need to tile a texture across a plane with updating geometry (floor fill), and I need the texture to be scaled to fit real-world dimensions in centimeters. It is a square floor tile of 50cm, and the texture size is 1024 pixels. How do I convert pixels to meters in ARKit? i know that I have to use SCNMatrix4MakeScale on the SCNMaterial diffuse.contentsTransform but not sure what properties to set to get it accurate.
How to resize a texture for meters in ARKit
279 Views Asked by Lee Probert At
1
There are 1 best solutions below
Related Questions in ARKIT
- How to create a DAE file to use in SceneKit?
- How to store additional information in SCNNode?
- How to find obstacles in horizontal surface using ARKIT of iOS 11(Scenekit)?
- SceneKit - Rotate object around X and Z axis
- Using SCNFloor in ARKIt
- Draw straight line from start value to end value ARKit
- ARKit drop a custom object in the scene
- How to use DAE file with different Scene Graphs in iOS SceneKit
- How to place a 3D object above the other one using ARKit?
- How to detect collision between nodes of two different .scn files in Scenekit- iOS?
- Reliable access and modify captured camera frames under SceneKit
- Swift: How to set size of particle effects with SCNParticleSystem?
- Scanning a 3d object in ARKit via video camera?
- ARKit and Vision frameworks for Object Recognition
- How do ARCore or ARKit produce real-time augmentations of live video?
Related Questions in SCNMATERIAL
- How do I use a web mercator projection map for SCNMaterial on an SCNShere geometry?
- Scenekit using uiview as material texture breaks with autolayout
- SceneKit, how to support opacity (or transparency) map properly for geometry on the back?
- How to resize a texture for meters in ARKit
- Blur effect in SceneKit material
- SKVideoNode not respecting aspect ratio
- Scenekit: recolor diffuse texture with shader
- Apply .jpg and .mtl file to .obj file in SceneKit
- Scenekit: How to get all of node's materials?
- How can I print out shader modifier output in ARKit?
- How do I efficiently map a high-res SKScene in SceneKit?
- SceneKit: understanding how to set scale for floor material?
- Issue with geometry rendering - SceneKit
- Hide area of an SCNMaterial
- SceneKit selectively color a face by a certain index
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
What you might do is use the physical size of
SCNNodethat you are working with and determine how much squares of 50x50cm could it fit. After you get this coefficient, use it inside thecontentsTransformto achieve needed behavior. Please refer to this answer for code snippets and more hints that you might find useful.