mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Sample that uses UIKit has been added. - Import of STEP files is provided - Zoom, Rotate, Pan actions are provided - Selection of solids is supported
31 lines
510 B
Objective-C
31 lines
510 B
Objective-C
//
|
|
// ViewController.m
|
|
// UIKitSample
|
|
//
|
|
// Created by aan on 21/11/16.
|
|
// Copyright © 2016 aan. All rights reserved.
|
|
//
|
|
|
|
#import "ViewController.h"
|
|
#include "OcctViewer.h"
|
|
|
|
@interface ViewController ()
|
|
|
|
@end
|
|
|
|
@implementation ViewController
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
// Do any additional setup after loading the view, typically from a nib.
|
|
}
|
|
|
|
|
|
- (void)didReceiveMemoryWarning {
|
|
[super didReceiveMemoryWarning];
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
|
|
@end
|