Skip to content

Commit

Permalink
Make public
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary Kerr committed Jun 15, 2021
1 parent 204e2b7 commit 2b5fb7d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Sources/MandelbrotEngine/MandelbrotSetConfig.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
//

public struct MandelbrotSetConfig: CustomStringConvertible {
let imageWidth: Int
let imageHeight: Int
public let imageWidth: Int
public let imageHeight: Int
let width: Double
let height: Double
let centre: ComplexNumber
Expand Down
2 changes: 1 addition & 1 deletion Sources/MandelbrotEngine/MandelbrotSetPoint.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ public struct MandelbrotSetPoint {
}

let point: ComplexNumber
var test: Test
public var test: Test
}
2 changes: 1 addition & 1 deletion Sources/MandelbrotEngine/Pixel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public struct Pixel {
var b: UInt8


init(r: UInt8, g: UInt8, b: UInt8) {
public init(r: UInt8, g: UInt8, b: UInt8) {
self.r = r
self.g = g
self.b = b
Expand Down

0 comments on commit 2b5fb7d

Please sign in to comment.