BDFaceCircleView.h 503 B

1234567891011121314151617181920
  1. //
  2. // CircleView.h
  3. // FaceSDKSample_IOS
  4. //
  5. // Created by Tong,Shasha on 2017/8/31.
  6. // Copyright © 2017年 Baidu. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #define OutSideColor [UIColor colorWithRed:246/255.0 green:166/255.0 blue:35/255.0 alpha:1]
  10. #define BackgroundColor [UIColor colorWithRed:47/255.0 green:47/255.0 blue:51/255.0 alpha:1]
  11. @interface BDFaceCircleView : UIView
  12. @property (nonatomic, assign) CGRect circleRect;
  13. @property (nonatomic, assign) BOOL conditionStatusFit;
  14. @end