├── .github └── workflows │ └── swift.yml ├── .gitignore ├── .jazzy.yaml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CGLayout.podspec ├── CGLayout.xcodeproj ├── CGLayoutTests_Info.plist ├── CGLayout_Info.plist ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── CGLayout-Package.xcscheme │ └── xcschememanagement.plist ├── CONTRIBUTING.md ├── Example ├── CGLayout-macOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── CGLayout-macOSTests │ ├── CGLayout_macOSTests.swift │ └── Info.plist ├── CGLayout-tvOS │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ └── Info.plist ├── CGLayout.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── CGLayout │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── LayoutViewController.swift │ ├── ProfileViewController.swift │ ├── ScrollLayoutGuideController.swift │ ├── SecondViewController.swift │ ├── SecondViewControllerAutolayout.swift │ ├── TableViewController.swift │ └── ViewController.swift ├── CGLayoutPlayground.playground │ ├── Pages │ │ ├── LayoutTests.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── LayoutWorkspaceAlign.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ │ ├── LayoutWorkspaceLimit.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ │ ├── LayoutWorkspacePull.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ │ ├── RectAnchors.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ │ ├── Stack.xcplaygroundpage │ │ │ └── Contents.swift │ │ └── SwiftUI.xcplaygroundpage │ │ │ └── Contents.swift │ └── contents.xcplayground ├── CGLayout_Example.entitlements ├── CONTRIBUTING.md ├── Podfile └── Tests │ └── Info.plist ├── LICENSE ├── Package.swift ├── README.md ├── Resources ├── benchmark_result.png ├── layout1.png ├── layout2.png ├── logo.png └── logo.xd ├── Sources ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── common.cglayout.swift │ ├── container.cglayout.swift │ ├── coordinate.cglayout.swift │ ├── core.cglayout.swift │ ├── deprecated.cglayout.swift │ ├── evolution.cglayout │ ├── anchors.cglayout.swift │ ├── backend.anchors.cglayout.swift │ ├── system.cglayout.swift │ └── workspace.cglayout.swift │ ├── layoutBlock.cglayout.swift │ ├── layoutConstraint.cglayout.swift │ ├── layoutGuide.cglayout.swift │ ├── private.cglayout.swift │ ├── rtl.cglayout.swift │ ├── scroll.layoutGuide.cglayout.swift │ ├── stack.layoutGuide.cglayout.swift │ └── support.cglayout.swift ├── Tests ├── CGLayoutTests │ ├── CGLayoutTests.swift │ ├── Tests.swift │ ├── XCTestManifests.swift │ └── support_linux.tests.swift └── LinuxMain.swift ├── docs ├── Classes.html ├── Classes │ ├── LayerPlaceholder.html │ ├── LayoutBlock.html │ ├── LayoutGuide.html │ ├── LayoutPlaceholder.html │ ├── MutableLayoutConstraint.html │ ├── ScrollAnimationDeceleration.html │ ├── ScrollLayoutGuide.html │ ├── StackLayoutGuide.html │ └── ViewPlaceholder.html ├── Enums.html ├── Enums │ └── LayoutAnchor.html ├── Extensions.html ├── Extensions │ ├── CALayer.html │ ├── CGRect.html │ ├── EdgeInsets.html │ ├── Equatable.html │ ├── LayoutCoordinateSpace.html │ ├── LayoutGuide.html │ ├── NSControl.html │ ├── NSScrollView.html │ ├── NSView.html │ ├── StackLayoutGuide.html │ ├── String.html │ ├── UIImageView.html │ ├── UILabel.html │ ├── UILabel │ │ └── Baseline.html │ ├── UIScrollView.html │ └── UIView.html ├── Protocols.html ├── Protocols │ ├── AdaptiveLayoutElement.html │ ├── AdjustableLayoutElement.html │ ├── ElementInLayoutTime.html │ ├── Extended.html │ ├── Extensible.html │ ├── LayoutBlockProtocol.html │ ├── LayoutConstraintProtocol.html │ ├── LayoutCoordinateSpace.html │ ├── LayoutElement.html │ ├── LayoutElementsContainer.html │ ├── LayoutSnapshotProtocol.html │ ├── RectBasedConstraint.html │ ├── RectBasedElement.html │ ├── RectBasedLayout.html │ └── TextPresentedElement.html ├── Structs.html ├── Structs │ ├── AdjustLayoutConstraint.html │ ├── AnonymConstraint.html │ ├── AnyRectBasedConstraint.html │ ├── AnyRectBasedLayout.html │ ├── Baseline.html │ ├── BaselineLayoutConstraint.html │ ├── Bottom.html │ ├── Bottom │ │ ├── AlignDependence.html │ │ ├── LimitDependence.html │ │ └── PullDependence.html │ ├── Center.html │ ├── Center │ │ └── AlignDependence.html │ ├── ContentLayoutConstraint.html │ ├── Equal.html │ ├── Inset.html │ ├── Layout.html │ ├── Layout │ │ ├── Alignment.html │ │ ├── Alignment │ │ │ ├── Horizontal.html │ │ │ └── Vertical.html │ │ ├── Filling.html │ │ └── Filling │ │ │ ├── Horizontal.html │ │ │ └── Vertical.html │ ├── LayoutConstraint.html │ ├── LayoutScheme.html │ ├── Leading.html │ ├── Leading │ │ ├── Align.html │ │ ├── Align │ │ │ └── Dependence.html │ │ ├── Limit.html │ │ ├── Limit │ │ │ └── Dependence.html │ │ ├── Pull.html │ │ └── Pull │ │ │ └── Dependence.html │ ├── Left.html │ ├── Left │ │ ├── AlignDependence.html │ │ ├── LimitDependence.html │ │ └── PullDependence.html │ ├── Right.html │ ├── Right │ │ ├── AlignDependence.html │ │ ├── LimitDependence.html │ │ └── PullDependence.html │ ├── ScrollDirection.html │ ├── Size.html │ ├── StackDistribution.html │ ├── StackDistribution │ │ ├── Alignment.html │ │ ├── Direction.html │ │ ├── Filling.html │ │ └── Spacing.html │ ├── StackLayoutScheme.html │ ├── StringLayoutAnchor.html │ ├── Top.html │ ├── Top │ │ ├── AlignDependence.html │ │ ├── LimitDependence.html │ │ └── PullDependence.html │ ├── Trailing.html │ └── Trailing │ │ ├── Align.html │ │ ├── Align │ │ └── Dependence.html │ │ ├── Limit.html │ │ ├── Limit │ │ └── Dependence.html │ │ ├── Pull.html │ │ └── Pull │ │ └── Dependence.html ├── Typealiases.html ├── badge.svg ├── css │ ├── highlight.css │ └── jazzy.css ├── docsets │ ├── CGLayout.docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Classes.html │ │ │ ├── Classes │ │ │ │ ├── LayerPlaceholder.html │ │ │ │ ├── LayoutBlock.html │ │ │ │ ├── LayoutGuide.html │ │ │ │ ├── LayoutPlaceholder.html │ │ │ │ ├── MutableLayoutConstraint.html │ │ │ │ ├── ScrollAnimationDeceleration.html │ │ │ │ ├── ScrollLayoutGuide.html │ │ │ │ ├── StackLayoutGuide.html │ │ │ │ └── ViewPlaceholder.html │ │ │ ├── Enums.html │ │ │ ├── Enums │ │ │ │ └── LayoutAnchor.html │ │ │ ├── Extensions.html │ │ │ ├── Extensions │ │ │ │ ├── CALayer.html │ │ │ │ ├── CGRect.html │ │ │ │ ├── EdgeInsets.html │ │ │ │ ├── Equatable.html │ │ │ │ ├── LayoutCoordinateSpace.html │ │ │ │ ├── LayoutGuide.html │ │ │ │ ├── NSControl.html │ │ │ │ ├── NSScrollView.html │ │ │ │ ├── NSView.html │ │ │ │ ├── StackLayoutGuide.html │ │ │ │ ├── String.html │ │ │ │ ├── UIImageView.html │ │ │ │ ├── UILabel.html │ │ │ │ ├── UILabel │ │ │ │ │ └── Baseline.html │ │ │ │ ├── UIScrollView.html │ │ │ │ └── UIView.html │ │ │ ├── Protocols.html │ │ │ ├── Protocols │ │ │ │ ├── AdaptiveLayoutElement.html │ │ │ │ ├── AdjustableLayoutElement.html │ │ │ │ ├── ElementInLayoutTime.html │ │ │ │ ├── Extended.html │ │ │ │ ├── Extensible.html │ │ │ │ ├── LayoutBlockProtocol.html │ │ │ │ ├── LayoutConstraintProtocol.html │ │ │ │ ├── LayoutCoordinateSpace.html │ │ │ │ ├── LayoutElement.html │ │ │ │ ├── LayoutElementsContainer.html │ │ │ │ ├── LayoutSnapshotProtocol.html │ │ │ │ ├── RectBasedConstraint.html │ │ │ │ ├── RectBasedElement.html │ │ │ │ ├── RectBasedLayout.html │ │ │ │ └── TextPresentedElement.html │ │ │ ├── Structs.html │ │ │ ├── Structs │ │ │ │ ├── AdjustLayoutConstraint.html │ │ │ │ ├── AnonymConstraint.html │ │ │ │ ├── AnyRectBasedConstraint.html │ │ │ │ ├── AnyRectBasedLayout.html │ │ │ │ ├── Baseline.html │ │ │ │ ├── BaselineLayoutConstraint.html │ │ │ │ ├── Bottom.html │ │ │ │ ├── Bottom │ │ │ │ │ ├── AlignDependence.html │ │ │ │ │ ├── LimitDependence.html │ │ │ │ │ └── PullDependence.html │ │ │ │ ├── Center.html │ │ │ │ ├── Center │ │ │ │ │ └── AlignDependence.html │ │ │ │ ├── ContentLayoutConstraint.html │ │ │ │ ├── Equal.html │ │ │ │ ├── Inset.html │ │ │ │ ├── Layout.html │ │ │ │ ├── Layout │ │ │ │ │ ├── Alignment.html │ │ │ │ │ ├── Alignment │ │ │ │ │ │ ├── Horizontal.html │ │ │ │ │ │ └── Vertical.html │ │ │ │ │ ├── Filling.html │ │ │ │ │ └── Filling │ │ │ │ │ │ ├── Horizontal.html │ │ │ │ │ │ └── Vertical.html │ │ │ │ ├── LayoutConstraint.html │ │ │ │ ├── LayoutScheme.html │ │ │ │ ├── Leading.html │ │ │ │ ├── Leading │ │ │ │ │ ├── Align.html │ │ │ │ │ ├── Align │ │ │ │ │ │ └── Dependence.html │ │ │ │ │ ├── Limit.html │ │ │ │ │ ├── Limit │ │ │ │ │ │ └── Dependence.html │ │ │ │ │ ├── Pull.html │ │ │ │ │ └── Pull │ │ │ │ │ │ └── Dependence.html │ │ │ │ ├── Left.html │ │ │ │ ├── Left │ │ │ │ │ ├── AlignDependence.html │ │ │ │ │ ├── LimitDependence.html │ │ │ │ │ └── PullDependence.html │ │ │ │ ├── Right.html │ │ │ │ ├── Right │ │ │ │ │ ├── AlignDependence.html │ │ │ │ │ ├── LimitDependence.html │ │ │ │ │ └── PullDependence.html │ │ │ │ ├── ScrollDirection.html │ │ │ │ ├── Size.html │ │ │ │ ├── StackDistribution.html │ │ │ │ ├── StackDistribution │ │ │ │ │ ├── Alignment.html │ │ │ │ │ ├── Direction.html │ │ │ │ │ ├── Filling.html │ │ │ │ │ └── Spacing.html │ │ │ │ ├── StackLayoutScheme.html │ │ │ │ ├── StringLayoutAnchor.html │ │ │ │ ├── Top.html │ │ │ │ ├── Top │ │ │ │ │ ├── AlignDependence.html │ │ │ │ │ ├── LimitDependence.html │ │ │ │ │ └── PullDependence.html │ │ │ │ ├── Trailing.html │ │ │ │ └── Trailing │ │ │ │ │ ├── Align.html │ │ │ │ │ ├── Align │ │ │ │ │ └── Dependence.html │ │ │ │ │ ├── Limit.html │ │ │ │ │ ├── Limit │ │ │ │ │ └── Dependence.html │ │ │ │ │ ├── Pull.html │ │ │ │ │ └── Pull │ │ │ │ │ └── Dependence.html │ │ │ ├── Typealiases.html │ │ │ ├── badge.svg │ │ │ ├── css │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ └── gh.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jazzy.js │ │ │ │ └── jquery.min.js │ │ │ ├── search.json │ │ │ └── undocumented.json │ │ │ └── docSet.dsidx │ └── CGLayout.tgz ├── img │ ├── carat.png │ ├── dash.png │ └── gh.png ├── index.html ├── js │ ├── jazzy.js │ └── jquery.min.js ├── search.json └── undocumented.json └── linux_example ├── .gitignore ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── CGLSDL │ ├── app.swift │ ├── main.swift │ └── view.swift └── Tests ├── CGLSDLTests ├── CGLSDLTests.swift └── XCTestManifests.swift └── LinuxMain.swift /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CGLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/CGLayout.podspec -------------------------------------------------------------------------------- /CGLayout.xcodeproj/CGLayoutTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/CGLayout.xcodeproj/CGLayoutTests_Info.plist -------------------------------------------------------------------------------- /CGLayout.xcodeproj/CGLayout_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/CGLayout.xcodeproj/CGLayout_Info.plist -------------------------------------------------------------------------------- /CGLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/CGLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CGLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/CGLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CGLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/CGLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CGLayout.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/CGLayout.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /CGLayout.xcodeproj/xcshareddata/xcschemes/CGLayout-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/CGLayout.xcodeproj/xcshareddata/xcschemes/CGLayout-Package.xcscheme -------------------------------------------------------------------------------- /CGLayout.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/CGLayout.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/CGLayout-macOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-macOS/AppDelegate.swift -------------------------------------------------------------------------------- /Example/CGLayout-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-macOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-macOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CGLayout-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-macOS/Info.plist -------------------------------------------------------------------------------- /Example/CGLayout-macOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-macOS/ViewController.swift -------------------------------------------------------------------------------- /Example/CGLayout-macOSTests/CGLayout_macOSTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-macOSTests/CGLayout_macOSTests.swift -------------------------------------------------------------------------------- /Example/CGLayout-macOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-macOSTests/Info.plist -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CGLayout-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout-tvOS/Info.plist -------------------------------------------------------------------------------- /Example/CGLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CGLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CGLayout/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout/AppDelegate.swift -------------------------------------------------------------------------------- /Example/CGLayout/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/CGLayout/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CGLayout/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CGLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout/Info.plist -------------------------------------------------------------------------------- /Example/CGLayout/LayoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout/LayoutViewController.swift -------------------------------------------------------------------------------- /Example/CGLayout/ProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout/ProfileViewController.swift -------------------------------------------------------------------------------- /Example/CGLayout/ScrollLayoutGuideController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout/ScrollLayoutGuideController.swift -------------------------------------------------------------------------------- /Example/CGLayout/SecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout/SecondViewController.swift -------------------------------------------------------------------------------- /Example/CGLayout/SecondViewControllerAutolayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout/SecondViewControllerAutolayout.swift -------------------------------------------------------------------------------- /Example/CGLayout/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout/TableViewController.swift -------------------------------------------------------------------------------- /Example/CGLayout/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout/ViewController.swift -------------------------------------------------------------------------------- /Example/CGLayoutPlayground.playground/Pages/LayoutTests.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayoutPlayground.playground/Pages/LayoutTests.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Example/CGLayoutPlayground.playground/Pages/LayoutWorkspaceAlign.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayoutPlayground.playground/Pages/LayoutWorkspaceAlign.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Example/CGLayoutPlayground.playground/Pages/LayoutWorkspaceAlign.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayoutPlayground.playground/Pages/LayoutWorkspaceAlign.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Example/CGLayoutPlayground.playground/Pages/LayoutWorkspaceLimit.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayoutPlayground.playground/Pages/LayoutWorkspaceLimit.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Example/CGLayoutPlayground.playground/Pages/LayoutWorkspaceLimit.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayoutPlayground.playground/Pages/LayoutWorkspaceLimit.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Example/CGLayoutPlayground.playground/Pages/LayoutWorkspacePull.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayoutPlayground.playground/Pages/LayoutWorkspacePull.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Example/CGLayoutPlayground.playground/Pages/LayoutWorkspacePull.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayoutPlayground.playground/Pages/LayoutWorkspacePull.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Example/CGLayoutPlayground.playground/Pages/RectAnchors.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayoutPlayground.playground/Pages/RectAnchors.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Example/CGLayoutPlayground.playground/Pages/RectAnchors.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayoutPlayground.playground/Pages/RectAnchors.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Example/CGLayoutPlayground.playground/Pages/Stack.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayoutPlayground.playground/Pages/Stack.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Example/CGLayoutPlayground.playground/Pages/SwiftUI.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayoutPlayground.playground/Pages/SwiftUI.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Example/CGLayoutPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayoutPlayground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Example/CGLayout_Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CGLayout_Example.entitlements -------------------------------------------------------------------------------- /Example/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/README.md -------------------------------------------------------------------------------- /Resources/benchmark_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Resources/benchmark_result.png -------------------------------------------------------------------------------- /Resources/layout1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Resources/layout1.png -------------------------------------------------------------------------------- /Resources/layout2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Resources/layout2.png -------------------------------------------------------------------------------- /Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Resources/logo.png -------------------------------------------------------------------------------- /Resources/logo.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Resources/logo.xd -------------------------------------------------------------------------------- /Sources/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/Classes/common.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/common.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/container.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/container.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/coordinate.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/coordinate.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/core.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/core.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/deprecated.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/deprecated.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/evolution.cglayout/anchors.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/evolution.cglayout/anchors.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/evolution.cglayout/backend.anchors.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/evolution.cglayout/backend.anchors.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/evolution.cglayout/system.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/evolution.cglayout/system.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/evolution.cglayout/workspace.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/evolution.cglayout/workspace.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/layoutBlock.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/layoutBlock.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/layoutConstraint.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/layoutConstraint.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/layoutGuide.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/layoutGuide.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/private.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/private.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/rtl.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/rtl.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/scroll.layoutGuide.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/scroll.layoutGuide.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/stack.layoutGuide.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/stack.layoutGuide.cglayout.swift -------------------------------------------------------------------------------- /Sources/Classes/support.cglayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Sources/Classes/support.cglayout.swift -------------------------------------------------------------------------------- /Tests/CGLayoutTests/CGLayoutTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Tests/CGLayoutTests/CGLayoutTests.swift -------------------------------------------------------------------------------- /Tests/CGLayoutTests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Tests/CGLayoutTests/Tests.swift -------------------------------------------------------------------------------- /Tests/CGLayoutTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Tests/CGLayoutTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/CGLayoutTests/support_linux.tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Tests/CGLayoutTests/support_linux.tests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/LayerPlaceholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Classes/LayerPlaceholder.html -------------------------------------------------------------------------------- /docs/Classes/LayoutBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Classes/LayoutBlock.html -------------------------------------------------------------------------------- /docs/Classes/LayoutGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Classes/LayoutGuide.html -------------------------------------------------------------------------------- /docs/Classes/LayoutPlaceholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Classes/LayoutPlaceholder.html -------------------------------------------------------------------------------- /docs/Classes/MutableLayoutConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Classes/MutableLayoutConstraint.html -------------------------------------------------------------------------------- /docs/Classes/ScrollAnimationDeceleration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Classes/ScrollAnimationDeceleration.html -------------------------------------------------------------------------------- /docs/Classes/ScrollLayoutGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Classes/ScrollLayoutGuide.html -------------------------------------------------------------------------------- /docs/Classes/StackLayoutGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Classes/StackLayoutGuide.html -------------------------------------------------------------------------------- /docs/Classes/ViewPlaceholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Classes/ViewPlaceholder.html -------------------------------------------------------------------------------- /docs/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Enums.html -------------------------------------------------------------------------------- /docs/Enums/LayoutAnchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Enums/LayoutAnchor.html -------------------------------------------------------------------------------- /docs/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions.html -------------------------------------------------------------------------------- /docs/Extensions/CALayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/CALayer.html -------------------------------------------------------------------------------- /docs/Extensions/CGRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/CGRect.html -------------------------------------------------------------------------------- /docs/Extensions/EdgeInsets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/EdgeInsets.html -------------------------------------------------------------------------------- /docs/Extensions/Equatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/Equatable.html -------------------------------------------------------------------------------- /docs/Extensions/LayoutCoordinateSpace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/LayoutCoordinateSpace.html -------------------------------------------------------------------------------- /docs/Extensions/LayoutGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/LayoutGuide.html -------------------------------------------------------------------------------- /docs/Extensions/NSControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/NSControl.html -------------------------------------------------------------------------------- /docs/Extensions/NSScrollView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/NSScrollView.html -------------------------------------------------------------------------------- /docs/Extensions/NSView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/NSView.html -------------------------------------------------------------------------------- /docs/Extensions/StackLayoutGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/StackLayoutGuide.html -------------------------------------------------------------------------------- /docs/Extensions/String.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/String.html -------------------------------------------------------------------------------- /docs/Extensions/UIImageView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/UIImageView.html -------------------------------------------------------------------------------- /docs/Extensions/UILabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/UILabel.html -------------------------------------------------------------------------------- /docs/Extensions/UILabel/Baseline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/UILabel/Baseline.html -------------------------------------------------------------------------------- /docs/Extensions/UIScrollView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/UIScrollView.html -------------------------------------------------------------------------------- /docs/Extensions/UIView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Extensions/UIView.html -------------------------------------------------------------------------------- /docs/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols.html -------------------------------------------------------------------------------- /docs/Protocols/AdaptiveLayoutElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/AdaptiveLayoutElement.html -------------------------------------------------------------------------------- /docs/Protocols/AdjustableLayoutElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/AdjustableLayoutElement.html -------------------------------------------------------------------------------- /docs/Protocols/ElementInLayoutTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/ElementInLayoutTime.html -------------------------------------------------------------------------------- /docs/Protocols/Extended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/Extended.html -------------------------------------------------------------------------------- /docs/Protocols/Extensible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/Extensible.html -------------------------------------------------------------------------------- /docs/Protocols/LayoutBlockProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/LayoutBlockProtocol.html -------------------------------------------------------------------------------- /docs/Protocols/LayoutConstraintProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/LayoutConstraintProtocol.html -------------------------------------------------------------------------------- /docs/Protocols/LayoutCoordinateSpace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/LayoutCoordinateSpace.html -------------------------------------------------------------------------------- /docs/Protocols/LayoutElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/LayoutElement.html -------------------------------------------------------------------------------- /docs/Protocols/LayoutElementsContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/LayoutElementsContainer.html -------------------------------------------------------------------------------- /docs/Protocols/LayoutSnapshotProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/LayoutSnapshotProtocol.html -------------------------------------------------------------------------------- /docs/Protocols/RectBasedConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/RectBasedConstraint.html -------------------------------------------------------------------------------- /docs/Protocols/RectBasedElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/RectBasedElement.html -------------------------------------------------------------------------------- /docs/Protocols/RectBasedLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/RectBasedLayout.html -------------------------------------------------------------------------------- /docs/Protocols/TextPresentedElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Protocols/TextPresentedElement.html -------------------------------------------------------------------------------- /docs/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs.html -------------------------------------------------------------------------------- /docs/Structs/AdjustLayoutConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/AdjustLayoutConstraint.html -------------------------------------------------------------------------------- /docs/Structs/AnonymConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/AnonymConstraint.html -------------------------------------------------------------------------------- /docs/Structs/AnyRectBasedConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/AnyRectBasedConstraint.html -------------------------------------------------------------------------------- /docs/Structs/AnyRectBasedLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/AnyRectBasedLayout.html -------------------------------------------------------------------------------- /docs/Structs/Baseline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Baseline.html -------------------------------------------------------------------------------- /docs/Structs/BaselineLayoutConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/BaselineLayoutConstraint.html -------------------------------------------------------------------------------- /docs/Structs/Bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Bottom.html -------------------------------------------------------------------------------- /docs/Structs/Bottom/AlignDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Bottom/AlignDependence.html -------------------------------------------------------------------------------- /docs/Structs/Bottom/LimitDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Bottom/LimitDependence.html -------------------------------------------------------------------------------- /docs/Structs/Bottom/PullDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Bottom/PullDependence.html -------------------------------------------------------------------------------- /docs/Structs/Center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Center.html -------------------------------------------------------------------------------- /docs/Structs/Center/AlignDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Center/AlignDependence.html -------------------------------------------------------------------------------- /docs/Structs/ContentLayoutConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/ContentLayoutConstraint.html -------------------------------------------------------------------------------- /docs/Structs/Equal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Equal.html -------------------------------------------------------------------------------- /docs/Structs/Inset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Inset.html -------------------------------------------------------------------------------- /docs/Structs/Layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Layout.html -------------------------------------------------------------------------------- /docs/Structs/Layout/Alignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Layout/Alignment.html -------------------------------------------------------------------------------- /docs/Structs/Layout/Alignment/Horizontal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Layout/Alignment/Horizontal.html -------------------------------------------------------------------------------- /docs/Structs/Layout/Alignment/Vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Layout/Alignment/Vertical.html -------------------------------------------------------------------------------- /docs/Structs/Layout/Filling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Layout/Filling.html -------------------------------------------------------------------------------- /docs/Structs/Layout/Filling/Horizontal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Layout/Filling/Horizontal.html -------------------------------------------------------------------------------- /docs/Structs/Layout/Filling/Vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Layout/Filling/Vertical.html -------------------------------------------------------------------------------- /docs/Structs/LayoutConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/LayoutConstraint.html -------------------------------------------------------------------------------- /docs/Structs/LayoutScheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/LayoutScheme.html -------------------------------------------------------------------------------- /docs/Structs/Leading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Leading.html -------------------------------------------------------------------------------- /docs/Structs/Leading/Align.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Leading/Align.html -------------------------------------------------------------------------------- /docs/Structs/Leading/Align/Dependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Leading/Align/Dependence.html -------------------------------------------------------------------------------- /docs/Structs/Leading/Limit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Leading/Limit.html -------------------------------------------------------------------------------- /docs/Structs/Leading/Limit/Dependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Leading/Limit/Dependence.html -------------------------------------------------------------------------------- /docs/Structs/Leading/Pull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Leading/Pull.html -------------------------------------------------------------------------------- /docs/Structs/Leading/Pull/Dependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Leading/Pull/Dependence.html -------------------------------------------------------------------------------- /docs/Structs/Left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Left.html -------------------------------------------------------------------------------- /docs/Structs/Left/AlignDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Left/AlignDependence.html -------------------------------------------------------------------------------- /docs/Structs/Left/LimitDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Left/LimitDependence.html -------------------------------------------------------------------------------- /docs/Structs/Left/PullDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Left/PullDependence.html -------------------------------------------------------------------------------- /docs/Structs/Right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Right.html -------------------------------------------------------------------------------- /docs/Structs/Right/AlignDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Right/AlignDependence.html -------------------------------------------------------------------------------- /docs/Structs/Right/LimitDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Right/LimitDependence.html -------------------------------------------------------------------------------- /docs/Structs/Right/PullDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Right/PullDependence.html -------------------------------------------------------------------------------- /docs/Structs/ScrollDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/ScrollDirection.html -------------------------------------------------------------------------------- /docs/Structs/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Size.html -------------------------------------------------------------------------------- /docs/Structs/StackDistribution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/StackDistribution.html -------------------------------------------------------------------------------- /docs/Structs/StackDistribution/Alignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/StackDistribution/Alignment.html -------------------------------------------------------------------------------- /docs/Structs/StackDistribution/Direction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/StackDistribution/Direction.html -------------------------------------------------------------------------------- /docs/Structs/StackDistribution/Filling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/StackDistribution/Filling.html -------------------------------------------------------------------------------- /docs/Structs/StackDistribution/Spacing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/StackDistribution/Spacing.html -------------------------------------------------------------------------------- /docs/Structs/StackLayoutScheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/StackLayoutScheme.html -------------------------------------------------------------------------------- /docs/Structs/StringLayoutAnchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/StringLayoutAnchor.html -------------------------------------------------------------------------------- /docs/Structs/Top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Top.html -------------------------------------------------------------------------------- /docs/Structs/Top/AlignDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Top/AlignDependence.html -------------------------------------------------------------------------------- /docs/Structs/Top/LimitDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Top/LimitDependence.html -------------------------------------------------------------------------------- /docs/Structs/Top/PullDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Top/PullDependence.html -------------------------------------------------------------------------------- /docs/Structs/Trailing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Trailing.html -------------------------------------------------------------------------------- /docs/Structs/Trailing/Align.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Trailing/Align.html -------------------------------------------------------------------------------- /docs/Structs/Trailing/Align/Dependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Trailing/Align/Dependence.html -------------------------------------------------------------------------------- /docs/Structs/Trailing/Limit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Trailing/Limit.html -------------------------------------------------------------------------------- /docs/Structs/Trailing/Limit/Dependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Trailing/Limit/Dependence.html -------------------------------------------------------------------------------- /docs/Structs/Trailing/Pull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Trailing/Pull.html -------------------------------------------------------------------------------- /docs/Structs/Trailing/Pull/Dependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Structs/Trailing/Pull/Dependence.html -------------------------------------------------------------------------------- /docs/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/Typealiases.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/LayerPlaceholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/LayerPlaceholder.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/LayoutBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/LayoutBlock.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/LayoutGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/LayoutGuide.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/LayoutPlaceholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/LayoutPlaceholder.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/MutableLayoutConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/MutableLayoutConstraint.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/ScrollAnimationDeceleration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/ScrollAnimationDeceleration.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/ScrollLayoutGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/ScrollLayoutGuide.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/StackLayoutGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/StackLayoutGuide.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/ViewPlaceholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Classes/ViewPlaceholder.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Enums.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Enums/LayoutAnchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Enums/LayoutAnchor.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/CALayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/CALayer.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/CGRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/CGRect.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/EdgeInsets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/EdgeInsets.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/Equatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/Equatable.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/LayoutCoordinateSpace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/LayoutCoordinateSpace.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/LayoutGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/LayoutGuide.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/NSControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/NSControl.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/NSScrollView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/NSScrollView.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/NSView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/NSView.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/StackLayoutGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/StackLayoutGuide.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/String.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/String.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/UIImageView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/UIImageView.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/UILabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/UILabel.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/UILabel/Baseline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/UILabel/Baseline.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/UIScrollView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/UIScrollView.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/UIView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Extensions/UIView.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/AdaptiveLayoutElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/AdaptiveLayoutElement.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/AdjustableLayoutElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/AdjustableLayoutElement.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/ElementInLayoutTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/ElementInLayoutTime.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/Extended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/Extended.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/Extensible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/Extensible.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/LayoutBlockProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/LayoutBlockProtocol.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/LayoutConstraintProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/LayoutConstraintProtocol.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/LayoutCoordinateSpace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/LayoutCoordinateSpace.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/LayoutElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/LayoutElement.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/LayoutElementsContainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/LayoutElementsContainer.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/LayoutSnapshotProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/LayoutSnapshotProtocol.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/RectBasedConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/RectBasedConstraint.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/RectBasedElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/RectBasedElement.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/RectBasedLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/RectBasedLayout.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/TextPresentedElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Protocols/TextPresentedElement.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/AdjustLayoutConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/AdjustLayoutConstraint.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/AnonymConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/AnonymConstraint.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/AnyRectBasedConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/AnyRectBasedConstraint.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/AnyRectBasedLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/AnyRectBasedLayout.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Baseline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Baseline.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/BaselineLayoutConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/BaselineLayoutConstraint.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Bottom.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Bottom/AlignDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Bottom/AlignDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Bottom/LimitDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Bottom/LimitDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Bottom/PullDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Bottom/PullDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Center.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Center/AlignDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Center/AlignDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/ContentLayoutConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/ContentLayoutConstraint.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Equal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Equal.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Inset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Inset.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout/Alignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout/Alignment.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout/Alignment/Horizontal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout/Alignment/Horizontal.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout/Alignment/Vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout/Alignment/Vertical.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout/Filling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout/Filling.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout/Filling/Horizontal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout/Filling/Horizontal.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout/Filling/Vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Layout/Filling/Vertical.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/LayoutConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/LayoutConstraint.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/LayoutScheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/LayoutScheme.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading/Align.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading/Align.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading/Align/Dependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading/Align/Dependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading/Limit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading/Limit.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading/Limit/Dependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading/Limit/Dependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading/Pull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading/Pull.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading/Pull/Dependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Leading/Pull/Dependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Left.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Left/AlignDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Left/AlignDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Left/LimitDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Left/LimitDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Left/PullDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Left/PullDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Right.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Right/AlignDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Right/AlignDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Right/LimitDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Right/LimitDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Right/PullDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Right/PullDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/ScrollDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/ScrollDirection.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Size.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StackDistribution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StackDistribution.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StackDistribution/Alignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StackDistribution/Alignment.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StackDistribution/Direction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StackDistribution/Direction.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StackDistribution/Filling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StackDistribution/Filling.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StackDistribution/Spacing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StackDistribution/Spacing.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StackLayoutScheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StackLayoutScheme.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StringLayoutAnchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/StringLayoutAnchor.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Top.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Top/AlignDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Top/AlignDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Top/LimitDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Top/LimitDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Top/PullDependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Top/PullDependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing/Align.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing/Align.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing/Align/Dependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing/Align/Dependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing/Limit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing/Limit.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing/Limit/Dependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing/Limit/Dependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing/Pull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing/Pull.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing/Pull/Dependence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Structs/Trailing/Pull/Dependence.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/Typealiases.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/badge.svg -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/Documents/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/Documents/undocumented.json -------------------------------------------------------------------------------- /docs/docsets/CGLayout.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/CGLayout.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/docsets/CGLayout.tgz -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/docs/undocumented.json -------------------------------------------------------------------------------- /linux_example/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /linux_example/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/linux_example/Package.resolved -------------------------------------------------------------------------------- /linux_example/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/linux_example/Package.swift -------------------------------------------------------------------------------- /linux_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/linux_example/README.md -------------------------------------------------------------------------------- /linux_example/Sources/CGLSDL/app.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/linux_example/Sources/CGLSDL/app.swift -------------------------------------------------------------------------------- /linux_example/Sources/CGLSDL/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/linux_example/Sources/CGLSDL/main.swift -------------------------------------------------------------------------------- /linux_example/Sources/CGLSDL/view.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/linux_example/Sources/CGLSDL/view.swift -------------------------------------------------------------------------------- /linux_example/Tests/CGLSDLTests/CGLSDLTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/linux_example/Tests/CGLSDLTests/CGLSDLTests.swift -------------------------------------------------------------------------------- /linux_example/Tests/CGLSDLTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/linux_example/Tests/CGLSDLTests/XCTestManifests.swift -------------------------------------------------------------------------------- /linux_example/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-o-d-e-n/CGLayout/HEAD/linux_example/Tests/LinuxMain.swift --------------------------------------------------------------------------------