Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Jan 29, 2024
1 parent 9492dc5 commit 5e5c9e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Sources/Edge.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@

/// A polygon edge.
public struct Edge: Hashable, Sendable {
// The starting point of the line segment.
/// The starting point of the line segment.
public let start: Vertex
// The end point of the line segment.
/// The end point of the line segment.
public let end: Vertex

/// Creates an edge with a start and end vertex.
Expand Down
2 changes: 1 addition & 1 deletion Tests/PolygonTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import XCTest

extension Euclid.Polygon: ExpressibleByArrayLiteral {
// Convenience constructor for testing
/// Convenience constructor for testing
init(unchecked vertices: [Vertex], plane: Plane? = nil) {
self.init(
unchecked: vertices,
Expand Down

0 comments on commit 5e5c9e6

Please sign in to comment.