//
//  LSCircleView.h
//  LSColorExtracta
//
//  Created by Dylan on 2018/11/7.
//  Copyright © 2018 Yang. All rights reserved.
//

#import <UIKit/UIKit.h>

typedef NS_ENUM(NSInteger, StyleType) {
    
    StyleTypeRound = 0,  //圆形
    StyleTypeCircle = 1,   //圆环
};

@interface LSCircleView : UIView


-(void)styleCenter:(CGPoint)center style:(StyleType)style color:(UIColor*)color;

@end



