PerformanceBezier

main

A small library to dramatically speed up common operations on UIBezierPath, and also bring its functionality closer to NSBezierPath
adamwulf/PerformanceBezier

iOS UIBezierPath Performance

This code dramatically improves performance for common UIBezierPath operations, and it also brings UIBezierPath API closer to its NSBezierPath counterpart. For full background of this repo, checkout the blogpost explaining what this framework does.

This code was originally part of Loose Leaf. Additional components and libraries from the app have also been open sourced.

Available as a Swift Package!

Install PerformanceBezier in your project through Swift Package Manager as of v1.3.0!

What is this?

This framework adds caching into every UIBezierPath so that common operations can be performed in constant time. It also adds some missing NSBezierPath methods to the UIBezierPath class.

After linking this framework into your project, all Bezier paths will automatically be upgraded to use this new caching. No custom UIBezierPath allocation or initialization is required.

For example, by default there is no O(1) way to retrieve elements from a UIBezierPath. In order to retrieve the first point of the curve, you must CGPathApply() and interate over the entire path to retrieve that single point. This framework changes that. For many algorithms, this can dramatically affect performance.

Are you using PerformanceBezier?

Let me know! I'd love to know where PerformanceBezier is using and how it's affecting your apps. Ping me at @adamwulf!

Also - If you like PerformanceBezier, then you'll love ClippingBezier - an easy way to find intersecting points, lines, and shapes between two UIBezierPaths.

Documentation

View the header files for full documentation.

Building the framework

This library will generate a proper static framework bundle that can be used in any iOS7+ project.

Including in your project

  1. Link against the built framework.
  2. Add "-ObjC++ -lstdc++" to the Other Linker Flags in the project's Settings
  3. #import <PerformanceBezier/PerformanceBezier.h>

JRSwizzle

This framework includes and uses the JRSwizzle library, which is licensed under the MIT license.

License

Creative Commons License
This work is licensed under a Creative Commons Attribution 3.0 United States License.

For attribution, please include:

  1. Mention original author "Adam Wulf for Loose Leaf app"
  2. Link to https://getlooseleaf.com/opensource/
  3. Link to https://github.com/adamwulf/PerformanceBezier

Support this framework

This framework is created by Adam Wulf (@adamwulf) as a part of the Loose Leaf app.

Become a Github Sponsor to buy me some coffee ☕️ to continue the work 😄

Description

  • Swift Tools 5.3.0
View More Packages from this Author

Dependencies

  • None
Last updated: Sun Mar 10 2024 04:50:13 GMT-0900 (Hawaii-Aleutian Daylight Time)