Reputation: 806
How can i convert CGPathRef
to CGMutablePathRef
.
I think this are Structure not class so no API available to convert.
code:-
CGAffineTransform transform = CGAffineTransformMakeScale(2.0, 2.0);
CGPathRef intermediatePath = CGPathCreateCopyByTransformingPath(pt.custompath, &transform);
How to save intermediatePath variable to CGMutablePathRef
.
Upvotes: 0
Views: 681
Reputation: 2002
Use CGPathCreateMutableCopy().
CGMutablePathRef mutablePath = CGPathCreateMutableCopy(intermediatePath);
Upvotes: 4