Point2i
Objective-C
@interface Point2i : NSObject
Swift
class Point : NSObject
Represents a two dimensional point the coordinate values of which are of type int
-
Declaration
Objective-C
@property int x
Swift
var x: Int32 { get set }
-
Declaration
Objective-C
@property int y
Swift
var y: Int32 { get set }
-
Declaration
Objective-C
- (instancetype)init;
Swift
init()
-
Declaration
Objective-C
- (instancetype)initWithX:(int)x y:(int)y;
Swift
init(x: Int32, y: Int32)
-
Declaration
Objective-C
- (instancetype)initWithVals:(NSArray<NSNumber*>*)vals;
Swift
init(vals: [NSNumber])
-
Calculate the dot product of this point and another point
Declaration
Objective-C
- (double)dot:(nonnull Point2i *)point;
Swift
func dot(_ point: Point) -> Double
Parameters
point
The other point
-
Set the point coordinates 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 coordinates
-
Clone object
Declaration
Objective-C
- (nonnull Point2i *)clone;
Swift
func clone() -> Point
-
Compare for equality
Declaration
Objective-C
- (BOOL)isEqual:(nullable id)other;
Swift
func isEqual(_ other: 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