3d model display page loading proper paths for selected task, basic error handling
|
@ -1,7 +1,6 @@
|
|||
import React from 'react';
|
||||
import './css/MapView.scss';
|
||||
import Map from './components/Map';
|
||||
import AssetDownloadButtons from './components/AssetDownloadButtons';
|
||||
|
||||
class MapView extends React.Component {
|
||||
static defaultProps = {
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import React from 'react';
|
||||
import './css/ModelView.scss';
|
||||
import ErrorMessage from './components/ErrorMessage';
|
||||
import $ from 'jquery';
|
||||
|
||||
const THREE = require('three'); // import does not work :/
|
||||
|
@ -14,25 +15,46 @@ import ProgressBar from './vendor/potree/ProgressBar';
|
|||
|
||||
class ModelView extends React.Component {
|
||||
static defaultProps = {
|
||||
test: 1
|
||||
task: null
|
||||
};
|
||||
|
||||
static propTypes = {
|
||||
test: React.PropTypes.number
|
||||
task: React.PropTypes.object.isRequired, // The object should contain two keys: {id: <taskId>, project: <projectId>}
|
||||
};
|
||||
|
||||
constructor(props){
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
};
|
||||
error: ""
|
||||
}
|
||||
}
|
||||
|
||||
assetsPath(){
|
||||
return `/api/projects/${this.props.task.project}/tasks/${this.props.task.id}/assets`
|
||||
}
|
||||
|
||||
potreeFilePath(){
|
||||
return this.assetsPath() + '/potree_pointcloud/cloud.js';
|
||||
}
|
||||
|
||||
texturedModelDirectoryPath(){
|
||||
return this.assetsPath() + '/odm_texturing/';
|
||||
}
|
||||
|
||||
objFilePath(){
|
||||
return this.texturedModelDirectoryPath() + 'odm_textured_model.obj';
|
||||
}
|
||||
|
||||
mtlFilename(){
|
||||
return 'odm_textured_model.mtl';
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
var container = this.container;
|
||||
|
||||
var sceneProperties = {
|
||||
path: "/static/app/test/brighton/cloud.js",
|
||||
path: this.potreeFilePath(),
|
||||
cameraPosition: null,
|
||||
cameraTarget: null,
|
||||
sizeType: "Adaptive", // options: "Fixed", "Attenuated", "Adaptive"
|
||||
|
@ -336,7 +358,7 @@ class ModelView extends React.Component {
|
|||
renderer.autoClear = false;
|
||||
container.appendChild(renderer.domElement);
|
||||
|
||||
skybox = Potree.utils.loadSkybox("/static/app/test/resources/textures/skybox/");
|
||||
skybox = Potree.utils.loadSkybox("/static/app/potree/textures/skybox/");
|
||||
|
||||
// camera and controls
|
||||
camera.position.set(-304, 372, 318);
|
||||
|
@ -362,7 +384,13 @@ class ModelView extends React.Component {
|
|||
|
||||
// load pointcloud
|
||||
if(pointcloudPath.indexOf("cloud.js") > 0){
|
||||
Potree.POCLoader.load(pointcloudPath, function(geometry){
|
||||
Potree.POCLoader.load(pointcloudPath, (geometry, error) => {
|
||||
if (error){
|
||||
console.log(error);
|
||||
this.setState({error: "Could not load point cloud. This task doesn't seem to have one. Try processing the task again."});
|
||||
return;
|
||||
}
|
||||
|
||||
pointcloud = new Potree.PointCloudOctree(geometry);
|
||||
|
||||
pointcloud.material.pointSizeType = Potree.PointSizeType.ADAPTIVE;
|
||||
|
@ -457,26 +485,26 @@ class ModelView extends React.Component {
|
|||
scenePointCloud.add( light );
|
||||
}
|
||||
|
||||
const toggleTexturedModel = (function(){
|
||||
const toggleTexturedModel = (() => {
|
||||
let modelReference = null,
|
||||
initializingModel = false;
|
||||
|
||||
return function(flag){
|
||||
return (flag) => {
|
||||
if (flag){
|
||||
// Need to load model for the first time?
|
||||
if (modelReference === null && !initializingModel){
|
||||
|
||||
initializingModel = true;
|
||||
const mtlLoader = new THREE.MTLLoader();
|
||||
mtlLoader.setTexturePath('/static/app/test/brighton/');
|
||||
mtlLoader.setPath('/static/app/test/brighton/');
|
||||
mtlLoader.setTexturePath(this.texturedModelDirectoryPath());
|
||||
mtlLoader.setPath(this.texturedModelDirectoryPath());
|
||||
|
||||
mtlLoader.load('odm_textured_model.mtl', function (materials) {
|
||||
mtlLoader.load(this.mtlFilename(), (materials) => {
|
||||
materials.preload();
|
||||
|
||||
const objLoader = new THREE.OBJLoader();
|
||||
objLoader.setMaterials(materials);
|
||||
objLoader.load('/static/app/test/brighton/odm_textured_model_geo.obj', function (object) {
|
||||
objLoader.load(this.objFilePath(), (object) => {
|
||||
|
||||
// ODM models are Y-up
|
||||
object.rotateX(THREE.Math.degToRad(-90));
|
||||
|
@ -1020,6 +1048,7 @@ class ModelView extends React.Component {
|
|||
// React render
|
||||
render(){
|
||||
return (<div className="model-view">
|
||||
<ErrorMessage bind={[this, "error"]} />
|
||||
<div
|
||||
className="container"
|
||||
ref={(domNode) => { this.container = domNode; }}
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
.model-view{
|
||||
height: 80%;
|
||||
|
||||
.container{
|
||||
background: rgb(79,79,79);
|
||||
background: -moz-radial-gradient(center, ellipse cover, rgba(79,79,79,1) 0%, rgba(22,22,22,1) 100%);
|
||||
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(79,79,79,1)), color-stop(100%,rgba(22,22,22,1)));
|
||||
|
@ -12,7 +13,6 @@
|
|||
background: -ms-radial-gradient(center, ellipse cover, rgba(79,79,79,1) 0%,rgba(22,22,22,1) 100%);
|
||||
background: radial-gradient(ellipse at center, rgba(79,79,79,1) 0%,rgba(22,22,22,1) 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4f4f4f', endColorstr='#161616',GradientType=1 );
|
||||
.container{
|
||||
position: relative;
|
||||
padding: 0;
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ Object.assign(MTLLoader.prototype, THREE.EventDispatcher.prototype, {
|
|||
|
||||
var scope = this;
|
||||
|
||||
var loader = new THREE.XHRLoader( this.manager );
|
||||
var loader = new THREE.FileLoader( this.manager );
|
||||
loader.setPath( this.path );
|
||||
loader.load( url, function ( text ) {
|
||||
|
||||
|
|
|
@ -1099,6 +1099,8 @@ Potree.POCLoader.load = function load(url, callback) {
|
|||
pco.nodes = nodes;
|
||||
|
||||
callback(pco);
|
||||
}else if (xhr.status === 404){
|
||||
callback(null, new Error("File not found"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Po Szerokość: | Wysokość: | Rozmiar: 602 B |
Po Szerokość: | Wysokość: | Rozmiar: 776 B |
|
@ -0,0 +1,116 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32px"
|
||||
height="32px"
|
||||
id="svg3797"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
sodipodi:docname="area.svg">
|
||||
<defs
|
||||
id="defs3799" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.395604"
|
||||
inkscape:cx="9.4591229"
|
||||
inkscape:cy="15.712251"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3805" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3802">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="M 7,25 25,25 20,15 26,5 7,5 z"
|
||||
id="path3790"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.36363649;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3807-0-1"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.45833331,0,0,0.45833331,1.9583336,15.166667)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.36363649;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3807-0-7"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.45833331,0,0,0.45833331,19.958334,15.166667)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.36363649;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3807-0-7-0"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.45833331,0,0,0.45833331,1.9583336,-4.8333327)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.36363649;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3807-0-7-9"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.45833331,0,0,0.45833331,20.958334,-4.8333327)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4.36363649;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3807-0-7-4"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.45833331,0,0,0.45833331,14.958334,5.1666673)" />
|
||||
</g>
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 4.0 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 1.1 KiB |
|
@ -0,0 +1,107 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32px"
|
||||
height="32px"
|
||||
id="svg3797"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
sodipodi:docname="clip_volume.svg"
|
||||
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\clip_volume.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3799">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 19.884691 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="32 : 20.018646 : 1"
|
||||
inkscape:persp3d-origin="16 : 10.666667 : 1"
|
||||
id="perspective5140" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="30.849589"
|
||||
inkscape:cx="15.093529"
|
||||
inkscape:cy="15.599734"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3805" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3802">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#32ce32;fill-opacity:1;stroke:#000000;stroke-width:0.55901699999999999;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.11803399000000000, 0.55901699000000005;stroke-dashoffset:0"
|
||||
id="path5138-8"
|
||||
sodipodi:cx="16.5"
|
||||
sodipodi:cy="15"
|
||||
sodipodi:rx="6.5"
|
||||
sodipodi:ry="2"
|
||||
d="m 23,15 a 6.5,2 0 1 1 -13,0 6.5,2 0 1 1 13,0 z"
|
||||
transform="matrix(1.6,0,0,2,-9.8,-5)" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 7,7 19,0 5,9 -29,0 z"
|
||||
id="path5412"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 7,21 19,0 5,9 -29,0 z"
|
||||
id="path5412-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#2cd32c;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 6,25 0,-13 21,0 0,13"
|
||||
id="path5434"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#2b982b;fill-opacity:1;stroke:#000000;stroke-width:0.55901699999999999;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.11803399000000000, 0.55901699000000005;stroke-dashoffset:0"
|
||||
id="path5138-8-0"
|
||||
sodipodi:cx="16.5"
|
||||
sodipodi:cy="15"
|
||||
sodipodi:rx="6.5"
|
||||
sodipodi:ry="2"
|
||||
d="m 23,15 a 6.5,2 0 1 1 -13,0 6.5,2 0 1 1 13,0 z"
|
||||
transform="matrix(1.6,0,0,2,-9.8,-18)" />
|
||||
</g>
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 3.8 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 680 B |
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32px"
|
||||
height="32px"
|
||||
id="svg3797"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
sodipodi:docname="distance.svg">
|
||||
<defs
|
||||
id="defs3799" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.395604"
|
||||
inkscape:cx="14.845403"
|
||||
inkscape:cy="16.761565"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3805" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3802">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 8,24 22,10"
|
||||
id="path3829"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="stroke-width:2.52600002000000010;stroke-miterlimit:4;stroke-dasharray:none;fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
|
||||
id="path3807-4"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.91666667,0,0,0.91666667,14.416667,-12.666667)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="stroke-width:2.52600002000000010;stroke-miterlimit:4;stroke-dasharray:none;fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
|
||||
id="path3807"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.91666667,0,0,0.91666667,-2.5833333,4.3333333)" />
|
||||
</g>
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 2.7 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 1.4 KiB |
|
@ -0,0 +1,174 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\orbit_controls.png"
|
||||
sodipodi:docname="earth_controls.svg"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
version="1.1"
|
||||
id="svg3797"
|
||||
height="32px"
|
||||
width="32px">
|
||||
<defs
|
||||
id="defs3799">
|
||||
<marker
|
||||
inkscape:stockid="Arrow1Lstart"
|
||||
orient="auto"
|
||||
refY="0.0"
|
||||
refX="0.0"
|
||||
id="Arrow1Lstart"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path3832"
|
||||
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
|
||||
transform="scale(0.8) translate(12.5,0)" />
|
||||
</marker>
|
||||
<marker
|
||||
inkscape:stockid="DotL"
|
||||
orient="auto"
|
||||
refY="0.0"
|
||||
refX="0.0"
|
||||
id="DotL"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path3893"
|
||||
d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
|
||||
transform="scale(0.8) translate(7.4, 1)" />
|
||||
</marker>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.836083"
|
||||
inkscape:cx="20.922587"
|
||||
inkscape:cy="17.996087"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1018"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3805" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3802">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:#000000"
|
||||
d=""
|
||||
id="path3840"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.94868326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M -11,18.6 -11,15"
|
||||
id="path2999-1-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.94868326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m -13,16.8 2,-1.8 2,1.8"
|
||||
id="path3001-7-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m -12,14 0,-5 -2,1 3,-6 3,6 -2,-1 0,5 z"
|
||||
id="path3907-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<g
|
||||
id="g3983">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3907"
|
||||
d="m 46,12 0,-5 -2,1 3,-6 3,6 -2,-1 0,5 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3907-4"
|
||||
d="m 48,16 0,5 2,-1 -3,6 -3,-6 2,1 0,-5 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3907-4-8"
|
||||
d="m 45,15 -5,0 1,2 -6,-3 6,-3 -1,2 5,0 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3907-4-8-8"
|
||||
d="m 49,13 5,0 -1,-2 6,3 -6,3 1,-2 -5,0 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 0,32 5,-20 20,0 5,20 z"
|
||||
id="path3981"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<g
|
||||
transform="translate(-65,-15)"
|
||||
id="g3983-2">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3907-45"
|
||||
d="m 46,12 0,-5 -2,1 3,-6 3,6 -2,-1 0,5 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3907-4-5"
|
||||
d="m 48,16 0,5 2,-1 -3,6 -3,-6 2,1 0,-5 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3907-4-8-1"
|
||||
d="m 45,15 -5,0 1,2 -6,-3 6,-3 -1,2 5,0 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3907-4-8-8-7"
|
||||
d="m 49,13 5,0 -1,-2 6,3 -6,3 1,-2 -5,0 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 6.8 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 1.9 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 1.0 KiB |
|
@ -0,0 +1,101 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32px"
|
||||
height="32px"
|
||||
id="svg3797"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
sodipodi:docname="flip_y_z.svg"
|
||||
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\flip_y_z.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3799" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.395604"
|
||||
inkscape:cx="14.460104"
|
||||
inkscape:cy="12.955058"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3805" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3802">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3.01811147;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="M 7.4366091,24.160724 24.790752,6.8065759"
|
||||
id="path3802-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:17.99999998999999900px;font-style:normal;font-weight:bold;line-height:122.00000286000001000%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.75452786999999999;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial Bold;font-stretch:normal;font-variant:normal"
|
||||
x="5.8119869"
|
||||
y="13.867704"
|
||||
id="text2989"
|
||||
sodipodi:linespacing="122%"
|
||||
transform="scale(1.0198841,0.98050357)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan2991"
|
||||
x="5.8119869"
|
||||
y="13.867704"
|
||||
style="stroke-width:0.75452786999999999;font-size:17.99999998999999900px;-inkscape-font-specification:Arial Bold;font-family:Arial;font-weight:bold;font-style:normal;font-stretch:normal;font-variant:normal">y</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:17.99999998999999900px;font-style:normal;font-weight:bold;line-height:122.00000286000001000%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.75452786999999999;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial Bold;font-stretch:normal;font-variant:normal"
|
||||
x="17.649065"
|
||||
y="26.180201"
|
||||
id="text2989-1"
|
||||
sodipodi:linespacing="122%"
|
||||
transform="scale(1.0198841,0.98050357)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan2991-7"
|
||||
x="17.649065"
|
||||
y="26.180201"
|
||||
style="stroke-width:0.75452786999999999;font-size:17.99999998999999900px;-inkscape-font-specification:Arial Bold;font-family:Arial;font-weight:bold;font-style:normal;font-stretch:normal;font-variant:normal">z</tspan></text>
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1.50905573;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="M 8.1911371,23.406196 24.036224,7.5611039"
|
||||
id="path3802"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 4.1 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 1.2 KiB |
|
@ -0,0 +1,173 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32px"
|
||||
height="32px"
|
||||
id="svg3797"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
sodipodi:docname="focus.svg"
|
||||
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\focus.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3799">
|
||||
<marker
|
||||
inkscape:stockid="Arrow1Lstart"
|
||||
orient="auto"
|
||||
refY="0.0"
|
||||
refX="0.0"
|
||||
id="Arrow1Lstart"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path3832"
|
||||
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
|
||||
transform="scale(0.8) translate(12.5,0)" />
|
||||
</marker>
|
||||
<marker
|
||||
inkscape:stockid="DotL"
|
||||
orient="auto"
|
||||
refY="0.0"
|
||||
refX="0.0"
|
||||
id="DotL"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path3893"
|
||||
d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
|
||||
transform="scale(0.8) translate(7.4, 1)" />
|
||||
</marker>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.395604"
|
||||
inkscape:cx="-3.8470599"
|
||||
inkscape:cy="14.606522"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3805" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3802">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 3.3226256,9.6339284 0,-6.3660716 6.3660702,0"
|
||||
id="path4826"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path4826"
|
||||
id="use4839"
|
||||
transform="matrix(0,-1,1,0,0.05476842,32.054764)"
|
||||
width="32"
|
||||
height="32" />
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#use4839"
|
||||
id="use4841"
|
||||
transform="matrix(0,-1,1,0,0.05476842,32.054764)"
|
||||
width="32"
|
||||
height="32" />
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#use4841"
|
||||
id="use4843"
|
||||
transform="matrix(0,-1,1,0,0.05476842,32.054764)"
|
||||
width="32"
|
||||
height="32" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:4.39831685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.40000000000000002"
|
||||
id="path4849"
|
||||
sodipodi:cx="16.5"
|
||||
sodipodi:cy="16.5"
|
||||
sodipodi:rx="6.5"
|
||||
sodipodi:ry="6.5"
|
||||
d="m 23,16.5 a 6.5,6.5 0 1 1 -13,0 6.5,6.5 0 1 1 13,0 z"
|
||||
transform="matrix(0.9094388,0,0,0.9094388,1.5037476,0.99425978)" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.81887758;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 3.3226256,9.6339284 0,-6.3660716 6.3660702,0"
|
||||
id="path4826-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#path4826-8"
|
||||
id="use4893"
|
||||
transform="matrix(0,-1,1,0,0.05476842,32.054764)"
|
||||
width="32"
|
||||
height="32" />
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#use4893"
|
||||
id="use4913"
|
||||
transform="matrix(0,-1,1,0,0.05476842,32.054764)"
|
||||
width="32"
|
||||
height="32" />
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#use4913"
|
||||
id="use4915"
|
||||
transform="matrix(0,-1,1,0,0.05476842,32.054764)"
|
||||
width="32"
|
||||
height="32" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#757575;fill-opacity:0;stroke:#ffffff;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.4"
|
||||
id="path4849-7"
|
||||
sodipodi:cx="16.5"
|
||||
sodipodi:cy="16.5"
|
||||
sodipodi:rx="6.5"
|
||||
sodipodi:ry="6.5"
|
||||
d="m 23,16.5 a 6.5,6.5 0 1 1 -13,0 6.5,6.5 0 1 1 13,0 z"
|
||||
transform="matrix(0.9094388,0,0,0.9094388,1.5037476,0.99425978)"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
</g>
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 5.5 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 859 B |
Po Szerokość: | Wysokość: | Rozmiar: 46 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 1.3 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 24 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 1.0 KiB |
|
@ -0,0 +1,145 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32px"
|
||||
height="32px"
|
||||
id="svg3797"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
sodipodi:docname="profile.svg"
|
||||
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\profile.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3799">
|
||||
<linearGradient
|
||||
id="linearGradient3890">
|
||||
<stop
|
||||
id="stop3898"
|
||||
offset="0"
|
||||
style="stop-color:#ff0000;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffff00;stop-opacity:1;"
|
||||
offset="0.25"
|
||||
id="stop3904" />
|
||||
<stop
|
||||
style="stop-color:#00ff00;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop3902" />
|
||||
<stop
|
||||
id="stop3906"
|
||||
offset="0.75"
|
||||
style="stop-color:#00ffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#0000ff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3894" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3890"
|
||||
id="linearGradient3896"
|
||||
x1="17"
|
||||
y1="5"
|
||||
x2="17"
|
||||
y2="26"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="pad"
|
||||
gradientTransform="matrix(0.91304348,0,0,0.91304348,2.5217391,2.173913)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3890-1"
|
||||
id="linearGradient3896-3"
|
||||
x1="17"
|
||||
y1="5"
|
||||
x2="17"
|
||||
y2="26"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="pad"
|
||||
gradientTransform="matrix(0.91304348,0,0,0.91304348,2.5217391,2.173913)" />
|
||||
<linearGradient
|
||||
id="linearGradient3890-1">
|
||||
<stop
|
||||
id="stop3898-6"
|
||||
offset="0"
|
||||
style="stop-color:#ff0000;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffff00;stop-opacity:1;"
|
||||
offset="0.25"
|
||||
id="stop3904-8" />
|
||||
<stop
|
||||
style="stop-color:#00ff00;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop3902-8" />
|
||||
<stop
|
||||
id="stop3906-2"
|
||||
offset="0.75"
|
||||
style="stop-color:#00ffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#0000ff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3894-7" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.166667"
|
||||
inkscape:cx="-18.07788"
|
||||
inkscape:cy="13.398504"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3805" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3802">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="M 4.0434781,24.956522 5.9693969,18.162896 8,11 l 6,4 3,0 4.391304,-7.391304 2.739131,8.217391 L 27,18"
|
||||
id="path3120-7"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
<path
|
||||
style="fill:none;stroke:url(#linearGradient3896);stroke-width:2.7391305;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="M 4.3478261,25 8,11 l 6,4 3,0 4.695652,-7.3478261 2.739131,8.2173911 L 28,18"
|
||||
id="path3120"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</g>
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 4.5 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 939 B |
|
@ -0,0 +1,123 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32px"
|
||||
height="32px"
|
||||
id="svg3797"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
sodipodi:docname="focus_2.svg"
|
||||
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\focus.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3799">
|
||||
<linearGradient
|
||||
id="linearGradient3789">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3791" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3793" />
|
||||
</linearGradient>
|
||||
<marker
|
||||
inkscape:stockid="Arrow1Lstart"
|
||||
orient="auto"
|
||||
refY="0.0"
|
||||
refX="0.0"
|
||||
id="Arrow1Lstart"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path3832"
|
||||
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
|
||||
transform="scale(0.8) translate(12.5,0)" />
|
||||
</marker>
|
||||
<marker
|
||||
inkscape:stockid="DotL"
|
||||
orient="auto"
|
||||
refY="0.0"
|
||||
refX="0.0"
|
||||
id="DotL"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path3893"
|
||||
d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
|
||||
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
|
||||
transform="scale(0.8) translate(7.4, 1)" />
|
||||
</marker>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3789"
|
||||
id="radialGradient3797"
|
||||
cx="19.276922"
|
||||
cy="8.2230759"
|
||||
fx="19.276922"
|
||||
fy="8.2230759"
|
||||
r="14"
|
||||
gradientTransform="matrix(1.3,0,0,1.2535715,-5.4599991,-2.2082142)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.395604"
|
||||
inkscape:cx="4.3873333"
|
||||
inkscape:cy="18.394162"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3805" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3802">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill-opacity:1.0;stroke:none;stroke-width:14;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.40000000000000002;opacity:1;fill:url(#radialGradient3797)"
|
||||
id="path2989"
|
||||
sodipodi:cx="14"
|
||||
sodipodi:cy="13.5"
|
||||
sodipodi:rx="14"
|
||||
sodipodi:ry="13.5"
|
||||
d="m 28,13.5 a 14,13.5 0 1 1 -28,0 14,13.5 0 1 1 28,0 z"
|
||||
transform="matrix(0.71428571,0,0,0.74074075,6.0000003,6)" />
|
||||
</g>
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 3.9 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 933 B |
|
@ -0,0 +1,150 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32px"
|
||||
height="32px"
|
||||
id="svg3797"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
sodipodi:docname="volume.svg"
|
||||
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\volume.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3799" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.395604"
|
||||
inkscape:cx="2.2089941"
|
||||
inkscape:cy="16.110373"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3805" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3802">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:#ff0000;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:bevel;stroke-opacity:1;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 28,6 -6,6 0,16 6,-7 z"
|
||||
id="path3776"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ff0000;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 5.5,12.5 0,15 16,0 0,-15 z"
|
||||
id="path4436"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 6,12 6,-7 16,0 -7,7 z"
|
||||
id="path3774"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.18181825;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3807-0-7-9-1"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.48958335,0,0,0.48958335,5.6145831,-5.7083338)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.18181825;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3807-0-7-9-1-9"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.48958335,0,0,0.48958335,21.614583,-5.7083338)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.18181825;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3807-0-7-9-1-8"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.48958335,0,0,0.48958335,21.677083,10.229166)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.18181825;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3807-0-7-9-1-6"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.48958335,0,0,0.48958335,0.61458315,1.1666664)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.18181825;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3807-0-7-9-1-5"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.48958335,0,0,0.48958335,16.614583,1.2916662)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.18181825;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3807-0-7-9-1-0"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.48958335,0,0,0.48958335,0.61458315,16.291666)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.18181825;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path3807-0-7-9-1-2"
|
||||
sodipodi:cx="11"
|
||||
sodipodi:cy="22"
|
||||
sodipodi:rx="6"
|
||||
sodipodi:ry="6"
|
||||
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
|
||||
transform="matrix(0.48958335,0,0,0.48958335,16.614583,16.291666)" />
|
||||
</g>
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 5.6 KiB |
|
@ -0,0 +1,325 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="500"
|
||||
height="400"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
sodipodi:docname="child_indices.svg"
|
||||
inkscape:export-filename="D:\dev\workspaces\potree\develop\docs\images\child_indices.png"
|
||||
inkscape:export-xdpi="45"
|
||||
inkscape:export-ydpi="45">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.70710678"
|
||||
inkscape:cx="135.56733"
|
||||
inkscape:cy="124.27954"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1138"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-652.36215)">
|
||||
<path
|
||||
style="fill:none;stroke:#0000ff;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 35.964072,999.65863 34.18471,-34.18475"
|
||||
id="path3996-3-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#0000ff;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 59.883632,964.55403 11.02264,0 -2e-5,10.91997"
|
||||
id="path4000-5-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#00ff00;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 36.977992,997.52243 0,-80.00003"
|
||||
id="path3996-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#00ff00;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 23.890252,928.45746 12.89774,-12.89774 12.7776,12.77764"
|
||||
id="path4000-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6.93047953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 154.6337,999.08375 213.85479,0"
|
||||
id="path2985"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6.93047953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.39215686;stroke-dasharray:20.79143858, 6.93047953;stroke-dashoffset:0"
|
||||
d="m 155.62376,999.08375 77.22534,-77.2254"
|
||||
id="path3766"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6.93047953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 365.51828,1000.0737 77.22534,-77.22527"
|
||||
id="path3766-1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6.93047953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 157.60388,995.12345 0,-213.85487"
|
||||
id="path2985-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6.93047953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 365.51828,998.09368 0,-213.85489"
|
||||
id="path2985-7-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6.93047953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 442.74362,923.83847 0,-213.85482"
|
||||
id="path2985-7-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6.93047953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.39215686;stroke-dasharray:20.79143858, 20.79143858;stroke-dashoffset:0"
|
||||
d="m 230.86897,922.84839 0,-213.85481"
|
||||
id="path2985-7-48"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6.93047953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 155.62376,784.23876 213.85479,0"
|
||||
id="path2985-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6.93047953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 232.84911,712.95389 213.8548,0"
|
||||
id="path2985-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6.93047953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.39215686;stroke-dasharray:20.79143858, 20.79143858;stroke-dashoffset:0"
|
||||
d="m 227.89876,922.84842 213.8548,0"
|
||||
id="path2985-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6.93047953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 365.51828,787.20898 77.22534,-77.22527"
|
||||
id="path3766-1-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6.93047953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="M 158.59396,785.22885 235.8193,708.00359"
|
||||
id="path3766-1-51"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.4"
|
||||
id="path3904"
|
||||
sodipodi:cx="128.21428"
|
||||
sodipodi:cy="84.64286"
|
||||
sodipodi:rx="18.214285"
|
||||
sodipodi:ry="18.214285"
|
||||
d="m 146.42856,84.64286 a 18.214285,18.214285 0 1 1 -36.42857,0 18.214285,18.214285 0 1 1 36.42857,0 z"
|
||||
transform="matrix(1.3860959,0,0,1.3860959,-16.64817,882.25561)" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:45.82860565px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.772192;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans"
|
||||
x="147.86658"
|
||||
y="1015.2977"
|
||||
id="text3900"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3902"
|
||||
x="147.86658"
|
||||
y="1015.2977"
|
||||
style="font-weight:bold;stroke-width:2.772192;stroke-miterlimit:4;stroke-dasharray:none;-inkscape-font-specification:Sans Bold">0</tspan></text>
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.4"
|
||||
id="path3904-7"
|
||||
sodipodi:cx="128.21428"
|
||||
sodipodi:cy="84.64286"
|
||||
sodipodi:rx="18.214285"
|
||||
sodipodi:ry="18.214285"
|
||||
d="m 146.42856,84.64286 a 18.214285,18.214285 0 1 1 -36.42857,0 18.214285,18.214285 0 1 1 36.42857,0 z"
|
||||
transform="matrix(1.3860959,0,0,1.3860959,187.00894,881.95859)" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:45.82860565px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.772192;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans"
|
||||
x="351.52368"
|
||||
y="1015.0006"
|
||||
id="text3900-1"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3902-1"
|
||||
x="351.52368"
|
||||
y="1015.0006"
|
||||
style="font-weight:bold;stroke-width:2.772192;stroke-miterlimit:4;stroke-dasharray:none;-inkscape-font-specification:Sans Bold">4</tspan></text>
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.39215686;stroke-dasharray:none;stroke-dashoffset:0.4"
|
||||
id="path3904-5"
|
||||
sodipodi:cx="128.21428"
|
||||
sodipodi:cy="84.64286"
|
||||
sodipodi:rx="18.214285"
|
||||
sodipodi:ry="18.214285"
|
||||
d="m 146.42856,84.64286 a 18.214285,18.214285 0 1 1 -36.42857,0 18.214285,18.214285 0 1 1 36.42857,0 z"
|
||||
transform="matrix(1.3860959,0,0,1.3860959,56.715917,801.56502)" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:45.82860565px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.772192;stroke-miterlimit:4;stroke-opacity:0.39215686;stroke-dasharray:none;font-family:Sans"
|
||||
x="221.23065"
|
||||
y="934.60706"
|
||||
id="text3900-2"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3902-7"
|
||||
x="221.23065"
|
||||
y="934.60706"
|
||||
style="font-weight:bold;stroke:#000000;stroke-width:2.772192;stroke-miterlimit:4;stroke-opacity:0.39215686;stroke-dasharray:none;-inkscape-font-specification:Sans Bold">1</tspan></text>
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.4"
|
||||
id="path3904-6"
|
||||
sodipodi:cx="128.21428"
|
||||
sodipodi:cy="84.64286"
|
||||
sodipodi:rx="18.214285"
|
||||
sodipodi:ry="18.214285"
|
||||
d="m 146.42856,84.64286 a 18.214285,18.214285 0 1 1 -36.42857,0 18.214285,18.214285 0 1 1 36.42857,0 z"
|
||||
transform="matrix(1.3860959,0,0,1.3860959,261.85812,800.17892)" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:45.82860565px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.772192;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans"
|
||||
x="426.37286"
|
||||
y="933.22095"
|
||||
id="text3900-14"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3902-2"
|
||||
x="426.37286"
|
||||
y="933.22095"
|
||||
style="font-weight:bold;stroke-width:2.772192;stroke-miterlimit:4;stroke-dasharray:none;-inkscape-font-specification:Sans Bold">5</tspan></text>
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.4"
|
||||
id="path3904-3"
|
||||
sodipodi:cx="128.21428"
|
||||
sodipodi:cy="84.64286"
|
||||
sodipodi:rx="18.214285"
|
||||
sodipodi:ry="18.214285"
|
||||
d="m 146.42856,84.64286 a 18.214285,18.214285 0 1 1 -36.42857,0 18.214285,18.214285 0 1 1 36.42857,0 z"
|
||||
transform="matrix(1.3860959,0,0,1.3860959,-15.36107,667.11372)" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:45.82860565px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.772192;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans"
|
||||
x="149.15367"
|
||||
y="800.15576"
|
||||
id="text3900-22"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3902-16"
|
||||
x="149.15367"
|
||||
y="800.15576"
|
||||
style="font-weight:bold;stroke-width:2.772192;stroke-miterlimit:4;stroke-dasharray:none;-inkscape-font-specification:Sans Bold">2</tspan></text>
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.4"
|
||||
id="path3904-8"
|
||||
sodipodi:cx="128.21428"
|
||||
sodipodi:cy="84.64286"
|
||||
sodipodi:rx="18.214285"
|
||||
sodipodi:ry="18.214285"
|
||||
d="m 146.42856,84.64286 a 18.214285,18.214285 0 1 1 -36.42857,0 18.214285,18.214285 0 1 1 36.42857,0 z"
|
||||
transform="matrix(1.3860959,0,0,1.3860959,184.23674,671.27201)" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:45.82860565px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.772192;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans"
|
||||
x="348.75146"
|
||||
y="804.31403"
|
||||
id="text3900-5"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3902-76"
|
||||
x="348.75146"
|
||||
y="804.31403"
|
||||
style="font-weight:bold;stroke-width:2.772192;stroke-miterlimit:4;stroke-dasharray:none;-inkscape-font-specification:Sans Bold">6</tspan></text>
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.4"
|
||||
id="path3904-1"
|
||||
sodipodi:cx="128.21428"
|
||||
sodipodi:cy="84.64286"
|
||||
sodipodi:rx="18.214285"
|
||||
sodipodi:ry="18.214285"
|
||||
d="m 146.42856,84.64286 a 18.214285,18.214285 0 1 1 -36.42857,0 18.214285,18.214285 0 1 1 36.42857,0 z"
|
||||
transform="matrix(1.3860959,0,0,1.3860959,53.943726,596.42282)" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:45.82860565px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.772192;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans"
|
||||
x="218.45845"
|
||||
y="729.46484"
|
||||
id="text3900-8"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3902-9"
|
||||
x="218.45845"
|
||||
y="729.46484"
|
||||
style="font-weight:bold;stroke-width:2.772192;stroke-miterlimit:4;stroke-dasharray:none;-inkscape-font-specification:Sans Bold">3</tspan></text>
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0.4"
|
||||
id="path3904-2"
|
||||
sodipodi:cx="128.21428"
|
||||
sodipodi:cy="84.64286"
|
||||
sodipodi:rx="18.214285"
|
||||
sodipodi:ry="18.214285"
|
||||
d="m 146.42856,84.64286 a 18.214285,18.214285 0 1 1 -36.42857,0 18.214285,18.214285 0 1 1 36.42857,0 z"
|
||||
transform="matrix(1.3860959,0,0,1.3860959,266.01641,595.03673)" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:45.82860565px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.772192;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans"
|
||||
x="430.53113"
|
||||
y="728.0788"
|
||||
id="text3900-7"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3902-95"
|
||||
x="430.53113"
|
||||
y="728.0788"
|
||||
style="font-weight:bold;stroke-width:2.772192;stroke-miterlimit:4;stroke-dasharray:none;-inkscape-font-specification:Sans Bold">7</tspan></text>
|
||||
<path
|
||||
style="fill:none;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 32.727922,998.29108 79.999998,0"
|
||||
id="path3996"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ff0000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 101.79286,985.20335 12.89774,12.89778 -12.77764,12.77757"
|
||||
id="path4000"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
Po Szerokość: | Wysokość: | Rozmiar: 17 KiB |
|
@ -0,0 +1,2 @@
|
|||
background:
|
||||
http://halfblog.net/2012/09/22/minimalistic-iphone-5-wallpapers/
|
Po Szerokość: | Wysokość: | Rozmiar: 527 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 37 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 6.3 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 41 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 40 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 75 KiB |
Po Szerokość: | Wysokość: | Rozmiar: 47 KiB |
|
@ -0,0 +1 @@
|
|||
http://reije081.home.xs4all.nl/skyboxes/
|
Po Szerokość: | Wysokość: | Rozmiar: 1.8 MiB |
|
@ -0,0 +1 @@
|
|||
http://reije081.home.xs4all.nl/skyboxes/
|
|
@ -71,7 +71,10 @@ def model_display(request, project_pk=None, task_pk=None):
|
|||
return render(request, 'app/3d_model_display.html', {
|
||||
'title': title,
|
||||
'params': {
|
||||
'test': 123
|
||||
'task': json.dumps({
|
||||
'id': task.id,
|
||||
'project': project.id
|
||||
})
|
||||
}.items()
|
||||
})
|
||||
|
||||
|
|