An open API service indexing awesome lists of open source software.

https://github.com/raphamorim/arjs

Augmented Reality [拡張現実] JavaScript Library
https://github.com/raphamorim/arjs

Last synced: about 1 year ago
JSON representation

Augmented Reality [拡張現実] JavaScript Library

Awesome Lists containing this project

README

          

# arjs

> Augmented Reality `拡張現実` JavaScript Library

## Usage

### init

Init AR configuration:

```js

ar.init({

});

```

### add

Add objects:

```js

ar.add(objectPropeties);

```

### remove

Remove objects based on reference:

```js

var ref = ar.add(objectPropeties);

ar.remove(ref);

```