ProjectionLAMObject
Objective-C
@interface ProjectionLAMObject : ProjectionObject
Swift
class ProjectionLAMObject : ProjectionObject
This class encapsulates LAM projection information.
-
Initializes and returns a newly allocated object using the coordinates for projection.
Declaration
Objective-C
- (nonnull instancetype)initWithX:(double)x y:(double)y;
Swift
init(x: Double, y: Double)
-
Set the coordinates for projection.
Declaration
Objective-C
- (void)setX:(double)x setY:(double)y;
Swift
func setX(_ x: Double, setY y: Double)
-
Get the first coordinate.
Declaration
Objective-C
- (double)getX;
Swift
func getX() -> Double
-
Get the second coordinate.
Declaration
Objective-C
- (double)getY;
Swift
func getY() -> Double