Ralf Ebert
Ralf Ebert
This might help: http://ronnqvi.st/custom-scenekit-geometry
UIImage+Render currently uses the old UIGraphicsBeginImageContextWithOptions API before iOS 10, and on iOS 10 it starts to use the new UIGraphicsImageRenderer. Because of this, when you generate test images under...
It would be nice if there would be support for setting the view to landscape orientation. Maybe just treating them as a separate Device? Like: ``` extension Device { public...
Snap will render an empty, transparent image for SKViews. As a workaround, checking and handling for Spritekit in `UIView+Render` seems to do the trick: if let skview = self as?...
Is there a reason for setting the width to 788 or is this a typo? Also, does it need a special device for the iPad mini which has the same...
It would be awesome if there would be an API to compare an UIImage to be able to visually inspect images, for example to test rendering code without creating full...
In case "Reference image not found" happens, it would be awesome if Snap.swift would write the Failed image.
* Continuously animate between two states (left and right) using layout constraints to avoid the jumpiness of resetting the position * Removing terms bounciness and speed (I like these terms,...
Create a merge commit when pulling/merging changes where all conflicts can be resolved automatically
Given: A local branch and remote branch, both with commits. When merging those, all conflicts can be resolved automatically, for example because different files were changed locally and remote. When...
ExampleRequestsTests makes actual requests to httpbin.org/jsonplaceholder.typicode.com to see common cases how the Endpoint API might be used in one place Includes examples for GET/POST (json body)/POST (form-encoded) with json results...