Closed gin66 closed 3 years ago
While performing text("Hello World!") the code hits the assertion in Paths.swift:
text("Hello World!")
Paths.swift
internal extension Path { init(unchecked points: [PathPoint], plane: Plane?, subpathIndices: [Int]?) { assert(sanitizePoints(points) == points) <====== self.points = points self.isClosed = pointsAreClosed(unchecked: points)
Triggering character is "!".
BTW: Running on iOS
Failed test case is here for reference
@gin66 fixed in 0.4.5
While performing
text("Hello World!")
the code hits the assertion inPaths.swift
:Triggering character is "!".
BTW: Running on iOS