-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e6a703d
Showing
102 changed files
with
4,607 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Created by https://www.gitignore.io/api/swift | ||
|
||
### Swift ### | ||
# Xcode | ||
# | ||
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore | ||
|
||
## Build generated | ||
build/ | ||
DerivedData/ | ||
|
||
## Various settings | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata/ | ||
|
||
## Other | ||
*.moved-aside | ||
*.xccheckout | ||
*.xcscmblueprint | ||
|
||
## Obj-C/Swift specific | ||
*.hmap | ||
*.ipa | ||
*.dSYM.zip | ||
*.dSYM | ||
|
||
## Playgrounds | ||
timeline.xctimeline | ||
playground.xcworkspace | ||
|
||
# Swift Package Manager | ||
# | ||
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. | ||
# Packages/ | ||
# Package.pins | ||
.build/ | ||
|
||
# CocoaPods - Refactored to standalone file | ||
Pods | ||
Ruler/Source/R.generated.swift | ||
# Carthage - Refactored to standalone file | ||
|
||
# fastlane | ||
# | ||
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the | ||
# screenshots whenever they are needed. | ||
# For more information about the recommended setup visit: | ||
# https://docs.fastlane.tools/best-practices/source-control/#source-control | ||
|
||
fastlane/report.xml | ||
fastlane/Preview.html | ||
fastlane/screenshots | ||
fastlane/test_output | ||
|
||
# End of https://www.gitignore.io/api/swift |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
**/*.png | ||
**/*.jpg |
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
target 'Ruler' do | ||
use_frameworks! | ||
pod 'OpenCV' | ||
pod 'R.swift' | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
PODS: | ||
- OpenCV (3.2.0): | ||
- OpenCV/Dynamic (= 3.2.0) | ||
- OpenCV/Dynamic (3.2.0) | ||
- R.swift (3.3.0): | ||
- R.swift.Library (~> 3.0.2) | ||
- R.swift.Library (3.0.2) | ||
|
||
DEPENDENCIES: | ||
- OpenCV | ||
- R.swift | ||
|
||
SPEC CHECKSUMS: | ||
OpenCV: 0f7ab403d1e81769bc6f4f524c3c6928ecb1fdb8 | ||
R.swift: bde9704d50ff36820f49e266bc88ef545e1e9b36 | ||
R.swift.Library: fbdec16c9802ad104fc1ba53415dc190e6ec5c73 | ||
|
||
PODFILE CHECKSUM: e5d35b3dab5712e772c691383deac10a3227ad20 | ||
|
||
COCOAPODS: 1.3.1 |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// | ||
// AppDelegate.swift | ||
// Ruler | ||
// | ||
// Created by Tbxark on 18/09/2017. | ||
// Copyright © 2017 Tbxark. All rights reserved. | ||
// | ||
|
||
import UIKit | ||
|
||
@UIApplicationMain | ||
class AppDelegate: UIResponder, UIApplicationDelegate { | ||
|
||
var window: UIWindow? | ||
|
||
|
||
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { | ||
window = UIWindow(frame: UIScreen.main.bounds) | ||
window?.rootViewController = RulerARProViewController() | ||
window?.makeKeyAndVisible() | ||
return true | ||
} | ||
|
||
func applicationWillResignActive(_ application: UIApplication) {} | ||
|
||
func applicationDidEnterBackground(_ application: UIApplication) {} | ||
|
||
func applicationWillEnterForeground(_ application: UIApplication) {} | ||
|
||
func applicationDidBecomeActive(_ application: UIApplication) {} | ||
|
||
func applicationWillTerminate(_ application: UIApplication) {} | ||
|
||
|
||
} | ||
|
Oops, something went wrong.