Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SceneKit Unit of Measure

If I was to create a SCNBox geometry in SceneKit with a width, height and length of 5, how does this translate to real world measurements?

For example, what measurements would I use to create the same size cube in say SketchUp?

Does 1 unit in SceneKit equal 10mm or 100mm?

like image 763
AJ_ Avatar asked Feb 10 '23 14:02

AJ_


1 Answers

in SceneKit distances are specified in meters. So your box would be 5m wide.

like image 136
mnuages Avatar answered Feb 13 '23 07:02

mnuages