目录
目录README.md
Swift2D

Swift library for working in two-dimensional coordinate systems.

Features

This library provides structs for Point, Size, and Rect based on the swift standard library. No Foundation or CoreGraphics imports are required.

Point

struct Point {
  var x: Double
  var y: Double
}

Size

struct Size {
  var width: Double
  var height: Double
}

Rect

struct Rect {
  var origin: Point
  var size: Size
}

Installation

This package is distributed using the Swift Package Manager. To install it into a project, add it as a dependency within your Package.swift manifest:

let package = Package(
    ...
    dependencies: [
        .package(url: "https://github.com/richardpiazza/Swift2D.git", from: "2.1.0")
    ],
    ...
)

Then import the Swift2D packages wherever you’d like to use it:

import Swift2D
关于
143.0 KB
邀请码