13 lines
244 B
Plaintext
13 lines
244 B
Plaintext
#import "PoseTrackingOptions.h"
|
|
|
|
@implementation PoseTrackingOptions
|
|
|
|
- (instancetype) initWithShowLandmarks : (bool) showLandmarks {
|
|
// self.cameraRotation = cameraRotation;
|
|
self.showLandmarks = showLandmarks;
|
|
return self;
|
|
}
|
|
|
|
|
|
@end
|