Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 376 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 376 Bytes

ARGeoKit

A helper library for ARKit to place entities w.r.t real life coordinates

Usage

// Calculate an offsetVector of the two CLLocations
let location1: CLLocation = ...
let location2: CLLocation = ...

guard var offsetVector = location1.vector(to: location2) else {
    print("Couldn't compute offset vector from location1 to location2")
    return
}