SITCircularArea

Objective-C

@interface SITCircularArea : SITArea <SITMapperProtocol>

Swift

class SITCircularArea : SITArea, SITMapperProtocol

A circle with center and radius

Properties

  • Center of the circle

    Declaration

    Objective-C

    @property (nonatomic, strong) SITPoint *center;

    Swift

    var center: SITPoint! { get set }
  • Radius of the circle

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *radius;

    Swift

    var radius: NSNumber! { get set }