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