objective-c - What does the CGRectApplyAffineTransform function in CoreGraphics do?
ringa_lee
ringa_lee 2017-05-02 09:37:31
0
0
938
CGRect rect = CGRectMake(0, 0, 300, 200);
        
rect = CGRectApplyAffineTransform(rect,
                                          CGAffineTransformMakeScale(1, -1));
cgPath = CGPathCreateWithRect(rect, NULL);

What does this code mean?

ringa_lee
ringa_lee

ringa_lee

reply all(0)
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template