Point3f
Objective-C
@interface Point3f : NSObject
Swift
class Point3f : NSObject
Represents a three dimensional point the coordinate values of which are of type float
-
Declaration
Objective-C
@property float x
Swift
var x: Float { get set }
-
Declaration
Objective-C
@property float y
Swift
var y: Float { get set }
-
Declaration
Objective-C
@property float z
Swift
var z: Float { get set }
-
Declaration
Objective-C
- (instancetype)init;
Swift
init()
-
Declaration
Objective-C
- (instancetype)initWithX:(float)x y:(float)y z:(float)z;
Swift
init(x: Float, y: Float, z: Float)
-
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 Point3f *)point;
Swift
func dot(_ point: Point3f) -> Double
Parameters
point
The other point
-
Calculate the cross product of this point and another point
Declaration
Objective-C
- (nonnull Point3f *)cross:(nonnull Point3f *)point;
Swift
func cross(_ point: Point3f) -> Point3f
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 Point3f *)clone;
Swift
func clone() -> Point3f
-
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