ARTRenderable.h 644 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) Facebook, Inc. and its affiliates.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. #import <Foundation/Foundation.h>
  8. #import "ARTBrush.h"
  9. #import "ARTCGFloatArray.h"
  10. #import "ARTNode.h"
  11. @interface ARTRenderable : ARTNode
  12. @property (nonatomic, strong) ARTBrush *fill;
  13. @property (nonatomic, assign) CGColorRef stroke;
  14. @property (nonatomic, assign) CGFloat strokeWidth;
  15. @property (nonatomic, assign) CGLineCap strokeCap;
  16. @property (nonatomic, assign) CGLineJoin strokeJoin;
  17. @property (nonatomic, assign) ARTCGFloatArray strokeDash;
  18. @end