Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
John Wedgbury committed Mar 28, 2018
1 parent 85fd122 commit 4b40fd6
Show file tree
Hide file tree
Showing 16 changed files with 128 additions and 53 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.john.arcorelocation.rendering;
package uk.co.appoly.arcorelocation.rendering;

/**
* Created by John on 02/03/2018.
Expand All @@ -16,7 +16,7 @@
import android.opengl.Matrix;
import android.util.Log;

import com.john.arcorelocation.utils.ShaderUtil;
import uk.co.appoly.arcorelocation.utils.ShaderUtil;

import java.nio.ByteBuffer;
import java.nio.ByteOrder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.john.arcorelocation.rendering;
package uk.co.appoly.arcorelocation.rendering;

/**
* Created by John on 02/03/2018.
Expand All @@ -12,7 +12,7 @@
import android.opengl.Matrix;
import android.util.Log;

import com.john.arcorelocation.utils.ShaderUtil;
import uk.co.appoly.arcorelocation.utils.ShaderUtil;

import java.io.IOException;
import java.nio.ByteBuffer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.john.arcorelocation.rendering;
package uk.co.appoly.arcorelocation.rendering;

import android.content.Context;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.john.arcorelocation.sensor;
package uk.co.appoly.arcorelocation.sensor;

import android.Manifest;
import android.content.Context;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.john.arcorelocation.sensor;
package uk.co.appoly.arcorelocation.sensor;

import android.content.Context;
import android.hardware.Sensor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.john.arcorelocation.utils;
package uk.co.appoly.arcorelocation.utils;

/**
* Created by John on 02/03/2018.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.john.arcorelocation.utils;
package uk.co.appoly.arcorelocation.utils;

/*
* Copyright 2017 Google Inc. All Rights Reserved.
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

140 changes: 109 additions & 31 deletions examples/hello_ar_java/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions examples/hello_ar_java/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,12 @@ android {
dependencies {
// ARCore library
implementation 'com.google.ar:core:0.91.0'

// Obj - a simple Wavefront OBJ file loader
// https://github.com/javagl/Obj
implementation 'de.javagl:obj:0.2.1'

implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support:design:27.0.2'

compile 'com.github.appoly:ARCore-Location:9ea6e30d24'
implementation 'com.github.appoly:ARCore-Location:0.0.1'
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@
import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;

import uk.co.arcorelocation.LocationScene;
import uk.co.arcorelocation.LocationMarker;
import uk.co.arcorelocation.rendering.AnnotationRenderer;
import uk.co.arcorelocation.rendering.ImageRenderer;
import uk.co.appoly.arcorelocation.LocationScene;
import uk.co.appoly.arcorelocation.LocationMarker;
import uk.co.appoly.arcorelocation.rendering.AnnotationRenderer;
import uk.co.appoly.arcorelocation.rendering.ImageRenderer;

/**
* This is a simple example that shows how to create an augmented reality (AR) application using the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import android.opengl.GLUtils;
import android.opengl.Matrix;
import com.google.ar.core.examples.java.helloar.R;
import uk.co.arcorelocation.rendering.Renderer;
import uk.co.appoly.arcorelocation.rendering.Renderer;

import de.javagl.obj.Obj;
import de.javagl.obj.ObjData;
Expand Down

This file was deleted.

Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.

0 comments on commit 4b40fd6

Please sign in to comment.