forked from react-native-ar/react-native-arkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
67 lines (62 loc) · 1.56 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//
// index.js
//
// Created by HippoAR on 7/9/17.
// Copyright © 2017 HippoAR. All rights reserved.
//
import ARBox from './components/ARBox';
import ARCapsule from './components/ARCapsule';
import ARCone from './components/ARCone';
import ARCylinder from './components/ARCylinder';
import ARGroup from './components/ARGroup';
import ARKit from './ARKit';
import ARLight from './components/ARLight';
import ARModel from './components/ARModel';
import ARPlane from './components/ARPlane';
import ARPyramid from './components/ARPyramid';
import ARShape from './components/ARShape';
import ARSphere from './components/ARSphere';
import ARSprite from './components/ARSprite';
import ARText from './components/ARText';
import ARTorus from './components/ARTorus';
import ARTube from './components/ARTube';
import DeviceMotion from './DeviceMotion';
import startup from './startup';
import withProjectedPosition from './hocs/withProjectedPosition';
import * as colorUtils from './lib/colorUtils';
ARKit.Box = ARBox;
ARKit.Sphere = ARSphere;
ARKit.Cylinder = ARCylinder;
ARKit.Cone = ARCone;
ARKit.Pyramid = ARPyramid;
ARKit.Tube = ARTube;
ARKit.Torus = ARTorus;
ARKit.Capsule = ARCapsule;
ARKit.Plane = ARPlane;
ARKit.Text = ARText;
ARKit.Model = ARModel;
ARKit.Sprite = ARSprite;
ARKit.Group = ARGroup;
ARKit.Shape = ARShape;
ARKit.Light = ARLight;
startup();
export {
colorUtils,
ARKit,
DeviceMotion,
ARBox,
ARSphere,
ARSprite,
ARCylinder,
ARCone,
ARPyramid,
ARTube,
ARTorus,
ARCapsule,
ARPlane,
ARText,
ARModel,
ARLight,
ARGroup,
withProjectedPosition,
};