UniPRT SDK v1.0.0.0
 
Loading...
Searching...
No Matches
Point.h
1//
2// Point.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/6.
6//
7
8#ifndef Point_h
9#define Point_h
10
11#import <Foundation/Foundation.h>
12
13#import <UniPRT/APair.h>
14#import <UniPRT/IPoint.h>
15
38@interface Points : APair <IPoint>
39
62- (instancetype)initWithX:(float)x y:(float)y;
63
64@end
65
66
67#endif /* Point_h */
Base class for APair.
Definition APair.h:36
A class for Points, inheriting from IPoint.
Definition Point.h:38
Represents a coordinate pair within a 2D plane.
Definition IPoint.h:35