filip-sakel
filip-sakel
It looks like `Foundation.AffineTransform` has a pretty different API compared to `CGAffineTransform`. So, I ended up using the same implementation but packaged in the `CGAffineTransform` API. [Here](https://github.com/TokamakUI/Tokamak/pull/432)'s the PR. **_Note_**:...
**Update** 1. The foundation [patch](https://github.com/apple/swift-corelibs-foundation/pull/3012) has been corrected and now there's substantial test support for the non-NS `AffineTransform`; it is currently awaiting review. 2. Tokamak now implements `CGAffineTransform` as a...
Target selection would be especially useful.
Right, `race` does have a more negative connotation, but `select` still feels unclear. `Task.first`, though, seems like a great name.
Also attaching the swift interface `Gesture` definition: ```swift @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *) public protocol Gesture { associatedtype Value static func _makeGesture(gesture: SwiftUI._GraphValue, inputs: SwiftUI._GestureInputs) ->...
Yes, it appears so. Though, state is reset when the gesture ends (you can only change it when the gesture is updating). I think that’s why `_makeGesture` takes a graph...
It will probably depend on specific gestures. In some early experimentation, I found that Safari exposed rotation/scale gestures but not multi-touch events to implement these gestures by hand. Thus, at...
It seems that SwiftPM generates the bundle path [here](https://github.com/apple/swift-package-manager/blob/8bf6bd74fff13a778823982a10079625d991134e/Sources/Build/BuildPlan.swift#L1052) (by appending the bundle extension to the build path), then this property conditionally [exposes](https://github.com/apple/swift-package-manager/blob/8bf6bd74fff13a778823982a10079625d991134e/Sources/Build/BuildDescription/SwiftTargetBuildDescription.swift#L56) the bundle path, and finally —on the...
I found [this](https://github.com/microsoft/vscode-cpptools/issues/1734) discussion in the cpp-tools repo, where macro expansions look like so: 
Thanks! I tried that but no code action showed up :( Are there specific version requirements (for Swift or even VSCode) for this to work?