WorldCoordinate
class WorldCoordinate : NSObject
Point in the ISO coordinate system (unit is a meter).
This coordinate system is used to represent the position of an object relative to the device camera’s position in physical space. The origin of this coordinate system is a point projected from a camera position to a road plane.
-
Distance in front of the camera
Declaration
Swift
var x: Double { get }
-
Distance on the left of the camera
Declaration
Swift
var y: Double { get }
-
Distance above the camera
Declaration
Swift
var z: Double { get }
-
Declaration
Swift
init(x: Double, y: Double, z: Double)