UniPRT SDK v1.0.0.0
 
Loading...
Searching...
No Matches
CellRect.h
1//
2// CellRect.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/7.
6//
7
8#ifndef CellRect_h
9#define CellRect_h
10
11
12#import <UniPRT/ACellSquare.h>
13#import <UniPRT/ICellRect.h>
14
32
33@property (nonatomic, assign) float ydim;
34
35- (instancetype)init;
36- (instancetype)initWithXDim:(float)xdim yDim:(float)ydim ruler:(id<IRuler>)ruler;
37
38@end
39
40#endif /* CellRect_h */
Base class for ACellSquare.
Definition ACellSquare.h:32
id< IRuler > ruler
Definition ACellSquare.h:34
float xdim
Definition ACellSquare.h:35
A class for CellRect, conforming to the ICellRect protocol.
Definition CellRect.h:31
float ydim
Definition CellRect.h:33
instancetype init()
Sets the size of the single cell rectangle of a 2D barcode.
Definition ICellRect.h:35