You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.4 KiB

//=============================================================================================================================
//
// EasyAR Sense 3.1.0-final-7bf6504c6
// Copyright (c) 2015-2020 VisionStar Information Technology (Shanghai) Co., Ltd. All Rights Reserved.
// EasyAR is the registered trademark or trademark of VisionStar Information Technology (Shanghai) Co., Ltd in China
// and other countries for the augmented reality technology developed by VisionStar Information Technology (Shanghai) Co., Ltd.
//
//=============================================================================================================================
#import "easyar/types.oc.h"
/// <summary>
/// record
/// Square matrix of 4. The data arrangement is row-major.
/// </summary>
@interface easyar_Matrix44F : NSObject
/// <summary>
/// The raw data of matrix.
/// </summary>
@property (nonatomic) NSArray<NSNumber *> * data;
+ (instancetype)new NS_UNAVAILABLE;
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)create:(NSArray<NSNumber *> *)data;
@end
/// <summary>
/// record
/// Square matrix of 3. The data arrangement is row-major.
/// </summary>
@interface easyar_Matrix33F : NSObject
/// <summary>
/// The raw data of matrix.
/// </summary>
@property (nonatomic) NSArray<NSNumber *> * data;
+ (instancetype)new NS_UNAVAILABLE;
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)create:(NSArray<NSNumber *> *)data;
@end