Class iQuadrilateral
Stores the quadrilateral.
- Objective-C
- Swift
@interface iQuadrilateral : NSObjectvar endPoint: Int { get set }
| Attribute | Description |
|---|---|
points |
Four vertexes in a clockwise direction of a quadrilateral. Index 0 represents the left-most vertex. |
points
Four vertexes in a clockwise direction of a quadrilateral. Index 0 represents the left-most vertex.
- Objective-C
- Swift
@property (nonatomic, nonnull) NSArray* points;var points: [Any]? { get set }