This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Hexagon polygon coordinates | |
extension TurbulenceItem { | |
var hexagonCoordinates: [CLLocationCoordinate2D] { | |
let center = self.coordinate | |
let lngNorthWest = self.bbox[0] // bbox is 4 points in corners order: left top, right top, right bottom, left bottom | |
let leftPoint = CLLocationCoordinate2D( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// DownloadProgress.swift | |
// | |
import Foundation | |
class DownloadProgress { | |
// MARK: - Properties | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import UIKit | |
import AVFoundation | |
import lf | |
struct RTMPStreamSettings { | |
var uri: String! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// CropViewController.swift | |
// | |
// | |
// Created by Alex Kovalov on 10/6/16. | |
// Copyright © 2016 . All rights reserved. | |
// | |
import Foundation | |
import UIKit |