I am getting a UnsafeMutablePointer<CGPoint>
that points to an array of one or two elements, I would like to build a Swift function converting UnsafeMutablePointer<CGPoint>
to CGPoint
that wouldn't require me to specify the expected size of the array, is it possible ?
Thank you