filip-sakel
filip-sakel
In this PR: 1. The `rotated(by:)`, `scaledBy(x:y:)`, and `translatedBy(x:y:)` operators are made cumulative; 2. The implementation of `inverted()` is corrected to return `self` when the matrix is not invertible; 3....
Is the implementation of the non-apple [`CGAffineTransform`](https://github.com/TokamakUI/Tokamak/blob/main/Sources/TokamakCore/Stubs/CGStubs.swift) correct? Several things seem "off". For one, the implementation of `inverted()` simply negates the matrix's components. On other implementations, however, such as the...
`Task.select` seems too general and doesn't really indicate that the first task to complete is chosen. I've seen (and have used myself) `Task.race` on the forums, which I think more...
This issue expands on the [tap-gesture](https://github.com/TokamakUI/Tokamak/issues/519) feature request, setting a timeline for complete gesture-support parity with SwiftUI. ### Level 1: Tap Gesture & Related Protocols Button practically uses a tap...
**Is your feature request related to a problem? Please describe.** Without seeing what code macros generate, it's hard to understand macro-related errors. For example, a macro might try to access...
Embedded mode was recently introduced as a subset of Swift for constrained environments, such as the Web where bundle size has to be really small. With Embedded Wasm, we can...
I have a simple Wasm Embedded Swift package and even a minor change to a function results in a 12-second rebuild. I think that's because of 3 things: (1) forced...
I thought there was already some discussion on multidimensional arrays (similar to Numpy's NDArray), but I couldn't find anything. If that's not the case please feel free to link to...
I have the following push consts: ```python constants: np.ndarray = np.array([ image.shape[1], # image_width image.shape[0], # image_height 1, # image_depth (since we are using a single 2D slice window_half_size, 2...