UniPRT SDK v2.0.0.0
 
载入中...
搜索中...
未找到
IPair.h
1//
2// IPair.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/6.
6//
7
8#ifndef IPair_h
9#define IPair_h
10
11#import <Foundation/Foundation.h>
12
35@protocol IPair <NSObject>
46@property (nonatomic) float x;
47
58@property (nonatomic) float y;
59
60@end
61
62#endif /* IPair_h */
float y
第二个值,例如:垂直的 y 坐标,表示点的位置。
定义 IPair.h:58
float x
第一个值,例如:水平的 x 坐标,表示点的位置。
定义 IPair.h:46