PointF

Objective-C

@interface PointF : NSObject
@property float x;
@property float y;
@end

Swift

class PointF : NSObject

Undocumented

  • x

    Undocumented

    Declaration

    Objective-C

    @property float x

    Swift

    var x: Float { get set }
  • y

    Undocumented

    Declaration

    Objective-C

    @property float y

    Swift

    var y: Float { get set }