├── Images.xcassets └── AppIcon.appiconset │ ├── Contents.json │ ├── icon_128.png │ ├── icon_128@2x.png │ ├── icon_16.png │ ├── icon_16@2x.png │ ├── icon_256.png │ ├── icon_256@2x.png │ ├── icon_32.png │ ├── icon_32@2x.png │ ├── icon_512.png │ └── icon_512@2x.png ├── Info.plist ├── LayerExplorer.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Source ├── ActionButtonViewController.swift ├── AffineTransformInspectorViewController.swift ├── AppDelegate.swift ├── Base.lproj │ └── Main.storyboard ├── BoundsInspectorViewController.swift ├── BoundsTiledLayerDelegate.swift ├── CanvasView.swift ├── CanvasViewController.swift ├── Document.swift ├── FrameInspectorViewController.swift ├── InfiniteClipView.swift ├── InspectorPaneViewController.swift ├── LayerPropertyFormatter.swift ├── LayerVisualization.swift ├── PositionInspectorViewController.swift └── TransformInspectorViewController.swift ├── example.png ├── icon.sketch └── readme.md /Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Images.xcassets/AppIcon.appiconset/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Images.xcassets/AppIcon.appiconset/icon_128.png -------------------------------------------------------------------------------- /Images.xcassets/AppIcon.appiconset/icon_128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Images.xcassets/AppIcon.appiconset/icon_128@2x.png -------------------------------------------------------------------------------- /Images.xcassets/AppIcon.appiconset/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Images.xcassets/AppIcon.appiconset/icon_16.png -------------------------------------------------------------------------------- /Images.xcassets/AppIcon.appiconset/icon_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Images.xcassets/AppIcon.appiconset/icon_16@2x.png -------------------------------------------------------------------------------- /Images.xcassets/AppIcon.appiconset/icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Images.xcassets/AppIcon.appiconset/icon_256.png -------------------------------------------------------------------------------- /Images.xcassets/AppIcon.appiconset/icon_256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Images.xcassets/AppIcon.appiconset/icon_256@2x.png -------------------------------------------------------------------------------- /Images.xcassets/AppIcon.appiconset/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Images.xcassets/AppIcon.appiconset/icon_32.png -------------------------------------------------------------------------------- /Images.xcassets/AppIcon.appiconset/icon_32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Images.xcassets/AppIcon.appiconset/icon_32@2x.png -------------------------------------------------------------------------------- /Images.xcassets/AppIcon.appiconset/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Images.xcassets/AppIcon.appiconset/icon_512.png -------------------------------------------------------------------------------- /Images.xcassets/AppIcon.appiconset/icon_512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Images.xcassets/AppIcon.appiconset/icon_512@2x.png -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Info.plist -------------------------------------------------------------------------------- /LayerExplorer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/LayerExplorer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LayerExplorer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/LayerExplorer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Source/ActionButtonViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/ActionButtonViewController.swift -------------------------------------------------------------------------------- /Source/AffineTransformInspectorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/AffineTransformInspectorViewController.swift -------------------------------------------------------------------------------- /Source/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/AppDelegate.swift -------------------------------------------------------------------------------- /Source/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Source/BoundsInspectorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/BoundsInspectorViewController.swift -------------------------------------------------------------------------------- /Source/BoundsTiledLayerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/BoundsTiledLayerDelegate.swift -------------------------------------------------------------------------------- /Source/CanvasView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/CanvasView.swift -------------------------------------------------------------------------------- /Source/CanvasViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/CanvasViewController.swift -------------------------------------------------------------------------------- /Source/Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/Document.swift -------------------------------------------------------------------------------- /Source/FrameInspectorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/FrameInspectorViewController.swift -------------------------------------------------------------------------------- /Source/InfiniteClipView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/InfiniteClipView.swift -------------------------------------------------------------------------------- /Source/InspectorPaneViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/InspectorPaneViewController.swift -------------------------------------------------------------------------------- /Source/LayerPropertyFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/LayerPropertyFormatter.swift -------------------------------------------------------------------------------- /Source/LayerVisualization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/LayerVisualization.swift -------------------------------------------------------------------------------- /Source/PositionInspectorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/PositionInspectorViewController.swift -------------------------------------------------------------------------------- /Source/TransformInspectorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/Source/TransformInspectorViewController.swift -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/example.png -------------------------------------------------------------------------------- /icon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/icon.sketch -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corvino/LayerExplorer/HEAD/readme.md --------------------------------------------------------------------------------