Intersection

public enum Intersection
extension LineIntersection.Intersection: Equatable where Vector: Equatable
extension LineIntersection.Intersection: Hashable where Vector: Hashable

Represents an intersection in a LineIntersection.

  • Represents an intersection that crosses to within the boundaries of the shape.

    Declaration

    Swift

    case enter(PointNormal<Vector>)
  • Represents an intersection that crosses to the outside of the boundaries of the shape.

    Declaration

    Swift

    case exit(PointNormal<Vector>)