UniPRT SDK v1.0.0.0
 
載入中...
搜尋中...
無符合項目
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 */
APair的基類。
Definition APair.h:36
繼承自 IPoint 的 Points 類。
Definition Point.h:38
表示二維平面內的座標對。
Definition IPoint.h:35