├── CHANGELOG.md ├── Sources └── Yield │ └── Yield.swift ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Package.swift ├── LICENSE.md └── README.md /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # CHANGELOG 2 | 3 | ## [0.1.0](https://github.com/zilmarinen/Yield/releases/tag/0.1.0) (10/07/2024) 4 | 5 | -------------------------------------------------------------------------------- /Sources/Yield/Yield.swift: -------------------------------------------------------------------------------- 1 | public struct Yield { 2 | public private(set) var text = "Hello, World!" 3 | 4 | public init() { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | DerivedData/ 7 | .swiftpm/config/registries.json 8 | .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata 9 | .netrc 10 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version: 5.9 2 | // The swift-tools-version declares the minimum version of Swift required to build this package. 3 | 4 | import PackageDescription 5 | 6 | let package = Package( 7 | name: "Yield", 8 | platforms: [.macOS(.v14), 9 | .iOS(.v17)], 10 | products: [ 11 | .library(name: "Yield", 12 | targets: ["Yield"]), 13 | ], 14 | dependencies: [ 15 | .package(url: "git@github.com:nicklockwood/Euclid.git", 16 | branch: "main"), 17 | ], 18 | targets: [ 19 | .target(name: "Yield", 20 | dependencies: []), 21 | ] 22 | ) 23 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Zack Brown 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Platforms](https://img.shields.io/badge/platforms-iOS%20|%20Mac-lightgray.svg)]() 2 | [![Swift 5.1](https://img.shields.io/badge/swift-5.1-red.svg?style=flat)](https://developer.apple.com/swift) 3 | [![License](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT) 4 | 5 | - [Introduction](#yield) 6 | - [Installation](#installation) 7 | - [Implementation](#implementation) 8 | - [Examples](#examples) 9 | - [Credits](#credits) 10 | 11 | # Yield 12 | 13 | # Installation 14 | To install using Swift Package Manager, add this to the `dependencies:` section in your Package.swift file: 15 | 16 | ```swift 17 | .package(url: "https://github.com/zilmarinen/Yield.git", branch: "main"), 18 | ``` 19 | 20 | ## Dependencies 21 | [Euclid](https://github.com/nicklockwood/Euclid) is a Swift library for creating and manipulating 3D geometry and is used extensively within this project for mesh generation and vector operations. 22 | 23 | ## License 24 | 25 | This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details. 26 | 27 | # Implementation 28 | 29 | # Examples 30 | 31 | # Credits 32 | 33 | The Yield framework is primarily the work of [Zack Brown](https://github.com/zilmarinen). 34 | --------------------------------------------------------------------------------