Skip to content

Commit

Permalink
Deleted comments marks.
Browse files Browse the repository at this point in the history
  • Loading branch information
devedbox committed Apr 14, 2017
1 parent c3361ad commit 6f1fecc
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions AXAnimationChain/Classes/CALayer+AnchorPoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,41 +25,29 @@

#import <QuartzCore/QuartzCore.h>
/// Category to handler the anchor point.
///
@interface CALayer (AnchorPoint)
/// Move anchor to a new anchor point. This will change the position of the layer.
///
/// @param point a new anchor point. Between [0, 1].
///
- (void)moveAnchorToPoint:(CGPoint)point;
/// Move anchor point to default anchor value.
///
- (void)anchorToDefault;
/// Move anchor point to center point.
///
- (void)anchorToCenter;
/// Move anchor point to top.
///
- (void)anchorToTop;
/// Move anchor point to left.
///
- (void)anchorToLeft;
/// Move anchor point to bottom.
///
- (void)anchorToBottom;
/// Move anchor point to right.
///
- (void)anchorToRight;
/// Move anchor point to left-top.
///
- (void)anchorToLeftTop;
/// Move anchor point to left-bottom.
///
- (void)anchorToLeftBottom;
/// Move anchor point to right-top.
///
- (void)anchorToRightTop;
/// Move anchor point to right-bottom.
///
- (void)anchorToRightBottom;
@end

0 comments on commit 6f1fecc

Please sign in to comment.