Skip to content

Commit b19921b

Browse files
authored
Merge pull request #1 from aditis1204/ARArea
Ar area
2 parents 2158bf5 + d19648d commit b19921b

57 files changed

Lines changed: 15014 additions & 24 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
0 Bytes
Binary file not shown.

.idea/codeStyles/Project.xml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
# MapMint4ME_final
2-
* I added the following methods which give more information regarding GPS satellites currently used to fix locations. Satellite information is required because MapMint4ME acquires data without internet
3-
* GPS Coordinated displayed on screen.
4-
* getPrn() method returns pseudo random number for satellite
5-
* getAzimuth() method returns azimuth of the satellite in degrees
6-
* getElevation() method returns elevation of the satellite in degrees
7-
* getSnr() method returns signal to noise ratio
8-
* usedInFix() method returns Returns true if the satellite was used by the GPS engine when calculating the most recent GPS fix
9-
* Module Integrated with existing MapMint4ME.
10-
* Screenshots:
11-
<img src = "output/op1.jpg" width = "250" height="500" />
1+
# MapMint4ME_GSoC2020
2+
3+
AR Area Measure Module
124

13-
<img src = "output/op2.jpg" width = "250" height="500" />

app/build.gradle

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ dependencies {
5959
implementation 'com.android.support:preference-v14:27.0.0'
6060

6161

62+
63+
64+
6265
implementation 'de.javagl:obj:0.2.1'
6366
implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
6467
transitive = true;
@@ -71,4 +74,20 @@ dependencies {
7174
sceneform.asset('sampledata/model.obj',
7275
'default',
7376
'sampledata/model.sfa',
74-
'src/main/assets/model')
77+
'src/main/assets/model')
78+
sceneform.asset('sampledata/wheelchair.fbx',
79+
'default',
80+
'sampledata/wheelchair.sfa',
81+
'src/main/assets/wheelchair')
82+
83+
84+
sceneform.asset('sampledata/stroller.fbx',
85+
'default',
86+
'sampledata/stroller.sfa',
87+
'src/main/assets/stroller')
88+
89+
90+
sceneform.asset('sampledata/cart.fbx',
91+
'default',
92+
'sampledata/cart.sfa',
93+
'src/main/assets/cart')

app/sampledata/Andy.mtl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
newmtl initialShadingGroup
2+
illum 4
3+
Kd 0.00 0.00 0.00
4+
Ka 0.00 0.00 0.00
5+
Tf 1.00 1.00 1.00
6+
map_Kd Andy_Diffuse.png
7+
Ni 1.00

0 commit comments

Comments
 (0)