Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

assignment 5 #168

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,952 changes: 2,952 additions & 0 deletions 01/files/js/GLTF2Loader.js

Large diffs are not rendered by default.

44,230 changes: 44,230 additions & 0 deletions 01/files/js/three.js

Large diffs are not rendered by default.

5,332 changes: 5,332 additions & 0 deletions 01/files/models/black_soup/alligator.gltf

Large diffs are not rendered by default.

703 changes: 703 additions & 0 deletions 01/files/models/black_soup/birds_raven.gltf

Large diffs are not rendered by default.

6,402 changes: 6,402 additions & 0 deletions 01/files/models/black_soup/birds_vulture.gltf

Large diffs are not rendered by default.

3,658 changes: 3,658 additions & 0 deletions 01/files/models/black_soup/goat.gltf

Large diffs are not rendered by default.

4,508 changes: 4,508 additions & 0 deletions 01/files/models/black_soup/quadruped_bear.gltf

Large diffs are not rendered by default.

1,478 changes: 1,478 additions & 0 deletions 01/files/models/black_soup/quadruped_panther.gltf

Large diffs are not rendered by default.

4,484 changes: 4,484 additions & 0 deletions 01/files/models/black_soup/quadruped_wolf.gltf

Large diffs are not rendered by default.

6,528 changes: 6,528 additions & 0 deletions 01/files/models/life_soup/birdsA_eagle.gltf

Large diffs are not rendered by default.

4,566 changes: 4,566 additions & 0 deletions 01/files/models/life_soup/birdsA_parrot.gltf

Large diffs are not rendered by default.

3,947 changes: 3,947 additions & 0 deletions 01/files/models/life_soup/fishA.gltf

Large diffs are not rendered by default.

4,543 changes: 4,543 additions & 0 deletions 01/files/models/life_soup/quadruped_bear.gltf

Large diffs are not rendered by default.

2,658 changes: 2,658 additions & 0 deletions 01/files/models/life_soup/quadruped_chow.gltf

Large diffs are not rendered by default.

2,288 changes: 2,288 additions & 0 deletions 01/files/models/life_soup/quadruped_fox.gltf

Large diffs are not rendered by default.

2,101 changes: 2,101 additions & 0 deletions 01/files/models/life_soup/quadruped_frog.gltf

Large diffs are not rendered by default.

5,038 changes: 5,038 additions & 0 deletions 01/files/models/life_soup/quadruped_horse.gltf

Large diffs are not rendered by default.

Binary file added 01/img/screenshot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 29 additions & 6 deletions 01/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}

#screenshot {
float:left;
float:center;
margin-right: 20px;
margin-bottom: 20px;
max-width: 300px;
Expand All @@ -32,6 +32,9 @@
#comparison {
text-align: justify;
}
#comparison_desc {
text-align: center;
}

#bonus {
width: 100%;
Expand All @@ -45,23 +48,43 @@

<h1>RO.ME "3 DREAMS OF BLACK"</h1>

<div class="'title">
<img id='screenshot' src='img/screenshot.jpg'>
<br>
</div>

<div class='demo'>

<!-- TODO: REPLACE WITH A SCREENSHOT OF RO.ME -->
<img id='screenshot' src='https://placehold.co/300x300'>
<!-- <img id='screenshot' src='/01/img/screenshot.jpg'> -->

<p id='description'>
<!-- TODO: FILL IN YOUR DESCRIPTION -->
RO.ME is a very cool webgl demo!
RO.ME, an immersive, interactive digital experience of subconsciousness!
</p>
<p id='technology'>
Technology: TODO! <!-- TODO: FILL IN THE TECHNOLOGIES USED -->
Technology: WebGL, HTML5, CSS3, JS <!-- TODO: FILL IN THE TECHNOLOGIES USED -->
</p>
<p id='comparison'>
Comparison: TODO! <!-- TODO: FILL IN THE COMPARISON -->
Comparison: <a href="https://www.no-fishing.net/">Sea Shepherd - No fishing net </a>

<!-- TODO: FILL IN THE COMPARISON -->
</p>

<p id='comparison_desc'>
RO.ME is a visually immersive, interactive music video set in
surreal 3D landscapes that sync with music. In contrast, <a href="https://www.no-fishing.net/">No Fishing Net </a> is a minimalist,
meditative web experience with subtle animations and calming interactions.


</p>


