Skip to content

Commit

Permalink
AR Ruler App
Browse files Browse the repository at this point in the history
  • Loading branch information
TBXark committed Sep 25, 2017
0 parents commit e6a703d
Show file tree
Hide file tree
Showing 102 changed files with 4,607 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .gitignore
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
2 changes: 2 additions & 0 deletions .rswiftignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
**/*.png
**/*.jpg
Binary file added Icon.sketch
Binary file not shown.
5 changes: 5 additions & 0 deletions Podfile
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
20 changes: 20 additions & 0 deletions Podfile.lock
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
617 changes: 617 additions & 0 deletions Ruler.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Ruler.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Ruler.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions Ruler/AppDelegate/AppDelegate.swift
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) {}


}

Loading

0 comments on commit e6a703d

Please sign in to comment.