Skip to content

adamwulf/ClippingBezier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7b55731 · Jan 2, 2024
Apr 11, 2021
Aug 3, 2021
Aug 3, 2021
Sep 20, 2018
Jan 2, 2024
Aug 3, 2021
Apr 6, 2021
May 14, 2020
Sep 20, 2018
Sep 20, 2018
May 23, 2015
Jan 2, 2024
May 23, 2015
May 23, 2015
Dec 22, 2016
Aug 3, 2021
Aug 3, 2021
Nov 25, 2020
Aug 4, 2021
Jul 20, 2021
Dec 22, 2016
Dec 22, 2016
May 23, 2015
Dec 22, 2016

Repository files navigation

ClippingBezier

This library adds categories to UIBezierPath to simplify clipping a single closed UIBezierPath with another closed or unclosed UIBezierPath.

ClippingBezier in Loose Leaf

The ClippingBezier.framework powers the scissors tool in Loose Leaf, and it allows for drawing to be clipped to any imported image scraps.

clipped-pen-example.png

Available as a Swift Package!

Install ClippingBezier in your project through Swift Package Manager as of v1.2.0!

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 and the included PerformanceBezier framework
  2. Add "-ObjC++ -lstdc++" to the Other Linker Flags in the project's Settings
  3. #import <PerformanceBezier/PerformanceBezier.h>
  4. #import <ClippingBezier/ClippingBezier.h>

Dependencies

This library depends on the UIBezierPath performance improvements in the PerformanceBezier library.

Example

UIBezierPath* aClosedPath = /* some path */;
UIBezierPath* scissorPath = /* some other path */;

NSArray* subshapes = [aClosedPath uniqueShapesCreatedFromSlicingWithUnclosedPath:scissorPath];
for(DKUIBezierPathShape* shape in subshapes){
    UIBezierPath* aClosedPathSlice = shape.fullPath;
}

Screenshots

Find intersections between two UIBezierPaths:

intersection-example.png

Or find the component shapes generated from two path's intersections

scissor-example.png

Sample Application

The Xcode workspace includes a ClippingExampleApp project that shows a fully functional integration of the ClippingBezier framework. You can refer to this example for any questions about how to integrate into your app.

License

The ClippingBezier framework and sample code are provided under the MIT License.

Support This Project