<div id='bonus'>
<iframe class="viewer" src="viewer.html?files/models/black_soup/alligator.gltf"></iframe>
<iframe class="viewer" src="viewer.html?files/models/black_soup/birds_raven.gltf"></iframe>
<iframe class="viewer" src="viewer.html?files/models/black_soup/birds_vulture.gltf"></iframe>
<p id='reference'>
Models from <a href="https://mrdoob.github.io/rome-gltf/">HERE </a>
<!-- TODO: BONUS TASK GOES HERE -->
</div>

Expand Down
104 changes: 104 additions & 0 deletions 01/viewer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>ROME GLTF</title>
<style>
body {
margin: 0;
}
</style>
</head>
<body>
<script src="files/js/three.js"></script>
<script src="files/js/GLTF2Loader.js"></script>
<script>
var renderer = new THREE.WebGLRenderer();
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
renderer.animate( render );
document.body.appendChild( renderer.domElement );

var scene = new THREE.Scene();
scene.background = new THREE.Color( 0xdddddd );

var light = new THREE.DirectionalLight( 0xffffff, 1.25 );
light.position.set( 1, 1, 1 );
scene.add( light );

var light = new THREE.HemisphereLight();
scene.add( light );

var camera = new THREE.PerspectiveCamera( 40, window.innerWidth / window.innerHeight );

var mixer, sphere;

var loader = new THREE.GLTF2Loader();
loader.load( location.search.substr( 1 ), function ( gltf ) {

// TODO Implement Double side in exporter

gltf.scene.traverse( function ( child ) {

if ( 'material' in child ) {

child.material.side = THREE.DoubleSide;

}

} );

sphere = new THREE.Box3()
.expandByObject( gltf.scene )
.getBoundingSphere();

//

var animations = gltf.animations;

if ( animations && animations.length ) {

mixer = new THREE.AnimationMixer( gltf.scene );

for ( var i = 0; i < animations.length; i ++ ) {

var animation = animations[ i ];
mixer.clipAction( animation ).play();

}

}

scene.add( gltf.scene );

} );

//

var prevTime = performance.now() / 1000;

function render() {

var time = performance.now() / 1000;

if ( sphere ) {

camera.position.set( Math.cos( time ), 1.5, Math.sin( time ) ).multiplyScalar( sphere.radius );
camera.lookAt( sphere.center );

}

if ( mixer ) {

mixer.update( time - prevTime );

}

renderer.render( scene, camera );

prevTime = time;

}

</script>
</body>
</html>
Binary file added 02/_460screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
109 changes: 109 additions & 0 deletions 02/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,114 @@
<html>
<head>
<script type="text/javascript" src="https://get.goXTK.com/xtk_edge.js"> </script>
<script type="text/javascript" src="loader.js"> </script>
<title>CS460.org Assignment 2</title>
<script>
// Define constants
const CUBE_SIDELENGTH = 10;
const GAP = 2;

CAMERAS = [];
cyclingInterval = null;
currentCameraIndex = 0;



const colorMap = {
'white': [255, 255, 255],
'red': [255, 0, 0],
'green': [0, 255, 0],
'blue': [0, 0, 255],
'yellow': [255, 255, 0],
'pink': [255, 0, 255],
'cyan':[0, 255, 255],
'black': [0, 0, 0],
};


// Function to create a 3D cube & rotate it
window.onload = function() {

r = new X.renderer3D();
r.init();

cube = new X.cube();
cube.color = [255, 255, 255];

toggle = false;

// Define actions for different keys as functions
const keyActionList = {
'KeyD': function() { cube.transform.translateX(-CUBE_SIDELENGTH - GAP); },
'KeyA': function() { cube.transform.translateX(CUBE_SIDELENGTH + GAP); },
'KeyW': function() { cube.transform.translateZ(CUBE_SIDELENGTH + GAP); },
'KeyS': function() { cube.transform.translateZ(-CUBE_SIDELENGTH - GAP); },
'KeyQ': function() { cube.transform.translateY(CUBE_SIDELENGTH + GAP); },
'KeyE': function() { cube.transform.translateY(-CUBE_SIDELENGTH - GAP); },
'Digit1': function() { cube.color = colorMap['white']; /* white */ },
'Digit2': function() { cube.color = colorMap['red']; /* red */ },
'Digit3': function() { cube.color = colorMap['green']; /* green */ },
'Digit4': function() { cube.color = colorMap['blue']; /* blue */ },
'Digit5': function() { cube.color = colorMap['yellow']; /* yellow */ },
'Digit6': function() { cube.color = colorMap['pink']; /* pink */ },
'Digit7': function() { cube.color = colorMap['cyan']; /* cyan */ },
'Digit0': function() { cube.color = colorMap['black']; /* black */ },
'Space': function() {
cube2 = new X.cube();
cube2.color = cube.color;
cube2.transform.matrix = new Float32Array(cube.transform.matrix);
cube2.lengthX = cube2.lengthY = cube2.lengthZ = CUBE_SIDELENGTH;

r.add(cube2);
},
'KeyO': function() { download() },
'KeyL': function() { upload("scene.json") },
'KeyB': function() {
toggle = !toggle
r.onRender = function() {
// spin the camera in X direction by 1 degree
if (toggle === true){
r.camera.rotate([1, 0]);
}
}
},

'KeyC': function() {
// Store the current camera view
CAMERAS.push(new Float32Array(r.camera.view));
},
'KeyV': function() {
if (cyclingInterval) {
// Stop the current cycling
clearInterval(cyclingInterval);
cyclingInterval = null;
} else {
// Start cycling through cameras
cyclingInterval = setInterval(() => {
if (CAMERAS.length > 0) {
// Switch to the next camera
currentCameraIndex = (currentCameraIndex + 1) % CAMERAS.length;
r.camera.view = CAMERAS[currentCameraIndex];
}
}, 1000); // Cycle every second
}
}



};

r.add(cube);
r.render();


window.onkeypress = function(e) {
if (keyActionList[e.code]) {
keyActionList[e.code](); // Call the function associated with the pressed key
}
};
}
</script>
<style>
body {
background-color:#000;
Expand All @@ -10,6 +118,7 @@
overflow: hidden !important;
}
</style>

