Size2d
Objective-C
@interface Size2d : NSObject
Swift
class Size2d : NSObject
Represents the dimensions of a rectangle the values of which are of type double
-
Declaration
Objective-C
@property double width
Swift
var width: Double { get set }
-
Declaration
Objective-C
@property double height
Swift
var height: Double { get set }
-
Declaration
Objective-C
- (instancetype)init;
Swift
init()
-
Declaration
Objective-C
- (instancetype)initWithWidth:(double)width height:(double)height;
Swift
init(width: Double, height: Double)
-
Declaration
Objective-C
- (instancetype)initWithVals:(NSArray<NSNumber*>*)vals;
Swift
init(vals: [NSNumber])
-
Declaration
Objective-C
+ (instancetype)width:(double)width height:(double)height;
Swift
class func width(_ width: Double, height: Double) -> Self
-
Returns the area of a rectangle with corresponding dimensions
Declaration
Objective-C
- (double)area;
Swift
func area() -> Double
-
Determines if a rectangle with corresponding dimensions has area of zero
Declaration
Objective-C
- (BOOL)empty;
Swift
func empty() -> Bool
-
Set the dimensions from the values of an array
Declaration
Objective-C
- (void)set:(nonnull NSArray<NSNumber *> *)vals;
Swift
func set(vals: [NSNumber])
Parameters
vals
The array of values from which to set the dimensions
-
Clone object
Declaration
Objective-C
- (nonnull Size2d *)clone;
Swift
func clone() -> Size2d
-
Compare for equality
Declaration
Objective-C
- (BOOL)isEqual:(nullable id)object;
Swift
func isEqual(_ object: Any?) -> Bool
Parameters
other
Object to compare
-
Calculate hash value for this object
Declaration
Objective-C
- (NSUInteger)hash;
Swift
func hash() -> UInt
-
Returns a string that describes the contents of the object
Declaration
Objective-C
- (nonnull NSString *)description;
Swift
func description() -> String