</head>
<body>
</body>
Expand Down
4 changes: 4 additions & 0 deletions 02/loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ function download() {
// create JSON object
var out = {};
out['cubes'] = ALL_CUBES;

out['cameras'] = CAMERAS;

out['camera'] = r.camera.view;

// from https://stackoverflow.com/a/30800715
Expand Down Expand Up @@ -57,6 +60,7 @@ function upload(scene) {

// restore camera
r.camera.view = new Float32Array(Object.values(loaded['camera']));
CAMERAS = loaded['cameras'] || [];


};
Expand Down
1 change: 1 addition & 0 deletions 02/scene.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"cubes":[[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-120,"13":0,"14":12,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":72,"13":0,"14":24,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":72,"13":0,"14":12,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":72,"13":0,"14":0,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":60,"13":0,"14":0,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":48,"13":0,"14":0,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":48,"13":0,"14":12,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":48,"13":0,"14":-12,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":48,"13":0,"14":-24,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":24,"13":0,"14":24,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":24,"13":0,"14":12,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":24,"13":0,"14":0,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":24,"13":0,"14":-12,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":12,"13":0,"14":-24,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":0,"13":0,"14":-24,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-12,"13":0,"14":-12,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":0,"13":0,"14":0,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":12,"13":0,"14":0,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-60,"13":0,"14":24,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-48,"13":0,"14":24,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-36,"13":0,"14":12,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-36,"13":0,"14":0,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-36,"13":0,"14":-12,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-48,"13":0,"14":-24,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-60,"13":0,"14":-24,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-72,"13":0,"14":-12,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-72,"13":0,"14":0,"15":1}],[[0,255,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-72,"13":0,"14":12,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":108,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":96,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":72,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":84,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":60,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":48,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":36,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":24,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":12,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":0,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-12,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-24,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-36,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-48,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-60,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-72,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-84,"13":0,"14":48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-96,"13":0,"14":48,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-108,"13":0,"14":36,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-108,"13":0,"14":24,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-108,"13":0,"14":12,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-108,"13":0,"14":0,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-108,"13":0,"14":-12,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-108,"13":0,"14":-24,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-108,"13":0,"14":-36,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-60,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-72,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-84,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-96,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-48,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-36,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-24,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":-12,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":0,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":12,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":24,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":36,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":48,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":60,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":72,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":84,"13":0,"14":-48,"15":1}],[[0,0,255],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":96,"13":0,"14":-48,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":108,"13":0,"14":-36,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":108,"13":0,"14":-24,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":108,"13":0,"14":-12,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":108,"13":0,"14":0,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":108,"13":0,"14":12,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":108,"13":0,"14":24,"15":1}],[[255,0,0],{"0":1,"1":0,"2":0,"3":0,"4":0,"5":1,"6":0,"7":0,"8":0,"9":0,"10":1,"11":0,"12":108,"13":0,"14":36,"15":1}]],"camera":{"0":-1,"1":0,"2":0,"3":0,"4":0,"5":0,"6":1,"7":0,"8":0,"9":1,"10":0,"11":0,"12":0,"13":0,"14":-100,"15":1}}
Binary file added 03/estimate.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading