Started upgrading potree, adding 3D camera poses

pull/863/head
Piero Toffanin 2020-05-18 18:33:21 -04:00
rodzic 1119d39ea6
commit 34a61847bf
267 zmienionych plików z 5070 dodań i 156801 usunięć

Wyświetl plik

@ -6,13 +6,20 @@ import AssetDownloadButtons from './components/AssetDownloadButtons';
import Standby from './components/Standby';
import ShareButton from './components/ShareButton';
import PropTypes from 'prop-types';
import proj4 from 'proj4';
import epsg from 'epsg';
import $ from 'jquery';
window.Potree = require('./vendor/potree');
// Add more proj definitions
const defs = [];
for (let k in epsg){
if (epsg[k]){
defs.push([k, epsg[k]]);
}
}
window.proj4.defs(defs);
require('./vendor/OBJLoader');
THREE.MTLLoader = require('./vendor/MTLLoader');
require('./vendor/MTLLoader');
require('./vendor/ColladaLoader');
class TexturedModelMenu extends React.Component{
@ -151,6 +158,8 @@ class ModelView extends React.Component {
}
});
viewer.scene.scene.add( new THREE.AmbientLight( 0xcccccc, 1.0 ) );
this.pointCloudFilePath(pointCloudPath => {
Potree.loadPointCloud(pointCloudPath, "Point Cloud", e => {
if (e.type == "loading_failed"){
@ -164,10 +173,10 @@ class ModelView extends React.Component {
let material = e.pointcloud.material;
material.size = 1;
material.pointSizeType = Potree.PointSizeType.ADAPTIVE;
material.pointColorType = Potree.PointColorType.RGB;
this.loadCameras();
window.scene = viewer.scene.scene;
viewer.fitToScreen();
});
@ -177,6 +186,18 @@ class ModelView extends React.Component {
loadCameras(){
const { task } = this.props;
function rotate(vector, angleaxis) {
var v = new THREE.Vector3(vector[0], vector[1], vector[2]);
var axis = new THREE.Vector3(angleaxis[0],
angleaxis[1],
angleaxis[2]);
var angle = axis.length();
axis.normalize();
var matrix = new THREE.Matrix4().makeRotationAxis(axis, angle);
v.applyMatrix4(matrix);
return v;
}
if (task.available_assets.indexOf('shots.geojson') !== -1){
const colladaLoader = new THREE.ColladaLoader();
const fileloader = new THREE.FileLoader();
@ -190,46 +211,48 @@ class ModelView extends React.Component {
let pcproj = this.pointCloud.projection;
if (pcproj){
if (pcproj.toLowerCase().startsWith("epsg")){
pcproj = epsg[pcproj];
}
}else{
if (!pcproj){
console.log("NO PROJ!!!");
// TODO ?
}
const toScene = proj4(gjproj, pcproj);
const cameraObj = dae.children[0];
console.log(cameraObj);
// const cameraMesh = new THREE.InstancedMesh( cameraObj.geometry, cameraObj.material, geojson.features.length );
// TODO: instancing doesn't seem to work :/
// const cameraMeshes = new THREE.InstancedMesh( cameraObj.geometry, cameraObj.material, geojson.features.length );
// const dummy = new THREE.Object3D();
// let i = 0;
// geojson.features.forEach(feat => {
// const coords = feat.geometry.coordinates;
// const utm = toScene.forward([coords[0], coords[1]]);
// utm.push(coords[2]); // z in meters doesn't change
let i = 0;
geojson.features.forEach(feat => {
const coords = feat.geometry.coordinates;
// dummy.position.set(utm[0], utm[1], utm[2]);
// // TODO: rotation
const utm = toScene.forward([coords[0], coords[1]]);
utm.push(coords[2]); // z in meters doesn't change
// dummy.updateMatrix();
const rotation = rotate([0, 0, 1], feat.properties.rotation);
// dummy.rotation.set(
// Math.random() * Math.PI,
// Math.random() * Math.PI,
// Math.random() * Math.PI
// );
// dummy.position.set(utm[0], utm[1], utm[2]);
// dummy.rotation.set(...)
// dummy.updateMatrix();
// cameraMeshes.setMatrixAt(i, dummy.matrix);
// cameraMesh.setMatrixAt(i, dummy.matrix);
const cameraMesh = new THREE.Mesh(cameraObj.geometry, cameraObj.material);
cameraMesh.position.set(utm[0], utm[1], utm[2]);
cameraMesh.rotation.set(rotation.x, rotation.y, rotation.z);
viewer.scene.scene.add(cameraMesh);
// console.log(i);
i++;
});
// i++;
// });
// dae.position.set(utm[0], utm[1], utm[2]);
// dae.scale.x = 1;
// dae.scale.y = 1;
// dae.scale.z = 1;
// viewer.scene.scene.add(cameraMesh);
// viewer.scene.scene.add(cameraMeshes);
}, undefined, console.error);
});
}
@ -251,7 +274,6 @@ class ModelView extends React.Component {
this.setState({initializingModel: true});
const mtlLoader = new THREE.MTLLoader();
mtlLoader.setTexturePath(this.texturedModelDirectoryPath());
mtlLoader.setPath(this.texturedModelDirectoryPath());
mtlLoader.load(this.mtlFilename(), (materials) => {
@ -264,7 +286,6 @@ class ModelView extends React.Component {
const bboxWorld = this.pointCloud.getBoundingBoxWorld();
const pcCenter = new THREE.Vector3();
bboxWorld.getCenter(pcCenter);
object.position.set(pcCenter.x, pcCenter.y, pcCenter.z);
// Bring the model close to center
@ -283,6 +304,7 @@ class ModelView extends React.Component {
}
viewer.scene.scene.add(object);
window.object = object; // TODO REMOVE
this.modelReference = object;
this.setPointCloudsVisible(false);

Wyświetl plik

@ -1,7 +1,3 @@
@import '../vendor/potree/build/potree.css';
@import '../vendor/potree/libs/jquery-ui.css';
@import '../vendor/potree/libs/themes/mixed/style.css';
.model-view{
position: relative;
height: 100%;
@ -180,7 +176,12 @@
}
}
#potree_download_profile_ortho_link, #potree_download_profile_link{
color: black;
}
}
#profile_window{
z-index: 999999999999 !important;
}

Plik diff jest za duży Load Diff

Wyświetl plik

@ -3,166 +3,122 @@
*
* @author angelxuanchang
*/
function MTLLoader( manager ) {
this.manager = ( manager !== undefined ) ? manager : THREE.DefaultLoadingManager;
THREE.MTLLoader = function ( manager ) {
THREE.Loader.call( this, manager );
};
Object.assign(MTLLoader.prototype, THREE.EventDispatcher.prototype, {
THREE.MTLLoader.prototype = Object.assign( Object.create( THREE.Loader.prototype ), {
/**
* Loads and parses a MTL asset from a URL.
*
* @param {String} url - URL to the MTL file.
* @param {Function} [onLoad] - Callback invoked with the loaded object.
* @param {Function} [onProgress] - Callback for download progress.
* @param {Function} [onError] - Callback for download errors.
*
* @see setPath setTexturePath
*
* @note In order for relative texture references to resolve correctly
* you must call setPath and/or setTexturePath explicitly prior to load.
*/
load: function ( url, onLoad, onProgress, onError ) {
constructor: THREE.MTLLoader,
var scope = this;
/**
* Loads and parses a MTL asset from a URL.
*
* @param {String} url - URL to the MTL file.
* @param {Function} [onLoad] - Callback invoked with the loaded object.
* @param {Function} [onProgress] - Callback for download progress.
* @param {Function} [onError] - Callback for download errors.
*
* @see setPath setResourcePath
*
* @note In order for relative texture references to resolve correctly
* you must call setResourcePath() explicitly prior to load.
*/
load: function ( url, onLoad, onProgress, onError ) {
var loader = new THREE.FileLoader( this.manager );
loader.setPath( this.path );
loader.load( url, function ( text ) {
var scope = this;
onLoad( scope.parse( text ) );
var path = ( this.path === '' ) ? THREE.LoaderUtils.extractUrlBase( url ) : this.path;
}, onProgress, onError );
var loader = new THREE.FileLoader( this.manager );
loader.setPath( this.path );
loader.load( url, function ( text ) {
},
onLoad( scope.parse( text, path ) );
/**
* Set base path for resolving references.
* If set this path will be prepended to each loaded and found reference.
*
* @see setTexturePath
* @param {String} path
*
* @example
* mtlLoader.setPath( 'assets/obj/' );
* mtlLoader.load( 'my.mtl', ... );
*/
setPath: function ( path ) {
}, onProgress, onError );
this.path = path;
},
},
setMaterialOptions: function ( value ) {
/**
* Set base path for resolving texture references.
* If set this path will be prepended found texture reference.
* If not set and setPath is, it will be used as texture base path.
*
* @see setPath
* @param {String} path
*
* @example
* mtlLoader.setPath( 'assets/obj/' );
* mtlLoader.setTexturePath( 'assets/textures/' );
* mtlLoader.load( 'my.mtl', ... );
*/
setTexturePath: function( path ) {
this.materialOptions = value;
return this;
this.texturePath = path;
},
},
/**
* Parses a MTL file.
*
* @param {String} text - Content of MTL file
* @return {THREE.MTLLoader.MaterialCreator}
*
* @see setPath setResourcePath
*
* @note In order for relative texture references to resolve correctly
* you must call setResourcePath() explicitly prior to parse.
*/
parse: function ( text, path ) {
setBaseUrl: function( path ) {
var lines = text.split( '\n' );
var info = {};
var delimiter_pattern = /\s+/;
var materialsInfo = {};
console.warn( 'MTLLoader: .setBaseUrl() is deprecated. Use .setTexturePath( path ) for texture path or .setPath( path ) for general base path instead.' );
for ( var i = 0; i < lines.length; i ++ ) {
this.setTexturePath( path );
var line = lines[ i ];
line = line.trim();
},
if ( line.length === 0 || line.charAt( 0 ) === '#' ) {
setCrossOrigin: function ( value ) {
// Blank line or comment ignore
continue;
this.crossOrigin = value;
}
},
var pos = line.indexOf( ' ' );
setMaterialOptions: function ( value ) {
var key = ( pos >= 0 ) ? line.substring( 0, pos ) : line;
key = key.toLowerCase();
this.materialOptions = value;
var value = ( pos >= 0 ) ? line.substring( pos + 1 ) : '';
value = value.trim();
},
if ( key === 'newmtl' ) {
/**
* Parses a MTL file.
*
* @param {String} text - Content of MTL file
* @return {MTLLoader.MaterialCreator}
*
* @see setPath setTexturePath
*
* @note In order for relative texture references to resolve correctly
* you must call setPath and/or setTexturePath explicitly prior to parse.
*/
parse: function ( text ) {
// New material
var lines = text.split( '\n' );
var info = {};
var delimiter_pattern = /\s+/;
var materialsInfo = {};
info = { name: value };
materialsInfo[ value ] = info;
for ( var i = 0; i < lines.length; i ++ ) {
} else {
var line = lines[ i ];
line = line.trim();
if ( key === 'ka' || key === 'kd' || key === 'ks' || key === 'ke' ) {
if ( line.length === 0 || line.charAt( 0 ) === '#' ) {
var ss = value.split( delimiter_pattern, 3 );
info[ key ] = [ parseFloat( ss[ 0 ] ), parseFloat( ss[ 1 ] ), parseFloat( ss[ 2 ] ) ];
// Blank line or comment ignore
continue;
} else {
}
info[ key ] = value;
var pos = line.indexOf( ' ' );
}
var key = ( pos >= 0 ) ? line.substring( 0, pos ) : line;
key = key.toLowerCase();
}
var value = ( pos >= 0 ) ? line.substring( pos + 1 ) : '';
value = value.trim();
}
if ( key === 'newmtl' ) {
var materialCreator = new THREE.MTLLoader.MaterialCreator( this.resourcePath || path, this.materialOptions );
materialCreator.setCrossOrigin( this.crossOrigin );
materialCreator.setManager( this.manager );
materialCreator.setMaterials( materialsInfo );
return materialCreator;
// New material
info = { name: value };
materialsInfo[ value ] = info;
} else if ( info ) {
if ( key === 'ka' || key === 'kd' || key === 'ks' ) {
var ss = value.split( delimiter_pattern, 3 );
info[ key ] = [ parseFloat( ss[ 0 ] ), parseFloat( ss[ 1 ] ), parseFloat( ss[ 2 ] ) ];
} else {
info[ key ] = value;
}
}
}
var materialCreator = new MTLLoader.MaterialCreator( this.texturePath || this.path, this.materialOptions );
materialCreator.setCrossOrigin( this.crossOrigin );
materialCreator.setManager( this.manager );
materialCreator.setMaterials( materialsInfo );
return materialCreator;
}
}
} );
@ -181,354 +137,395 @@ Object.assign(MTLLoader.prototype, THREE.EventDispatcher.prototype, {
* @constructor
*/
MTLLoader.MaterialCreator = function( baseUrl, options ) {
THREE.MTLLoader.MaterialCreator = function ( baseUrl, options ) {
this.baseUrl = baseUrl || '';
this.options = options;
this.materialsInfo = {};
this.materials = {};
this.materialsArray = [];
this.nameLookup = {};
this.baseUrl = baseUrl || '';
this.options = options;
this.materialsInfo = {};
this.materials = {};
this.materialsArray = [];
this.nameLookup = {};
this.side = ( this.options && this.options.side ) ? this.options.side : THREE.FrontSide;
this.wrap = ( this.options && this.options.wrap ) ? this.options.wrap : THREE.RepeatWrapping;
this.side = ( this.options && this.options.side ) ? this.options.side : THREE.FrontSide;
this.wrap = ( this.options && this.options.wrap ) ? this.options.wrap : THREE.RepeatWrapping;
};
MTLLoader.MaterialCreator.prototype = {
THREE.MTLLoader.MaterialCreator.prototype = {
constructor: MTLLoader.MaterialCreator,
constructor: THREE.MTLLoader.MaterialCreator,
setCrossOrigin: function ( value ) {
crossOrigin: 'anonymous',
this.crossOrigin = value;
setCrossOrigin: function ( value ) {
},
this.crossOrigin = value;
return this;
setManager: function ( value ) {
},
this.manager = value;
setManager: function ( value ) {
},
this.manager = value;
setMaterials: function( materialsInfo ) {
},
this.materialsInfo = this.convert( materialsInfo );
this.materials = {};
this.materialsArray = [];
this.nameLookup = {};
setMaterials: function ( materialsInfo ) {
},
this.materialsInfo = this.convert( materialsInfo );
this.materials = {};
this.materialsArray = [];
this.nameLookup = {};
convert: function( materialsInfo ) {
},
if ( ! this.options ) return materialsInfo;
convert: function ( materialsInfo ) {
var converted = {};
if ( ! this.options ) return materialsInfo;
for ( var mn in materialsInfo ) {
var converted = {};
// Convert materials info into normalized form based on options
for ( var mn in materialsInfo ) {
var mat = materialsInfo[ mn ];
// Convert materials info into normalized form based on options
var covmat = {};
var mat = materialsInfo[ mn ];
converted[ mn ] = covmat;
var covmat = {};
for ( var prop in mat ) {
converted[ mn ] = covmat;
var save = true;
var value = mat[ prop ];
var lprop = prop.toLowerCase();
for ( var prop in mat ) {
switch ( lprop ) {
var save = true;
var value = mat[ prop ];
var lprop = prop.toLowerCase();
case 'kd':
case 'ka':
case 'ks':
switch ( lprop ) {
// Diffuse color (color under white light) using RGB values
case 'kd':
case 'ka':
case 'ks':
if ( this.options && this.options.normalizeRGB ) {
// Diffuse color (color under white light) using RGB values
value = [ value[ 0 ] / 255, value[ 1 ] / 255, value[ 2 ] / 255 ];
if ( this.options && this.options.normalizeRGB ) {
}
value = [ value[ 0 ] / 255, value[ 1 ] / 255, value[ 2 ] / 255 ];
if ( this.options && this.options.ignoreZeroRGBs ) {
}
if ( value[ 0 ] === 0 && value[ 1 ] === 0 && value[ 2 ] === 0 ) {
if ( this.options && this.options.ignoreZeroRGBs ) {
// ignore
if ( value[ 0 ] === 0 && value[ 1 ] === 0 && value[ 2 ] === 0 ) {
save = false;
// ignore
}
save = false;
}
}
break;
}
default:
break;
break;
}
default:
if ( save ) {
break;
covmat[ lprop ] = value;
}
}
if ( save ) {
}
covmat[ lprop ] = value;
}
}
return converted;
}
},
}
preload: function () {
return converted;
for ( var mn in this.materialsInfo ) {
},
this.create( mn );
preload: function () {
}
for ( var mn in this.materialsInfo ) {
},
this.create( mn );
getIndex: function( materialName ) {
}
return this.nameLookup[ materialName ];
},
},
getIndex: function ( materialName ) {
getAsArray: function() {
return this.nameLookup[ materialName ];
var index = 0;
},
for ( var mn in this.materialsInfo ) {
getAsArray: function () {
this.materialsArray[ index ] = this.create( mn );
this.nameLookup[ mn ] = index;
index ++;
var index = 0;
}
for ( var mn in this.materialsInfo ) {
return this.materialsArray;
this.materialsArray[ index ] = this.create( mn );
this.nameLookup[ mn ] = index;
index ++;
},
}
create: function ( materialName ) {
return this.materialsArray;
if ( this.materials[ materialName ] === undefined ) {
},
this.createMaterial_( materialName );
create: function ( materialName ) {
}
if ( this.materials[ materialName ] === undefined ) {
return this.materials[ materialName ];
this.createMaterial_( materialName );
},
}
createMaterial_: function ( materialName ) {
return this.materials[ materialName ];
// Create material
},
var scope = this;
var mat = this.materialsInfo[ materialName ];
var params = {
createMaterial_: function ( materialName ) {
name: materialName,
side: this.side
// Create material
};
var scope = this;
var mat = this.materialsInfo[ materialName ];
var params = {
var resolveURL = function ( baseUrl, url ) {
name: materialName,
side: this.side
if ( typeof url !== 'string' || url === '' )
return '';
};
// Absolute URL
if ( /^https?:\/\//i.test( url ) ) {
return url;
}
function resolveURL( baseUrl, url ) {
return baseUrl + url;
};
function setMapForType ( mapType, value ) {
if ( typeof url !== 'string' || url === '' )
return '';
if ( params[ mapType ] ) return; // Keep the first encountered texture
// Absolute URL
if ( /^https?:\/\//i.test( url ) ) return url;
var texParams = scope.getTextureParams( value, params );
var map = scope.loadTexture( resolveURL( scope.baseUrl, texParams.url ) );
map.repeat.copy( texParams.scale );
map.offset.copy( texParams.offset );
return baseUrl + url;
map.wrapS = scope.wrap;
map.wrapT = scope.wrap;
params[ mapType ] = map;
}
}
for ( var prop in mat ) {
function setMapForType( mapType, value ) {
var value = mat[ prop ];
if ( params[ mapType ] ) return; // Keep the first encountered texture
if ( value === '' ) continue;
var texParams = scope.getTextureParams( value, params );
var map = scope.loadTexture( resolveURL( scope.baseUrl, texParams.url ) );
switch ( prop.toLowerCase() ) {
map.repeat.copy( texParams.scale );
map.offset.copy( texParams.offset );
// Ns is material specular exponent
map.wrapS = scope.wrap;
map.wrapT = scope.wrap;
case 'kd':
params[ mapType ] = map;
// Diffuse color (color under white light) using RGB values
}
params.color = new THREE.Color().fromArray( value );
for ( var prop in mat ) {
break;
var value = mat[ prop ];
var n;
case 'ks':
if ( value === '' ) continue;
// Specular color (color when light is reflected from shiny surface) using RGB values
// params.specular = new THREE.Color().fromArray( value );
switch ( prop.toLowerCase() ) {
break;
// Ns is material specular exponent
case 'map_kd':
case 'kd':
// Diffuse texture map
// Diffuse color (color under white light) using RGB values
setMapForType( "map", value );
params.color = new THREE.Color().fromArray( value );
break;
break;
case 'map_ks':
case 'ks':
// Specular map
setMapForType( "specularMap", value );
// Specular color (color when light is reflected from shiny surface) using RGB values
params.specular = new THREE.Color().fromArray( value );
break;
break;
case 'map_bump':
case 'bump':
case 'ke':
// Bump texture map
setMapForType( "bumpMap", value );
// Emissive using RGB values
params.emissive = new THREE.Color().fromArray( value );
break;
break;
case 'ns':
case 'map_kd':
// The specular exponent (defines the focus of the specular highlight)
// A high exponent results in a tight, concentrated highlight. Ns values normally range from 0 to 1000.
// Diffuse texture map
// params.shininess = parseFloat( value );
setMapForType( "map", value );
break;
break;
case 'd':
case 'map_ks':
if ( value < 1 ) {
// Specular map
params.opacity = value;
params.transparent = true;
setMapForType( "specularMap", value );
}
break;
break;
case 'map_ke':
case 'Tr':
// Emissive map
if ( value > 0 ) {
setMapForType( "emissiveMap", value );
params.opacity = 1 - value;
params.transparent = true;
break;
}
case 'norm':
break;
setMapForType( "normalMap", value );
default:
break;
break;
}
case 'map_bump':
case 'bump':
}
// Bump texture map
this.materials[ materialName ] = new THREE.MeshBasicMaterial( params );
return this.materials[ materialName ];
},
setMapForType( "bumpMap", value );
getTextureParams: function( value, matParams ) {
break;
var texParams = {
case 'map_d':
scale: new THREE.Vector2( 1, 1 ),
offset: new THREE.Vector2( 0, 0 ),
// Alpha map
};
setMapForType( "alphaMap", value );
params.transparent = true;
var items = value.split(/\s+/);
var pos;
break;
pos = items.indexOf('-bm');
if (pos >= 0) {
case 'ns':
matParams.bumpScale = parseFloat( items[pos+1] );
items.splice( pos, 2 );
// The specular exponent (defines the focus of the specular highlight)
// A high exponent results in a tight, concentrated highlight. Ns values normally range from 0 to 1000.
}
params.shininess = parseFloat( value );
pos = items.indexOf('-s');
if (pos >= 0) {
break;
texParams.scale.set( parseFloat( items[pos+1] ), parseFloat( items[pos+2] ) );
items.splice( pos, 4 ); // we expect 3 parameters here!
case 'd':
n = parseFloat( value );
}
if ( n < 1 ) {
pos = items.indexOf('-o');
if (pos >= 0) {
params.opacity = n;
params.transparent = true;
texParams.offset.set( parseFloat( items[pos+1] ), parseFloat( items[pos+2] ) );
items.splice( pos, 4 ); // we expect 3 parameters here!
}
}
break;
texParams.url = items.join(' ').trim();
return texParams;
case 'tr':
n = parseFloat( value );
},
if ( this.options && this.options.invertTrProperty ) n = 1 - n;
loadTexture: function ( url, mapping, onLoad, onProgress, onError ) {
if ( n > 0 ) {
var texture;
var loader = THREE.Loader.Handlers.get( url );
var manager = ( this.manager !== undefined ) ? this.manager : THREE.DefaultLoadingManager;
params.opacity = 1 - n;
params.transparent = true;
if ( loader === null ) {
}
loader = new THREE.TextureLoader( manager );
break;
}
default:
break;
if ( loader.setCrossOrigin ) loader.setCrossOrigin( this.crossOrigin );
texture = loader.load( url, onLoad, onProgress, onError );
}
if ( mapping !== undefined ) texture.mapping = mapping;
}
return texture;
this.materials[ materialName ] = new THREE.MeshPhongMaterial( params );
return this.materials[ materialName ];
}
},
};
getTextureParams: function ( value, matParams ) {
module.exports = MTLLoader;
var texParams = {
scale: new THREE.Vector2( 1, 1 ),
offset: new THREE.Vector2( 0, 0 )
};
var items = value.split( /\s+/ );
var pos;
pos = items.indexOf( '-bm' );
if ( pos >= 0 ) {
matParams.bumpScale = parseFloat( items[ pos + 1 ] );
items.splice( pos, 2 );
}
pos = items.indexOf( '-s' );
if ( pos >= 0 ) {
texParams.scale.set( parseFloat( items[ pos + 1 ] ), parseFloat( items[ pos + 2 ] ) );
items.splice( pos, 4 ); // we expect 3 parameters here!
}
pos = items.indexOf( '-o' );
if ( pos >= 0 ) {
texParams.offset.set( parseFloat( items[ pos + 1 ] ), parseFloat( items[ pos + 2 ] ) );
items.splice( pos, 4 ); // we expect 3 parameters here!
}
texParams.url = items.join( ' ' ).trim();
return texParams;
},
loadTexture: function ( url, mapping, onLoad, onProgress, onError ) {
var texture;
var manager = ( this.manager !== undefined ) ? this.manager : THREE.DefaultLoadingManager;
var loader = manager.getHandler( url );
if ( loader === null ) {
loader = new THREE.TextureLoader( manager );
}
if ( loader.setCrossOrigin ) loader.setCrossOrigin( this.crossOrigin );
texture = loader.load( url, onLoad, onProgress, onError );
if ( mapping !== undefined ) texture.mapping = mapping;
return texture;
}
};

Plik diff jest za duży Load Diff

Wyświetl plik

@ -1,771 +0,0 @@
/* CSS - Cascading Style Sheet */
/* Palette color codes */
/* Palette URL: http://paletton.com/#uid=13p0u0kex8W2uqu8af7lEqaulDE */
/* Feel free to copy&paste color codes to your application */
/* As hex codes */
.color-primary-0 { color: #19282C } /* Main Primary color */
.color-primary-1 { color: #7A8184 }
.color-primary-2 { color: #39474B }
.color-primary-3 { color: #2D6D82 }
.color-primary-4 { color: #108FB9 }
/* As RGBa codes */
.rgba-primary-0 { color: rgba( 25, 40, 44,1) } /* Main Primary color */
.rgba-primary-1 { color: rgba(122,129,132,1) }
.rgba-primary-2 { color: rgba( 57, 71, 75,1) }
.rgba-primary-3 { color: rgba( 45,109,130,1) }
.rgba-primary-4 { color: rgba( 16,143,185,1) }
/* Generated by Paletton.com © 2002-2014 */
/* http://paletton.com */
:root{
--color-0: rgba( 25, 40, 44, 1);
--color-1: rgba(122,129,132, 1);
--color-2: rgba( 57, 71, 75, 1);
--color-3: rgba( 45,109,130, 1);
--color-4: rgba( 16,143,185, 1);
--bg-color: var(--color-0);
--bg-color-2: rgb(60, 80, 85);
--bg-light-color: rgba( 48, 61, 65, 1);
--bg-dark-color: rgba( 24, 31, 33, 1);
--bg-hover-color: var(--color-2);
--font-color: #9AA1A4;
--font-color-2: #ddd;
--font-color: #cccccc;
--border-color: black;
--measurement-detail-node-bg-light: var(--color-1);
--measurement-detail-node-bg-dark: var(--color-2);
--measurement-detail-area-bg-color: #eee;
}
#sidebar_root{
color: var(--font-color);
background-color: var(--bg-color);
font-family: Arial,Helvetica,sans-serif;
font-size: 1em;
}
.potree_failpage{
width: 100%;
height: 100%;
background-color: white;
position: absolute;
margin: 15px;
}
.potree_failpage a{
color: initial !important;
text-decoration: underline !important;
}
.potree_info_text{
color: white;
font-weight: bold;
text-shadow: 1px 1px 1px black,
1px -1px 1px black,
-1px 1px 1px black,
-1px -1px 1px black;
}
.potree_message{
width: 500px;
background-color: var(--bg-color);
padding: 5px;
margin: 5px;
border-radius: 4px;
color: var(--font-color);
font-family: Arial;
opacity: 0.8;
border: 1px solid black;
display: flex;
overflow: auto;
}
.potree_message_error{
background-color: red;
}
#potree_description{
position: absolute;
top: 10px;
left: 50%;
transform: translateX(-50%);
text-align: center;
z-index: 1000;
}
#potree_sidebar_container{
position: absolute;
z-index: 0;
width: 350px;
height: 100%;
overflow-y: auto;
font-size: 85%;
overflow: hidden;
border-right: 1px solid black;
}
.potree_sidebar_brand{
margin: 1px 20px;
line-height: 2em;
font-size: 100%;
font-weight: bold;
position: relative;
}
#potree_sidebar_container a{
color: #8Aa1c4;
}
.potree_menu_toggle{
position: absolute;
float: left;
margin: 8px 8px;
background: none;
width: 2.5em;
height: 2.5em;
z-index: 100;
cursor: pointer;
}
#potree_map_toggle{
position: absolute;
float: left;
margin: 8px 8px;
background: none;
width: 2.5em;
height: 2.5em;
z-index: 100;
top: calc(2.5em + 8px);
cursor: pointer;
}
#potree_render_area{
position: absolute;
/*background: linear-gradient(-90deg, red, yellow);*/
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
overflow: hidden;
z-index: 1;
-webkit-transition: left .35s;
transition: left .35s;
}
.potree-panel {
border: 1px solid black;
border-radius: 0.4em;
padding: 0px;
background-color: var(--bg-light-color);
}
.potree-panel-heading{
background-color: var(--bg-dark-color);
}
a:hover, a:visited, a:link, a:active{
color: #ccccff;
text-decoration: none;
}
.annotation{
position: absolute;
padding: 10px;
opacity: 0.5;
transform: translate(-50%, -30px);
will-change: left, top;
}
.annotation-titlebar{
color: white;
background-color: black;
border-radius: 1.5em;
border: 1px solid rgba(255, 255, 255, 0.7);
font-size: 1em;
opacity: 1;
margin: auto;
display: table;
padding: 1px 8px;
cursor: pointer;
}
.annotation-expand{
color: white;
font-size: 0.6em;
opacity: 1;
}
.annotation-action-icon{
width: 20px;
height: 20px;
display: inline-block;
vertical-align: middle;
line-height: 1.5em;
text-align: center;
font-family: Arial;
font-weight: bold;
cursor: pointer;
}
.annotation-action-icon:hover{
filter: drop-shadow(0px 0px 1px white);
width: 24px;
height: 24px;
cursor: pointer;
}
.annotation-item {
color: white;
background-color: black;
opacity: 0.5;
border-radius: 1.5em;
font-size: 1em;
line-height: 1.5em;
padding: 1px 8px 0px 8px;
font-weight: bold;
display: flex;
cursor: default;
}
.annotation-item:hover {
opacity: 1.0;
box-shadow: 0 0 5px #ffffff;
}
.annotation-main{
display: flex;
flex-grow: 1;
}
.annotation-label{
display: inline-block;
height: 100%;
flex-grow: 1;
user-select: none;
-moz-user-select: none;
z-index: 100;
vertical-align: middle;
line-height: 1.5em;
font-family: Arial;
font-weight: bold;
cursor: pointer;
white-space: nowrap;
}
.annotation-description{
position: relative;
color: white;
background-color: black;
padding: 10px;
margin: 5px 0px 0px 0px;
border-radius: 4px;
display: none;
max-width: 500px;
width: 500px;
}
.annotation-description-close{
filter: invert(100%);
float: right;
opacity: 0.5;
margin: 0px 0px 8px 8px;
}
.annotation-description-content{
color: white;
}
.annotation-icon{
width: 20px;
height: 20px;
filter: invert(100%);
margin: 2px 2px;
opacity: 0.5;
}
canvas {
width: 100%;
height: 100%
}
body{
margin: 0;
padding: 0;
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
}
.axis {
font: 10px sans-serif;
color: var(--font-color);
}
.axis path{
fill: rgba(255, 255, 255, 0.5);
stroke: var(--font-color);
shape-rendering: crispEdges;
opacity: 0.7;
}
.axis line {
fill: rgba(255, 255, 255, 0.5);
stroke: var(--font-color);
shape-rendering: crispEdges;
opacity: 0.1;
}
.tick text{
font-size: 12px;
}
.scene_header{
display:flex;
cursor: pointer;
padding: 2px;
}
.scene_content{
padding: 5px 0px 5px 0px;
/*background-color: rgba(0, 0, 0, 0.4);*/
}
.measurement_content{
padding: 5px 15px 5px 10px;
/*background-color: rgba(0, 0, 0, 0.4);*/
}
.propertypanel_content{
padding: 5px 15px 5px 10px;
/*background-color: rgba(0, 0, 0, 0.4);*/
}
.measurement_value_table{
width: 100%;
}
.coordinates_table_container table td {
width: 33%;
text-align: center;
}
#scene_object_properties{
margin: 0px;
}
.pv-panel-heading{
padding: 4px !important;
display: flex;
flex-direction: row
}
.pv-menu-list{
list-style-type: none;
padding: 0;
margin: 15px 0px;
overflow: hidden;
}
.pv-menu-list > *{
margin: 4px 20px;
}
.ui-slider {
margin-top: 5px;
margin-bottom: 10px;
background-color: var(--color-1) !important;
background: none;
border: 1px solid black;
}
.ui-selectmenu-button.ui-button{
width: 100% !important;
}
.pv-menu-list > li > .ui-slider{
background-color: var(--color-1) !important;
background: none;
border: 1px solid black;
}
.pv-menu-list .ui-slider{
background-color: var(--color-1) !important;
background: none;
border: 1px solid black !important;
}
.ui-slider-handle{
border: 1px solid black !important;
}
.ui-widget{
box-sizing:border-box
}
.panel-body > li > .ui-slider{
background-color: var(--color-1) !important;
background: none;
border: 1px solid black;
}
.panel-body > div > li > .ui-slider{
background-color: var(--color-1) !important;
background: none;
border: 1px solid black;
}
.pv-select-label{
margin: 1px;
font-size: 90%;
font-weight: 100;
}
.button-icon:hover{
/*background-color: #09181C;*/
filter: drop-shadow(0px 0px 4px white);
}
.ui-widget-content{
/*color: var(--font-color) !important;*/
}
.accordion > h3{
background-color: var(--bg-color-2) !important;
background: #f6f6f6 50% 50% repeat-x;
border: 1px solid black;
color: var(--font-color-2);
cursor: pointer;
margin: 2px 0 0 0;
padding: 4px 10px 4px 30px;
box-shadow: 0px 3px 3px #111;
text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
font-size: 1em;
}
.accordion > h3:hover{
filter: brightness(125%);
}
.accordion-content{
padding: 0px 0px !important;
border: none !important;
}
.icon-bar{
height: 4px !important;
border: 1px solid black;
background-color: white;
border-radius: 2px;
}
.canvas{
-webkit-transition: top .35s, left .35s, bottom .35s, right .35s, width .35s;
transition: top .35s, left .35s, bottom .35s, right .35s, width .35s;
}
#profile_window{
background-color: var(--bg-color);
}
#profile_titlebar{
background-color: var(--bg-color-2);
color: var(--font-color-2);
text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
font-size: 1em;
font-weight: bold;
}
#profile_window_title{
position: absolute;
margin: 5px;
}
.profile-container-button{
cursor: pointer;
}
.profile-button:hover{
background-color: #0000CC;
}
.unselectable{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.selectable{
-webkit-touch-callout: text;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
.divider {
display: block;
text-align: center;
overflow: hidden;
white-space: nowrap;
font-weight: bold;
font-size: 90%;
letter-spacing: 1px;
margin-left: 0px;
margin-right: 0px;
margin-top: 1px;
margin-bottom: 1px;
padding: 1px !important;
}
.divider > span {
position: relative;
display: inline-block;
}
.divider > span:before,
.divider > span:after {
content: "";
position: absolute;
top: 50%;
width: 9999px;
height: 1px;
background: #b2b2b2;
}
.divider > span:before {
right: 100%;
margin-right: 5px;
}
.divider > span:after {
left: 100%;
margin-left: 5px;
}
.ol-dragbox {
background-color: rgba(255,255,255,0.4);
border-color: rgba(100,150,0,1);
border: 1px solid red;
}
.text-icon{
opacity: 0.5;
height: 24px;
}
.text-icon:hover{
opacity: 1.0;
}
.input-grid-cell{
flex-grow: 1; margin: 0px 3px 0px 3px;
}
.input-grid-label{
flex-grow: 1;
margin: 0px 3px 0px 3px;
text-align:center;
font-weight: bold;
}
.input-grid-cell > input{
width: 100%
}
.invalid_value{
color: #e05e5e;
}
/**
* OVERRIDES
*/
.ui-spinner-input{
color: black;
}
.jstree-themeicon-custom{
background-size: 16px !important;
}
.jstree-default .jstree-clicked{
/*background-color: #ffffff !important;*/
background-color: #34494f !important;
}
.jstree-default .jstree-hovered{
background-color: #34494f !important;
}
.jstree-anchor{
width: 100% !important;
}
.ui-state-default{
background: #a6a9aa !important;
border: 1px solid black;
color: black;
}
.ui-state-active{
background: #c6c9ca !important;
color: black !important;
}
.cesium-viewer .cesium-viewer-cesiumWidgetContainer{
position: absolute;
height: 100%;
width: 100%;
}
.zs_widget{
padding: 2px;
height: 4em;
user-select: none;
}
.zs_core{
overflow: hidden;
position: relative;
height: 100%;
}
.zs_handle{
position: absolute;
top: 0px;
bottom: 0px;
border: 1px solid black;
border-radius: 3px;
background-color: rgb(166, 169, 170);
width: 8px;
user-select: none;
width: 1.2em;
height: 1.2em;
top: calc(50% - 0.6em);
}
.zs_stretch{
position: absolute;
top: 0px;
bottom: 0px;
border: 1px solid black;
border-radius: 3px;
background-color: rgb(166, 169, 170);
width: 8px;
user-select: none;
width: 1.2em;
height: 1.2em;
top: calc(50% - 0.6em);
color: black;
font-weight: bold;
font-size: 1.2em;
font-family: arial;
}
.zs_handle:hover{
background-color: lightgreen;
}
.zs_inside{
position: absolute !important;
width: 100%;
border: 1px solid black;
background-color: white;
top: calc(50% - 0.326em);
height: 0.652em;
cursor: zoom-in;
}
.zs_outside{
position: absolute !important;
width: 100%;
background-color: var(--color-1) !important;
top: calc(50% - 0.326em);
height: 0.652em;
cursor: zoom-in;
}
.zs_visible_range_label{
position: absolute;
bottom: 0px;
pointer-events:none;
}
.zs_visible_range_label_left{
left: 0px;
}
.zs_visible_range_label_right{
right: 0px;
}
.zs_chosen_range_label{
position: absolute;
pointer-events:none;
}

Wyświetl plik

@ -1,95 +0,0 @@
<div id="profile_window" style="
position: absolute;
width: 84%;
left: 15%; top: 55%; height: 44%;
margin: 5px;
border: 1px solid black;
display: none; box-sizing: border-box; z-index:10000">
<div id="profile_titlebar" class="pv-titlebar" style="display: flex; position: absolute; height: 30px; width: 100%; box-sizing: border-box;">
<span style="padding-right: 10px">
<span id="profile_window_title" data-i18n="profile.title"></span>
</span>
<span id="profileInfo" style="flex-grow: 1; flex-direction: row"> </span>
<!-- <span id="profile_toggle_size_button" class="ui-icon ui-icon-newwin profile-button"> </span> -->
<!--<span id="closeProfileContainer" class="ui-icon ui-icon-close profile-button"> </span>-->
<img id="closeProfileContainer" class="button-icon" style="width: 24px; height: 24px; margin: 4px"/>
</div>
<div style="position: absolute; top: 30px; width: 100%; height: calc(100% - 30px); box-sizing: border-box;" class="pw_content">
<span class="pv-main-color" style="height: 100%; width: 100%; padding: 5px; display:flex; flex-direction: column; box-sizing: border-box;">
<div style=" width: 100%; color: #9d9d9d; margin: 5px; display: flex; flex-direction: row; box-sizing: border-box;">
<span data-i18n="profile.nb_points"></span>:
<span id="profile_num_points">-</span>
<!--<span id="profile_threshold" style="width: 300px">
Threshold: <span id="potree_profile_threshold_label">123</span> <div id="potree_profile_threshold_slider"></div>
</span>-->
<span style="flex-grow: 1;"></span>
<span>
<a id="potree_download_profile_ortho_link" href="#" download="profile.csv">
<img id="potree_download_csv_icon" class="text-icon"/>
<!-- <input id="potree_download_profile_ortho_button" type="button" data-i18n="[value]profile.save_ortho"> -->
</a>
<a id="potree_download_profile_link" href="#" download="profile.las">
<img id="potree_download_las_icon" class="text-icon"/>
<!-- <input id="potree_download_profile_button" type="button" data-i18n="[value]profile.save_las"> -->
</a>
</span>
</div>
<div id="profile_draw_container" style="
width: 100%;
flex-grow: 1;
position: relative; height: 100%;
box-sizing: border-box; user-select: none">
<div style="
position: absolute;
left: 41px;
top: 0;
bottom: 20;
width: calc(100% - 41px);
height: calc(100% - 20px);
background-color: #000000;
"></div>
<svg id="profileSVG" style="
fill: #9d9d9d;
position: absolute;
left: 0; right: 0;
top: 0; bottom: 0;
width: 100%;
height: 100%;
"></svg>
<div id="profileCanvasContainer" style="
position: absolute;
left: 41px;
top: 0;
bottom: 20;
width: calc(100% - 41px);
height: calc(100% - 20px);
/*background-color: #000000;*/
"></div>
<div id="profileSelectionProperties" style="
position: absolute;
left: 50px;
top: 10px;
background-color: black;
color: white;
opacity: 0.7;
padding: 5px;
border: 1px solid white;
user-select: auto;
">
position: asdsadf asdf<br>
rgb: 123 423 123
</div>
</div>
</span>
</div>
</div>

Wyświetl plik

@ -1,15 +0,0 @@
icons/map_icon.png
from sitn PotreeViewer
http://ne.ch/sitn
https://github.com/PotreeViewer/PotreeViewer
icons/navigation_cube.svg
icons/orthographic_camera.svg
icons/perspective_camera.svg
free for commerical use without attribution
http://www.freepik.com/free-icon/package-cube-box-for-delivery_720159.htm

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 602 B

Wyświetl plik

@ -1,157 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="annotation.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\profile.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3799">
<inkscape:path-effect
effect="spiro"
id="path-effect4170"
is_visible="true" />
<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-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.313708"
inkscape:cx="12.960878"
inkscape:cy="6.4904832"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:pagecheckerboard="true">
<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">
<circle
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.55555558"
id="path3000"
cx="59.629543"
cy="16"
r="5" />
<circle
style="fill:none;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3770"
cx="59.629543"
cy="16"
r="14" />
<circle
id="path3772"
style="fill:none;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
cx="59.629543"
cy="16"
r="9" />
<path
id="path4535"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 21.96875,22.09375 C 28,12 26,1 16,1 6,1 4,12 10.03125,22.09375 15.112504,30.59761 16,30 16,30 c 0,0 0.887496,0.59761 5.96875,-7.90625 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="scscs" />
<circle
cy="8.498291"
cx="16"
id="circle4538"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.55430424"
r="4.9887381" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.7 KiB

Wyświetl plik

@ -1,99 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="area.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\area.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="15.836083"
inkscape:cx="-2.4229598"
inkscape:cy="11.830286"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="2560"
inkscape:window-height="1377"
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:#e73100;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 7.0000003,25.75 H 25 l -5,-10 6,-9.9999996 H 7.0000003 Z"
id="path3790"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<circle
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-1"
cx="7"
cy="26"
r="2.7499998" />
<circle
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7"
cx="25"
cy="26"
r="2.7499998" />
<circle
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-0"
cx="7"
cy="6.000001"
r="2.7499998" />
<circle
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-9"
cx="26"
cy="6.000001"
r="2.7499998" />
<circle
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-4"
cx="20"
cy="16"
r="2.7499998" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 3.2 KiB

Wyświetl plik

@ -1,119 +0,0 @@
<?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"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\area.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="2.7994505"
inkscape:cx="-38.367796"
inkscape:cy="-28.878944"
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:#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:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.18181828999999980;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:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.18181828999999980;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:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.18181828999999980;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:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.18181828999999980;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:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.18181828999999980;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>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.2 KiB

Wyświetl plik

@ -1,103 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="back.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\area.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="11.313709"
inkscape:cx="2.2740742"
inkscape:cy="12.023111"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="2560"
inkscape:window-height="1377"
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:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 12,5 v 15 l -6,7 6,-7 h 15"
id="path891"
inkscape:connector-curvature="0" />
<path
style="fill:#44a24a;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 11.970172,4.9850856 V 20.014914 H 27 V 4.9850856 Z"
id="path843"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:0.31372549;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 12,5 6,12 H 21 L 27,5 Z"
id="path879"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:0.31372549;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 27,5 -6,7 v 15 l 6,-7 z"
id="path881"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path840"
d="M 5.9850856,11.970171 V 27 H 21.014914 V 11.970171 Z"
style="fill:#ffffff;fill-opacity:0.31372549;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 6,27 V 12 l 6,-7 h 15 v 15 l -6,7 z"
id="path885"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 6,12 H 21 L 27,5"
id="path887"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 21,12 V 27"
id="path889"
inkscape:connector-curvature="0" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 3.9 KiB

Wyświetl plik

@ -1,121 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="bottom.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\area.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3799">
<pattern
y="0"
x="0"
height="6"
width="6"
patternUnits="userSpaceOnUse"
id="EMFhbasepattern" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="4"
inkscape:cx="6.2210905"
inkscape:cy="1.1094284"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="2560"
inkscape:window-height="1377"
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:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 12,5 v 15 l -6,7 6,-7 h 15"
id="path891"
inkscape:connector-curvature="0" />
<path
style="fill:#44a24a;fill-opacity:0;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 11.970172,4.985086 V 20.014914 H 27 V 4.985086 Z"
id="path843"
inkscape:connector-curvature="0" />
<path
style="fill:#e73100;fill-opacity:0;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 12,5 -6,7 v 15 l 6,-7 z"
id="path835"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:0.3137255;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 12,5 6,12 H 21 L 27,5 Z"
id="path879"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:0.31372549;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 27,5 -6,7 v 15 l 6,-7 z"
id="path881"
inkscape:connector-curvature="0" />
<path
style="fill:#2669e7;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
d="m 12,20 -6,7 h 15 l 6,-7 z"
id="path900"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path840"
d="M 5.985086,11.970171 V 27 H 21.014914 V 11.970171 Z"
style="fill:#ffffff;fill-opacity:0.31372549;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 6,27 V 12 l 6,-7 h 15 v 15 l -6,7 z"
id="path885"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 6,12 H 21 L 27,5"
id="path887"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 21,12 V 27"
id="path889"
inkscape:connector-curvature="0" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.5 KiB

Wyświetl plik

@ -1,62 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg13"
sodipodi:docname="clip-plane-x.svg"
inkscape:version="0.92.1 r15371">
<metadata
id="metadata19">
<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>
<defs
id="defs17" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview15"
showgrid="false"
inkscape:zoom="23.805928"
inkscape:cx="8.4566285"
inkscape:cy="9.6500557"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg13" />
<style
type="text/css"
id="style3694">
.st0{fill:#DDDDDD;stroke:#DDDDDD;}
</style>
<path
class="st0"
d="M 11.95212,2.5364655 3.0470973,7.3937514 v 9.8206226 l 8.9050227,4.751235 8.905025,-4.751235 V 7.4463721 Z M 18.355643,7.9167192 11.956168,11.331392 5.5834101,7.8551936 11.948074,4.3830437 Z M 4.6661927,9.1990428 11.142574,12.731099 v 6.967776 L 4.6661927,16.243726 Z M 12.761668,19.698875 V 12.736766 L 19.23805,9.2808065 V 16.242917 Z M 6.2852879,11.92641 9.5234785,13.692842 v 3.307002 L 6.2852879,15.27227 Z"
id="path11"
inkscape:connector-curvature="0"
style="fill:#dddddd;stroke:#dddddd;stroke-width:0.8095476" />
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.1 KiB

Wyświetl plik

@ -1,61 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg35"
sodipodi:docname="clip-plane-y.svg"
inkscape:version="0.92.1 r15371">
<metadata
id="metadata41">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs39" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview37"
showgrid="false"
inkscape:zoom="27.812867"
inkscape:cx="15.739941"
inkscape:cy="13.312402"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg35" />
<style
type="text/css"
id="style3694">
.st0{fill:#DDDDDD;stroke:#DDDDDD;}
</style>
<path
class="st0"
d="M 11.983343,3.156765 3.4754522,7.797433 v 9.382656 l 8.5078908,4.539347 8.507891,-4.539347 V 7.847707 Z M 18.10129,8.297078 11.98721,11.559467 5.8986542,8.238296 11.979476,4.9209921 Z M 5.0223414,9.522214 11.209898,12.896753 v 6.657038 L 5.0223414,16.252729 Z m 7.7344466,10.031577 v -6.651624 l 6.187557,-3.301835 v 6.651624 z m 4.640667,-7.374021 v 3.144826 l -3.093778,1.65053 v -3.144825 z"
id="path33"
inkscape:connector-curvature="0"
style="fill:#dddddd;stroke:#dddddd;stroke-width:0.77344459" />
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.0 KiB

Wyświetl plik

@ -1,62 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg24"
sodipodi:docname="clip-plane-z.svg"
inkscape:version="0.92.1 r15371">
<metadata
id="metadata30">
<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>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview26"
showgrid="false"
inkscape:zoom="19.666667"
inkscape:cx="18.300037"
inkscape:cy="12.90824"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg24" />
<style
type="text/css"
id="style3694">
.st0{fill:#DDDDDD;stroke:#DDDDDD;}
</style>
<path
class="st0"
d="M 12.112502,2.9534908 3.4367263,7.685732 v 9.567802 l 8.6757757,4.628922 8.675775,-4.628922 V 7.7369979 Z M 18.351173,8.1952365 12.116446,11.522002 5.9077448,8.1352951 12.108559,4.7525312 Z M 5.0141399,9.4445478 11.323795,12.885676 v 6.7884 L 5.0141399,16.307875 Z M 12.901209,19.674076 V 12.891197 L 19.210863,9.5242072 V 16.307086 Z M 12.104615,6.5515715 15.043336,8.1723638 12.125121,9.7292713 9.2021733,8.1352951 Z"
id="path22"
inkscape:connector-curvature="0"
style="fill:#dddddd;stroke:#dddddd;stroke-width:0.78870684" />
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.1 KiB

Wyświetl plik

@ -1,99 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="clip-polygon.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\area.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="31.672167"
inkscape:cx="10.156073"
inkscape:cy="15.68414"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="3840"
inkscape:window-height="2066"
inkscape:window-x="-11"
inkscape:window-y="-11"
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:0.39215687;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 7,25 H 25 L 20,15 26,5.0000002 H 7 Z"
id="path3790"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<circle
r="2.7499998"
cy="25.25"
cx="7"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-1" />
<circle
r="2.7499998"
cy="25.25"
cx="25"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7" />
<circle
r="2.7499998"
cy="5.25"
cx="7"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-0" />
<circle
r="2.7499998"
cy="5.25"
cx="26"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-9" />
<circle
r="2.7499998"
cy="15.25"
cx="20"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-4" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 3.2 KiB

Wyświetl plik

@ -1,93 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="clip-screen.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\area.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="31.672167"
inkscape:cx="2.8713385"
inkscape:cy="21.081934"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="3840"
inkscape:window-height="2066"
inkscape:window-x="-11"
inkscape:window-y="-11"
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:#ffffff;fill-opacity:0.39215686;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 7,25.75 H 25 V 5.7500006 H 7 Z"
id="path3790"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<circle
r="2.7499998"
cy="26"
cx="7"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-1" />
<circle
r="2.7499998"
cy="26"
cx="25"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7" />
<circle
r="2.7499998"
cy="6"
cx="7"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-0" />
<circle
r="2.7499998"
cy="6"
cx="25"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-9" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 3.0 KiB

Wyświetl plik

@ -1,130 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
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="43.627907"
inkscape:cx="14.731397"
inkscape:cy="14.005208"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="3840"
inkscape:window-height="2066"
inkscape:window-x="-11"
inkscape:window-y="-11"
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:0.39215687;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 27.999591,5.9999091 -6,5.9999999 v 16 l 6,-7 z"
id="path3776"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#ffffff;fill-opacity:0.39215687;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 5.4995909,12.499909 v 15 H 21.499591 v -15 z"
id="path4436"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:0.39215687;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 5.9995909,11.999909 11.999591,4.9999091 h 16 l -7,6.9999999 z"
id="path3774"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<circle
r="2.9375"
cy="5.0624089"
cx="10.999591"
style="fill:#fffff7;fill-opacity:1;stroke:#000000;stroke-width:1.06818187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-9-1" />
<circle
r="2.9375"
cy="5.0624089"
cx="26.99959"
style="fill:#fffff7;fill-opacity:1;stroke:#000000;stroke-width:1.06818187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-9-1-9" />
<circle
r="2.9375"
cy="20.999907"
cx="27.06209"
style="fill:#fffff7;fill-opacity:1;stroke:#000000;stroke-width:1.06818187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-9-1-8" />
<circle
r="2.9375"
cy="11.937409"
cx="5.9995909"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.06818187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-9-1-6" />
<circle
r="2.9375"
cy="12.062409"
cx="21.99959"
style="fill:#fffff7;fill-opacity:1;stroke:#000000;stroke-width:1.06818187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-9-1-5" />
<circle
r="2.9375"
cy="27.062408"
cx="5.9995909"
style="fill:#fffff7;fill-opacity:1;stroke:#000000;stroke-width:1.06818187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-9-1-0" />
<circle
r="2.9375"
cy="27.062408"
cx="21.99959"
style="fill:#fffff7;fill-opacity:1;stroke:#000000;stroke-width:1.06818187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-0-7-9-1-2" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.8 KiB

Wyświetl plik

@ -1,70 +0,0 @@
<?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="close.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.4629706"
inkscape:cy="16.706715"
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:none;stroke:#000000;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 7,25 25,7"
id="path2986"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 7,7 25,25"
id="path2988"
inkscape:connector-curvature="0" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.1 KiB

Wyświetl plik

@ -1,66 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="cloud.svg">
<defs
id="defs3799" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.6568543"
inkscape:cx="-26.28293"
inkscape:cy="28.589191"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="2560"
inkscape:window-height="1377"
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:#fffff7;fill-opacity:1;stroke:#000000;stroke-width:3.09194183;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 12.142487,5 c -3.5058558,0 -6.3479138,2.9705796 -6.3479137,6.634975 7.576e-4,0.598207 0.078912,1.193561 0.2323369,1.769874 -2.1674047,1.019785 -3.5624816,3.271848 -3.5657794,5.756213 0,3.491631 2.7080652,6.32216 6.0486329,6.32216 5.6139353,0.0012 11.4629923,0.02383 16.1730043,0.02264 2.811531,-5.8e-4 5.090283,-2.383302 5.089751,-5.321974 C 29.769597,17.778394 28.222926,15.674146 26,15.051252 26.275226,14.379403 26.417228,13.656189 26.417418,12.925343 26.417182,9.9407352 24.102419,7.5212956 21.246941,7.5210487 20.013583,7.5230919 18.821543,7.9858546 17.885933,8.8258174 16.843402,6.4941602 14.604847,5.0030176 12.142487,5 Z"
id="path4523"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccc" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.6 KiB

Wyświetl plik

@ -1,106 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="copy.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="31.672167"
inkscape:cx="20.254778"
inkscape:cy="10.53881"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="3840"
inkscape:window-height="2066"
inkscape:window-x="-11"
inkscape:window-y="-11"
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">
<rect
style="fill:#fffffa;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect829"
width="15"
height="22"
x="7"
y="7"
rx="1"
ry="1" />
<rect
ry="1"
rx="1"
y="3"
x="12"
height="22"
width="15"
id="rect831"
style="fill:#fffffa;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 15,6 h 9"
id="path833"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 15,9 h 9"
id="path835"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 15,12 h 9"
id="path837"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 15,15 h 9"
id="path841"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 15,18 h 3"
id="path845"
inkscape:connector-curvature="0" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 3.4 KiB

Wyświetl plik

@ -1,85 +0,0 @@
<?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="11.197802"
inkscape:cx="-5.9535063"
inkscape:cy="11.037615"
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:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 10,23 24,9"
id="path3829"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1.09090912;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
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.61111111,0,0,0.61111111,17.777779,-4.9444445)" />
<path
sodipodi:type="arc"
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1.09090912;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
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.61111111,0,0,0.61111111,0.7777778,12.055556)" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.7 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 1.4 KiB

Wyświetl plik

@ -1,174 +0,0 @@
<?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>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 6.8 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 1.9 KiB

Wyświetl plik

@ -1,77 +0,0 @@
<?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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="eye.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="6.208907"
inkscape:cy="12.599237"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
showguides="false"
inkscape:window-width="2560"
inkscape:window-height="1377"
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="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1020.3622)">
<circle
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.15418363;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4138"
cx="16.095449"
cy="1035.6473"
r="5.5625391" />
<circle
r="2.7124829"
cy="1034.2372"
cx="14.544138"
id="circle4140"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.15418363;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5850203;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4.8217236,1035.9095 c 0,0 3.7205455,-8.7702 11.2017564,-8.7702 6.641279,0 11.201755,8.7702 11.201755,8.7702 0,0 -2.338336,9.2599 -11.201755,9.2599 -8.671303,0 -11.2017564,-9.2599 -11.2017564,-9.2599 z"
id="path4136"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscsc" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.6 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.9 KiB

Wyświetl plik

@ -1,72 +0,0 @@
<?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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="eye_2.svg"
inkscape:export-filename="C:\dev\workspaces\potree\develop\resources\icons\eye_2.png"
inkscape:export-xdpi="192"
inkscape:export-ydpi="192">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="9.3344235"
inkscape:cy="20.116865"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
showguides="false"
inkscape:window-width="2560"
inkscape:window-height="1377"
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="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1020.3622)">
<path
style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:2.26128435;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 16.023438 4.9726562 C 7.1099246 4.9726562 3.015625 15.005859 3.015625 15.005859 L 2.8320312 15.439453 L 2.9550781 15.894531 C 2.9550781 15.894531 3.6759962 18.555478 5.640625 21.205078 C 7.6052538 23.854678 10.989271 26.613281 16.023438 26.613281 C 21.147969 26.613281 24.543174 23.855066 26.486328 21.197266 C 28.429482 18.539466 29.097656 15.867188 29.097656 15.867188 L 29.224609 15.367188 L 28.986328 14.910156 C 28.986328 14.910156 27.720269 12.467891 25.525391 10.025391 C 23.330512 7.5828906 20.106401 4.9726563 16.023438 4.9726562 z M 16.023438 7.6875 C 18.911941 7.6875 21.56622 9.6792438 23.507812 11.839844 C 25.259663 13.789244 26.080992 15.377634 26.277344 15.740234 C 26.085791 16.362834 25.591571 17.824903 24.296875 19.595703 C 22.686712 21.798103 20.202991 23.900391 16.023438 23.900391 C 11.955184 23.900391 9.4594188 21.798491 7.8203125 19.587891 C 6.4510691 17.741291 5.9189858 16.186259 5.7421875 15.630859 C 6.3044594 14.460159 9.7950311 7.6875 16.023438 7.6875 z M 16.099609 9.421875 A 5.8390945 5.8390945 0 0 0 10.259766 15.259766 A 5.8390945 5.8390945 0 0 0 16.099609 21.099609 A 5.8390945 5.8390945 0 0 0 21.9375 15.259766 A 5.8390945 5.8390945 0 0 0 16.099609 9.421875 z M 14.470703 10.931641 A 2.8473407 2.8473407 0 0 1 17.316406 13.779297 A 2.8473407 2.8473407 0 0 1 14.470703 16.626953 A 2.8473407 2.8473407 0 0 1 11.623047 13.779297 A 2.8473407 2.8473407 0 0 1 14.470703 10.931641 z "
transform="translate(0,1020.3622)"
id="path4138" />
<path
id="path819"
d="M 16.023438 4.9726562 C 7.1099246 4.9726562 3.015625 15.005859 3.015625 15.005859 L 2.8320312 15.439453 L 2.9550781 15.894531 C 2.9550781 15.894531 3.6759962 18.555478 5.640625 21.205078 C 7.6052538 23.854678 10.989271 26.613281 16.023438 26.613281 C 21.147969 26.613281 24.543174 23.855066 26.486328 21.197266 C 28.429482 18.539466 29.097656 15.867188 29.097656 15.867188 L 29.224609 15.367188 L 28.986328 14.910156 C 28.986328 14.910156 27.720269 12.467891 25.525391 10.025391 C 23.330512 7.5828906 20.106401 4.9726563 16.023438 4.9726562 z M 16.023438 7.6875 C 18.911941 7.6875 21.56622 9.6792438 23.507812 11.839844 C 25.259663 13.789244 26.080992 15.377634 26.277344 15.740234 C 26.085791 16.362834 25.591571 17.824903 24.296875 19.595703 C 22.686712 21.798103 20.202991 23.900391 16.023438 23.900391 C 11.955184 23.900391 9.4594188 21.798491 7.8203125 19.587891 C 6.4510691 17.741291 5.9189858 16.186259 5.7421875 15.630859 C 6.3044594 14.460159 9.7950311 7.6875 16.023438 7.6875 z M 16.099609 9.421875 A 5.8390945 5.8390945 0 0 0 10.259766 15.259766 A 5.8390945 5.8390945 0 0 0 16.099609 21.099609 A 5.8390945 5.8390945 0 0 0 21.9375 15.259766 A 5.8390945 5.8390945 0 0 0 16.099609 9.421875 z M 14.470703 10.931641 A 2.8473407 2.8473407 0 0 1 17.316406 13.779297 A 2.8473407 2.8473407 0 0 1 14.470703 16.626953 A 2.8473407 2.8473407 0 0 1 11.623047 13.779297 A 2.8473407 2.8473407 0 0 1 14.470703 10.931641 z "
style="opacity:1;fill:#fffffc;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
transform="translate(0,1020.3622)" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 5.0 KiB

Wyświetl plik

@ -1,93 +0,0 @@
<?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="32"
height="32"
viewBox="0 0 32 32"
id="svg2"
version="1.1"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="eye_crossed.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.9195959"
inkscape:cx="5.6357055"
inkscape:cy="42.323076"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
showguides="false"
inkscape:window-width="2560"
inkscape:window-height="1377"
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="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1020.3622)">
<circle
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.41670251;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4138"
cx="16.223454"
cy="1035.5989"
r="6.2404151" />
<circle
r="3.0430386"
cy="1034.017"
cx="14.483093"
id="circle4140"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.41670251;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.90004301;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.5758608,1035.8933 c 0,0 4.1739483,-9.839 12.5668532,-9.839 7.450616,0 12.566853,9.839 12.566853,9.839 0,0 -2.623298,10.3882 -12.566853,10.3882 -9.7280272,0 -12.5668532,-10.3882 -12.5668532,-10.3882 z"
id="path4136"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscsc" />
<g
id="g4150"
transform="matrix(0.4833405,0,0,0.4833405,0.37066284,542.71092)">
<path
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 8,1044.3622 56,996.36216"
id="path4144"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4142"
d="M 8,1044.3622 56,996.36216"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 3.4 KiB

Wyświetl plik

@ -1,113 +0,0 @@
<?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="42"
height="16"
id="svg3797"
version="1.1"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="file_csv_2d.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\point.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="5.5989008"
inkscape:cx="37.553698"
inkscape:cy="-22.077233"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1600"
inkscape:window-height="1137"
inkscape:window-x="2552"
inkscape:window-y="-8"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3805"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</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"
transform="translate(0,-16)">
<path
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
d="m 6.4551648,18.888338 c -1.2012608,9e-6 -2.338575,0.469909 -3.125,1.3125 -0.8291855,0.88842 -1.1562505,2.094747 -1.15625,3.375 -5e-7,1.236177 0.3535462,2.398198 1.15625,3.25 0.773331,0.820639 1.8828758,1.3125 3.0625,1.3125 0.9281513,0 1.8013636,-0.274737 2.46875,-0.78125 0.228838,-0.17368 0.2888222,-0.495964 0.46875,-0.71875 0.1502067,0.212386 0.2676978,0.45161 0.46875,0.625 0.7384272,0.636834 1.7074482,0.875 2.7187502,0.875 0.7032,0 1.336063,-0.118494 1.875,-0.34375 0.585238,-0.244614 1.1182,-0.667899 1.46875,-1.21875 0.150193,-0.236023 0.161619,-0.536978 0.25,-0.8125 l 0.5,1.40625 a 1.2928111,1.2928111 0 0 0 1.21875,0.84375 l 1.375,0 a 1.2928111,1.2928111 0 0 0 1.21875,-0.84375 l 0.53125,-1.46875 c 0.06718,0.40534 0.05592,0.809199 0.1875,1.21875 0.272929,0.849496 0.676977,1.666712 1.1875,2.4375 a 1.2928111,1.2928111 0 0 0 1.0625,0.5625 l 0.84375,0 a 1.2928111,1.2928111 0 0 0 1.1875,-1.8125 c -0.01816,-0.03941 -0.01405,-0.05555 -0.03125,-0.09375 l 3.71875,0 a 1.2928111,1.2928111 0 0 0 0.5,-0.09375 1.2928111,1.2928111 0 0 0 0.03125,0 1.2928111,1.2928111 0 0 0 0.5625,0.09375 l 2.46875,0 c 0.541772,0 1.00768,-0.03177 1.5,-0.1875 a 1.2928111,1.2928111 0 0 0 0.03125,0 c 0.54525,-0.174816 1.027775,-0.413426 1.4375,-0.8125 -0.06944,0.187981 -0.206301,0.597923 -0.4375,1.09375 a 1.2928111,1.2928111 0 0 0 1.15625,1.8125 l 0.84375,0 a 1.2928111,1.2928111 0 0 0 1.09375,-0.5625 c 0.570101,-0.865098 0.989692,-1.788592 1.25,-2.71875 0.221768,-0.803076 0.312496,-1.576498 0.3125,-2.3125 -3e-6,-0.844125 -0.107542,-1.731596 -0.40625,-2.59375 -0.285358,-0.823594 -0.6808,-1.591029 -1.1875,-2.3125 a 1.2928111,1.2928111 0 0 0 -1.0625,-0.53125 l -0.84375,0 a 1.2928111,1.2928111 0 0 0 -1.21875,0.875 c -0.306194,-0.213402 -0.578353,-0.487948 -0.9375,-0.59375 -0.506805,-0.147805 -1.019809,-0.156243 -1.625,-0.15625 l -2.375,0 a 1.2928111,1.2928111 0 0 0 -1.09375,0.625 c -0.611152,-0.436902 -1.334902,-0.656243 -2.0625,-0.65625 -0.588718,6e-6 -1.130297,0.238062 -1.65625,0.5 a 1.2928111,1.2928111 0 0 0 -1.125,-0.59375 l -0.875,0 a 1.2928111,1.2928111 0 0 0 -1,0.46875 1.2928111,1.2928111 0 0 0 -0.875,-0.34375 l -1.375,0 a 1.2928111,1.2928111 0 0 0 -1.21875,0.875 l -0.375,1.125 -0.375,-1.125 a 1.2928111,1.2928111 0 0 0 -1.21875,-0.875 l -1.4375,0 a 1.2928111,1.2928111 0 0 0 -0.96875,0.40625 c -0.641447,-0.354099 -1.352874,-0.531243 -2.125,-0.53125 -0.670185,9e-6 -1.261699,0.135361 -1.75,0.34375 -0.433166,0.184872 -0.8957622,0.516246 -1.2500002,0.96875 -0.065336,-0.07449 -0.082925,-0.181072 -0.15625,-0.25 -0.7397803,-0.700133 -1.7478402,-1.062491 -2.8125,-1.0625 z m -0.0625,3.6875 c 0.1266079,2e-6 0.062178,-2.58e-4 0.0625,0 0.015573,0.01246 0.00578,-0.04917 0.03125,0.0625 a 1.2928111,1.2928111 0 0 0 0.46875,0.75 1.2928111,1.2928111 0 0 0 -0.40625,0.6875 c -0.071195,0.309783 -0.1480369,0.364077 -0.125,0.34375 -0.028938,0.02553 -0.025978,0.03125 -0.0625,0.03125 -0.127629,0 -0.025302,0.02389 -0.125,-0.09375 0.015505,0.0183 -0.1562515,-0.213476 -0.15625,-0.875 -1.4e-6,-0.610235 0.1665648,-0.891663 0.125,-0.84375 0.067094,-0.07734 -0.00631,-0.0625 0.1875,-0.0625 z m 26.4062502,0.125 c 0.0031,-3.25e-4 0.102411,0.002 0.09375,0 0.0014,0.0021 0.0081,-0.0078 0.03125,0.0625 0.0039,0.01191 0.0625,0.316162 0.0625,0.75 -4e-6,0.433846 -0.07353,0.746096 -0.09375,0.8125 -0.0025,-3.55e-4 -0.07368,-0.002 -0.09375,0 l 0,-1.625 z m -23.6250002,0.65625 c 0.02498,0.04663 0.066585,0.07977 0.09375,0.125 l -0.28125,-0.09375 0.1875,-0.03125 z m 15.4375002,0.0625 a 1.2928111,1.2928111 0 0 0 0.1875,0.03125 l 0.5,0.0625 c -0.313672,0.320367 -0.599765,0.617253 -0.8125,0.90625 -1e-6,-0.370828 0.08068,-0.672895 0.125,-1 z"
id="path3847"
inkscape:connector-curvature="0" />
<g
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
id="text3859"
transform="translate(0,-0.26790972)">
<path
d="m 7.8169379,24.631348 1.2612305,0.399902 c -0.1933652,0.703126 -0.5148981,1.225343 -0.9645996,1.56665 -0.4497117,0.341309 -1.0202677,0.511963 -1.7116699,0.511963 -0.8554713,0 -1.5585956,-0.292236 -2.109375,-0.876709 -0.550782,-0.584471 -0.8261723,-1.383542 -0.8261719,-2.397217 -4e-7,-1.072261 0.2768548,-1.905024 0.8305664,-2.498291 0.5537091,-0.593255 1.2817357,-0.889886 2.184082,-0.889892 0.7880817,6e-6 1.4282178,0.232916 1.9204102,0.69873 0.2929631,0.275397 0.5126894,0.670904 0.6591797,1.186524 L 7.7729926,22.640625 C 7.6968161,22.306645 7.5378807,22.042974 7.296186,21.849609 7.0544827,21.656255 6.7607819,21.559576 6.4150825,21.55957 c -0.477542,6e-6 -0.8649928,0.171392 -1.1623536,0.51416 -0.2973652,0.342778 -0.4460466,0.897954 -0.4460449,1.665528 -1.7e-6,0.814455 0.1464825,1.394533 0.4394531,1.740234 0.2929663,0.345704 0.6738253,0.518556 1.1425782,0.518555 0.3456994,1e-6 0.6430624,-0.109862 0.8920898,-0.32959 0.249019,-0.219725 0.4277297,-0.565428 0.5361328,-1.037109 z"
style="font-weight:bold;fill:#ffffff;font-family:Sans;-inkscape-font-specification:Sans Bold"
id="path3871"
inkscape:connector-curvature="0" />
<path
d="m 9.869184,24.903809 1.265625,-0.123047 c 0.07617,0.424806 0.230711,0.736818 0.463623,0.936035 0.232908,0.19922 0.547117,0.298829 0.942627,0.298828 0.418942,1e-6 0.734615,-0.08862 0.947022,-0.265869 0.212398,-0.177245 0.318599,-0.38452 0.318603,-0.621826 -4e-6,-0.152342 -0.04468,-0.281981 -0.134033,-0.388916 -0.08936,-0.106932 -0.245365,-0.199949 -0.468018,-0.279053 -0.152347,-0.05273 -0.499515,-0.146482 -1.041504,-0.28125 -0.697267,-0.172849 -1.186525,-0.385251 -1.467773,-0.637207 -0.395509,-0.354488 -0.593262,-0.786617 -0.593262,-1.296387 0,-0.32812 0.09302,-0.635004 0.279053,-0.920654 0.186034,-0.285639 0.4541,-0.503168 0.804199,-0.652588 0.350096,-0.149408 0.772703,-0.224115 1.267822,-0.224121 0.80859,6e-6 1.417232,0.177252 1.825928,0.531738 0.408686,0.354498 0.623286,0.827642 0.643799,1.419434 l -1.300781,0.05713 c -0.05567,-0.33105 -0.175053,-0.569087 -0.358155,-0.714112 -0.183109,-0.145014 -0.457767,-0.217523 -0.823974,-0.217529 -0.377932,6e-6 -0.673831,0.07764 -0.887696,0.23291 -0.137697,0.09962 -0.206544,0.232915 -0.206542,0.399903 -2e-6,0.152348 0.06445,0.282719 0.193359,0.391113 0.16406,0.137699 0.562497,0.281254 1.195312,0.430664 0.632809,0.149418 1.100826,0.303959 1.404053,0.463623 0.303218,0.159671 0.540522,0.377933 0.711914,0.654785 0.171381,0.276858 0.257075,0.618899 0.25708,1.026123 -5e-6,0.369142 -0.102544,0.714845 -0.307617,1.03711 -0.205083,0.322266 -0.495122,0.561767 -0.870117,0.718505 -0.375004,0.156739 -0.842289,0.235108 -1.401856,0.235108 -0.814455,0 -1.439943,-0.188233 -1.876464,-0.564697 C 10.214886,26.173098 9.9541445,25.624514 9.869184,24.90381 z"
style="font-weight:bold;fill:#ffffff;font-family:Sans;-inkscape-font-specification:Sans Bold"
id="path3873"
inkscape:connector-curvature="0" />
<path
d="m 17.854047,27 -2.302734,-6.442383 1.410644,0 1.630372,4.768067 1.577636,-4.768067 1.379883,0 L 19.242719,27 z"
style="font-weight:bold;fill:#ffffff;font-family:Sans;-inkscape-font-specification:Sans Bold"
id="path3875"
inkscape:connector-curvature="0" />
<path
d="m 24.261274,28.894043 -0.848145,0 c -0.448243,-0.676759 -0.789552,-1.379883 -1.023925,-2.109375 -0.234376,-0.729491 -0.351563,-1.435545 -0.351563,-2.118164 0,-0.846677 0.145019,-1.647945 0.435059,-2.403809 0.251952,-0.656244 0.571287,-1.261224 0.958007,-1.814941 l 0.84375,0 c -0.401369,0.887701 -0.677492,1.642827 -0.828369,2.265381 -0.15088,0.622562 -0.22632,1.282473 -0.226318,1.979736 -2e-6,0.480471 0.04468,0.972658 0.134033,1.476563 0.08935,0.503906 0.211668,0.98291 0.366944,1.437011 0.102536,0.298828 0.282712,0.728026 0.540527,1.287598 z"
style="font-weight:bold;fill:#ffffff;font-family:Sans;-inkscape-font-specification:Sans Bold"
id="path3877"
inkscape:connector-curvature="0" />
<path
d="m 29.12602,25.853027 0,1.146973 -4.328613,0 c 0.04687,-0.433593 0.187499,-0.844482 0.421875,-1.232666 0.234374,-0.388182 0.697264,-0.903074 1.388672,-1.544678 0.556638,-0.518551 0.897946,-0.870113 1.023925,-1.054687 0.169919,-0.254879 0.25488,-0.506832 0.254883,-0.75586 -3e-6,-0.275385 -0.07398,-0.487055 -0.221924,-0.635009 -0.147952,-0.147944 -0.352297,-0.221919 -0.613037,-0.221924 -0.257815,5e-6 -0.462892,0.07764 -0.615234,0.23291 -0.152346,0.155278 -0.240236,0.413091 -0.263672,0.773437 l -1.230469,-0.123046 c 0.07324,-0.679683 0.303222,-1.167475 0.689942,-1.463379 0.386717,-0.295892 0.870115,-0.443842 1.450195,-0.443848 0.635739,6e-6 1.13525,0.171393 1.498535,0.51416 0.363277,0.342779 0.544917,0.769048 0.544922,1.278809 -5e-6,0.290043 -0.05201,0.566166 -0.156006,0.828369 -0.104008,0.262211 -0.268803,0.536868 -0.494385,0.823974 -0.149417,0.190433 -0.418948,0.464359 -0.808593,0.821778 -0.389652,0.357424 -0.636477,0.594728 -0.740479,0.711914 -0.104006,0.117189 -0.188235,0.231446 -0.252685,0.342773 z"
style="font-weight:bold;fill:#ffffff;font-family:Sans;-inkscape-font-specification:Sans Bold"
id="path3879"
inkscape:connector-curvature="0" />
<path
d="m 30.233442,20.557617 2.377441,0 c 0.536129,7e-6 0.94482,0.04102 1.226074,0.123047 0.377926,0.111334 0.701656,0.309088 0.971192,0.593262 0.269526,0.284185 0.474604,0.632085 0.615234,1.043701 0.140619,0.411625 0.210932,0.919193 0.210938,1.522705 -6e-6,0.530276 -0.06592,0.987307 -0.197754,1.371094 -0.161139,0.468751 -0.391119,0.848145 -0.689942,1.138183 -0.22559,0.219727 -0.530278,0.391114 -0.914062,0.514161 C 33.54545,26.95459 33.161661,27 32.681196,27 l -2.447754,0 z m 1.300781,1.089844 0,4.26709 0.971191,0 c 0.363278,1e-6 0.625485,-0.02051 0.786622,-0.06152 0.210933,-0.05273 0.385982,-0.142088 0.525146,-0.268066 0.139156,-0.125975 0.252681,-0.33325 0.340576,-0.621826 0.08789,-0.288572 0.131831,-0.681882 0.131836,-1.179932 -5e-6,-0.498043 -0.04395,-0.880367 -0.131836,-1.146973 -0.0879,-0.266596 -0.210942,-0.474604 -0.36914,-0.624023 -0.158208,-0.149409 -0.358891,-0.250483 -0.602051,-0.303223 -0.181644,-0.04101 -0.537601,-0.06152 -1.067871,-0.06152 z"
style="font-weight:bold;fill:#ffffff;font-family:Sans;-inkscape-font-specification:Sans Bold"
id="path3881"
inkscape:connector-curvature="0" />
<path
d="m 36.39018,28.894043 c 0.243164,-0.521486 0.41455,-0.921388 0.51416,-1.199707 0.09961,-0.278321 0.191894,-0.599121 0.276856,-0.962402 0.08496,-0.363281 0.147948,-0.708251 0.188965,-1.034913 0.04101,-0.326658 0.06152,-0.661375 0.06152,-1.00415 -10e-7,-0.697263 -0.07471,-1.357174 -0.224121,-1.979736 -0.149415,-0.622554 -0.424805,-1.37768 -0.826172,-2.265381 l 0.839356,0 c 0.442381,0.629889 0.785886,1.297857 1.030517,2.003906 0.244627,0.706059 0.366941,1.422367 0.366943,2.148926 -2e-6,0.612306 -0.09668,1.268556 -0.290039,1.96875 -0.219728,0.785156 -0.581544,1.560057 -1.085449,2.324707 z"
style="font-weight:bold;fill:#ffffff;font-family:Sans;-inkscape-font-specification:Sans Bold"
id="path3883"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 13 KiB

Wyświetl plik

@ -1,161 +0,0 @@
<?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="24"
height="16"
id="svg3797"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="file_dxf.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\point.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.395603"
inkscape:cx="18.560964"
inkscape:cy="-0.86139823"
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"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</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"
transform="translate(0,-16)">
<text
sodipodi:linespacing="125%"
id="text3859"
y="27"
x="-20"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
xml:space="preserve"><tspan
y="27"
x="-20"
id="tspan3861"
sodipodi:role="line">DXF</tspan></text>
<text
xml:space="preserve"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
x="36"
y="27"
id="text3863"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3865"
x="36"
y="27">JSON</tspan></text>
<g
id="g3969"
transform="translate(-1.0945747,10.000001)">
<g
transform="matrix(1.2078051,0,0,1.207805,0.66871181,-4.8011637)"
style="font-size:7.45153379px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
id="text3877">
<path
sodipodi:type="inkscape:offset"
inkscape:radius="1.0456477"
inkscape:original="M 35.8125 31.03125 C 35.402566 31.031255 35.071111 31.095049 34.78125 31.21875 C 34.491386 31.342463 34.247777 31.513506 34.09375 31.75 C 33.939719 31.986504 33.875 32.259584 33.875 32.53125 C 33.875 32.953313 34.047539 33.300252 34.375 33.59375 C 34.607859 33.802357 35.016449 33.98189 35.59375 34.125 C 36.042489 34.236581 36.311364 34.30009 36.4375 34.34375 C 36.621844 34.409244 36.76976 34.50522 36.84375 34.59375 C 36.917732 34.682288 36.937497 34.780119 36.9375 34.90625 C 36.937497 35.102727 36.863355 35.29075 36.6875 35.4375 C 36.511639 35.584256 36.253112 35.65625 35.90625 35.65625 C 35.578787 35.65625 35.317836 35.571194 35.125 35.40625 C 34.932161 35.241309 34.78182 34.976717 34.71875 34.625 L 33.6875 34.71875 C 33.757843 35.315456 33.98233 35.782057 34.34375 36.09375 C 34.705167 36.405443 35.200673 36.5625 35.875 36.5625 C 36.338293 36.5625 36.720766 36.504771 37.03125 36.375 C 37.341727 36.245229 37.611452 36.04807 37.78125 35.78125 C 37.951041 35.514432 38.031245 35.211881 38.03125 34.90625 C 38.031245 34.56909 37.954395 34.291724 37.8125 34.0625 C 37.670596 33.83328 37.469799 33.66345 37.21875 33.53125 C 36.967694 33.399057 36.586433 33.24871 36.0625 33.125 C 35.538562 33.001296 35.198334 32.895258 35.0625 32.78125 C 34.955769 32.691506 34.906248 32.563636 34.90625 32.4375 C 34.906248 32.299243 34.948493 32.20748 35.0625 32.125 C 35.239569 31.996443 35.499592 31.937504 35.8125 31.9375 C 36.115701 31.937504 36.348395 31.973685 36.5 32.09375 C 36.651598 32.213822 36.73516 32.413408 36.78125 32.6875 L 37.875 32.65625 C 37.858016 32.166277 37.682121 31.762256 37.34375 31.46875 C 37.005371 31.175255 36.48197 31.031255 35.8125 31.03125 z M 41.28125 31.03125 C 40.84706 31.031255 40.488559 31.109319 40.15625 31.25 C 39.906409 31.354308 39.678565 31.502874 39.46875 31.71875 C 39.258932 31.934636 39.090031 32.197084 38.96875 32.46875 C 38.806234 32.83745 38.71875 33.269163 38.71875 33.8125 C 38.71875 34.661473 38.938103 35.328588 39.40625 35.8125 C 39.874395 36.296413 40.519317 36.5625 41.3125 36.5625 C 42.095975 36.5625 42.71935 36.298839 43.1875 35.8125 C 43.655642 35.326163 43.874995 34.673601 43.875 33.8125 C 43.874995 32.944128 43.659279 32.268806 43.1875 31.78125 C 42.71571 31.293704 42.067151 31.031255 41.28125 31.03125 z M 31.71875 31.125 L 31.71875 34.5625 C 31.718747 34.994264 31.6932 35.300453 31.59375 35.4375 C 31.494297 35.574552 31.302635 35.625001 31.0625 35.625 C 30.824787 35.625001 30.647679 35.535375 30.53125 35.34375 C 30.453628 35.217618 30.41838 34.99313 30.40625 34.6875 L 29.40625 34.8125 C 29.408675 35.382524 29.528701 35.830287 29.8125 36.125 C 30.096298 36.419714 30.504887 36.5625 31.03125 36.5625 C 31.479989 36.5625 31.850901 36.469236 32.125 36.28125 C 32.399093 36.093264 32.583195 35.841732 32.6875 35.53125 C 32.765121 35.29354 32.812496 34.941466 32.8125 34.5 L 32.8125 31.125 L 31.71875 31.125 z M 44.75 31.125 L 44.75 36.46875 L 45.75 36.46875 L 45.75 32.96875 L 47.875 36.46875 L 48.96875 36.46875 L 48.96875 31.125 L 47.96875 31.125 L 47.96875 34.6875 L 45.78125 31.125 L 44.75 31.125 z M 41.3125 31.96875 C 41.756387 31.968755 42.106964 32.105476 42.375 32.40625 C 42.643028 32.707032 42.781246 33.169995 42.78125 33.78125 C 42.781246 34.399788 42.650304 34.846984 42.375 35.15625 C 42.099687 35.465519 41.741833 35.625001 41.3125 35.625 C 40.883161 35.625001 40.528945 35.467944 40.25 35.15625 C 39.971051 34.844558 39.812498 34.385234 39.8125 33.78125 C 39.812498 33.167569 39.947078 32.71067 40.21875 32.40625 C 40.490418 32.101838 40.868607 31.968755 41.3125 31.96875 z "
id="path3891"
d="m 35.8125,30 c -0.51841,6e-6 -1.002329,0.06429 -1.4375,0.25 -0.211066,0.09008 -0.392513,0.314908 -0.59375,0.46875 a 1.0457523,1.0457523 0 0 0 -0.96875,-0.625 l -1.09375,0 A 1.0457523,1.0457523 0 0 0 30.6875,31.125 l 0,2.53125 a 1.0457523,1.0457523 0 0 0 -0.40625,0 l -1,0.125 A 1.0457523,1.0457523 0 0 0 28.375,34.8125 c 0.003,0.714474 0.138816,1.461465 0.6875,2.03125 0.514577,0.53437 1.253286,0.75 1.96875,0.75 0.593621,0 1.183576,-0.09189 1.6875,-0.4375 0.308306,-0.211451 0.470768,-0.556887 0.65625,-0.875 0.127813,0.182745 0.110034,0.446091 0.28125,0.59375 0.587809,0.506938 1.382062,0.71875 2.21875,0.71875 0.550156,0 1.071911,-0.04495 1.5625,-0.25 0.433723,-0.181285 0.845393,-0.490787 1.15625,-0.9375 0.03111,0.03525 0.02959,0.09098 0.0625,0.125 0.668636,0.691157 1.629213,1.0625 2.65625,1.0625 0.922984,0 1.761184,-0.336964 2.40625,-0.90625 A 1.0457523,1.0457523 0 0 0 44.75,37.5 l 1,0 a 1.0457523,1.0457523 0 0 0 1.03125,-0.8125 L 46.96875,37 a 1.0457523,1.0457523 0 0 0 0.90625,0.5 l 1.09375,0 A 1.0457523,1.0457523 0 0 0 50,36.46875 L 50,31.125 a 1.0457523,1.0457523 0 0 0 -1.03125,-1.03125 l -1,0 A 1.0457523,1.0457523 0 0 0 46.9375,30.9375 l -0.25,-0.375 a 1.0457523,1.0457523 0 0 0 -0.90625,-0.46875 l -1.03125,0 a 1.0457523,1.0457523 0 0 0 -1.03125,0.8125 C 43.060062,30.329879 42.204799,30.000006 41.28125,30 c -0.559516,6e-6 -1.078199,0.08945 -1.53125,0.28125 C 39.382983,30.434479 39.025145,30.684754 38.71875,31 38.575648,31.14724 38.485453,31.306319 38.375,31.46875 38.233858,31.210464 38.256746,30.883097 38.03125,30.6875 37.417573,30.155224 36.631909,30.000006 35.8125,30 z m 5.5,3 c 0.229181,3e-6 0.209801,0.01357 0.28125,0.09375 0.03226,0.0362 0.156247,0.233871 0.15625,0.6875 -3e-6,0.470968 -0.104317,0.62916 -0.15625,0.6875 -0.09481,0.106502 -0.110866,0.125 -0.28125,0.125 -0.174331,0 -0.179253,-0.01103 -0.28125,-0.125 -0.06982,-0.07802 -0.187501,-0.266514 -0.1875,-0.6875 -2e-6,-0.460806 0.11643,-0.642879 0.15625,-0.6875 0.05148,-0.05768 0.0776,-0.09375 0.3125,-0.09375 z" />
</g>
<text
xml:space="preserve"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
x="36.017761"
y="39.236652"
id="text3873"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3875"
x="36.017761"
y="39.236652">JSON</tspan></text>
</g>
<g
id="text3929"
style="font-size:7.45153379px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
transform="matrix(1.2078051,0,0,1.207805,-18.117376,-16.519279)">
<path
d="m 17.6875,30.28125 a 1.0167554,1.0167554 0 0 0 -1.03125,1.03125 l 0,5.34375 a 1.0167554,1.0167554 0 0 0 1.03125,1.03125 l 2.03125,0 c 0.482666,0 0.906153,-0.06886 1.28125,-0.1875 0.226456,-0.07261 0.437309,-0.248639 0.65625,-0.375 a 1.0167554,1.0167554 0 0 0 0.875,0.5625 l 1.3125,0 a 1.0167554,1.0167554 0 0 0 0.84375,-0.46875 l 0.34375,-0.53125 0.34375,0.53125 a 1.0167554,1.0167554 0 0 0 0.84375,0.46875 l 1.28125,0 a 1.0167554,1.0167554 0 0 0 0.28125,-0.0625 1.0167554,1.0167554 0 0 0 0.03125,0 1.0167554,1.0167554 0 0 0 0.25,0.0625 l 1.09375,0 a 1.0167554,1.0167554 0 0 0 1.03125,-1.03125 l 0,-1.25 1.1875,0 A 1.0167554,1.0167554 0 0 0 32.40625,34.375 l 0,-0.90625 a 1.0167554,1.0167554 0 0 0 -0.09375,-0.40625 1.0167554,1.0167554 0 0 0 0,-0.03125 1.0167554,1.0167554 0 0 0 0.4375,-0.8125 l 0,-0.90625 a 1.0167554,1.0167554 0 0 0 -1.03125,-1.03125 l -3.65625,0 a 1.0167554,1.0167554 0 0 0 -0.34375,0.0625 1.0167554,1.0167554 0 0 0 -0.03125,0 1.0167554,1.0167554 0 0 0 -0.34375,-0.0625 l -1.25,0 a 1.0167554,1.0167554 0 0 0 -0.875,0.5 l -0.1875,0.3125 -0.1875,-0.3125 a 1.0167554,1.0167554 0 0 0 -0.875,-0.5 l -1.25,0 a 1.0167554,1.0167554 0 0 0 -0.9375,0.65625 c -0.256719,-0.18474 -0.502851,-0.408778 -0.8125,-0.5 -0.432605,-0.126173 -0.829185,-0.156243 -1.3125,-0.15625 l -1.96875,0 z m 2.125,3 c 0.01585,0.0016 0.130355,0.0012 0.125,0 0.05596,0.01214 0.05085,0.01851 0.03125,0 -0.03277,-0.03095 -0.05004,-0.08928 0,0.0625 0.02212,0.06709 0.0625,0.329747 0.0625,0.65625 -2e-6,0.326522 -0.02336,0.558999 -0.0625,0.6875 -0.01688,0.0043 -0.114233,-0.0056 -0.15625,0 l 0,-1.40625 z m 7.21875,0.40625 0,0.40625 -0.125,-0.1875 0.125,-0.21875 z"
id="path3941"
inkscape:original="M 17.6875 31.3125 L 17.6875 36.65625 L 19.71875 36.65625 C 20.11655 36.65625 20.449785 36.60644 20.6875 36.53125 C 21.005254 36.429373 21.250722 36.306922 21.4375 36.125 C 21.684909 35.884863 21.866586 35.544351 22 35.15625 C 22.10915 34.838494 22.156245 34.470291 22.15625 34.03125 C 22.156245 33.531573 22.116425 33.122055 22 32.78125 C 21.883565 32.440453 21.723153 32.14154 21.5 31.90625 C 21.276838 31.670968 21.000402 31.49843 20.6875 31.40625 C 20.454636 31.338333 20.100137 31.312506 19.65625 31.3125 L 17.6875 31.3125 z M 22.71875 31.3125 L 24.375 33.875 L 22.53125 36.65625 L 23.84375 36.65625 L 25.03125 34.8125 L 26.21875 36.65625 L 27.5 36.65625 L 25.6875 33.90625 L 27.34375 31.3125 L 26.09375 31.3125 L 25.03125 33.03125 L 23.96875 31.3125 L 22.71875 31.3125 z M 28.0625 31.3125 L 28.0625 36.65625 L 29.15625 36.65625 L 29.15625 34.375 L 31.375 34.375 L 31.375 33.46875 L 29.15625 33.46875 L 29.15625 32.21875 L 31.71875 32.21875 L 31.71875 31.3125 L 28.0625 31.3125 z M 18.78125 32.21875 L 19.25 32.21875 C 19.689036 32.21876 20.005858 32.24729 20.15625 32.28125 C 20.357574 32.324915 20.525262 32.407547 20.65625 32.53125 C 20.78723 32.654961 20.86473 32.810522 20.9375 33.03125 C 21.010263 33.251986 21.062497 33.587646 21.0625 34 C 21.062497 34.41236 21.01027 34.729827 20.9375 34.96875 C 20.864728 35.207675 20.771463 35.36445 20.65625 35.46875 C 20.541029 35.573054 20.393392 35.64384 20.21875 35.6875 C 20.085337 35.72146 19.894525 35.750001 19.59375 35.75 L 18.78125 35.75 L 18.78125 32.21875 z "
inkscape:radius="1.0166538"
sodipodi:type="inkscape:offset" />
</g>
<g
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
id="text3893">
<path
d="m 3.2581091,21.307058 2.3774414,0 c 0.5361292,7e-6 0.9448202,0.04102 1.2260742,0.123047 0.3779251,0.111335 0.7016552,0.309088 0.9711914,0.593262 0.2695258,0.284185 0.4746037,0.632085 0.6152344,1.043701 0.140619,0.411625 0.2109314,0.919193 0.2109375,1.522705 -6.1e-6,0.530276 -0.065924,0.987307 -0.1977539,1.371094 -0.1611385,0.468751 -0.3911188,0.848145 -0.6899414,1.138184 -0.2255909,0.219727 -0.5302781,0.391113 -0.9140625,0.51416 -0.2871134,0.09082 -0.670902,0.13623 -1.1513672,0.13623 l -2.4477539,0 z m 1.3007812,1.089844 0,4.26709 0.9711914,0 c 0.363278,1e-6 0.6254848,-0.02051 0.7866211,-0.06152 0.2109336,-0.05273 0.3859823,-0.142088 0.5251465,-0.268066 0.1391558,-0.125975 0.2526811,-0.33325 0.3405762,-0.621826 0.087886,-0.288572 0.1318312,-0.681882 0.1318359,-1.179932 -4.7e-6,-0.498043 -0.04395,-0.880367 -0.1318359,-1.146972 C 7.0945304,23.119075 6.9714836,22.911067 6.8132849,22.761648 6.6550777,22.612239 6.4543943,22.511165 6.2112341,22.458426 6.02959,22.417415 5.6736334,22.396907 5.143363,22.396902 z"
style=""
id="path3011" />
<path
d="m 9.1116247,27.749441 2.2016603,-3.361816 -1.9951173,-3.080567 1.5205073,0 1.291993,2.069825 1.265625,-2.069825 1.507324,0 -2.003906,3.128907 2.20166,3.313476 -1.568848,0 -1.428223,-2.228027 -1.432617,2.228027 z"
style=""
id="path3013" />
<path
d="m 15.786918,27.749441 0,-6.442383 4.416504,0 0,1.089844 -3.115723,0 0,1.524902 2.689453,0 0,1.089844 -2.689453,0 0,2.737793 z"
style=""
id="path3015" />
</g>
<g
id="g3832"
transform="matrix(1,0,0,0.99466628,-24.5,-10.898659)">
<path
transform="translate(0,16)"
d="M 2.34375,2.1875 A 0.82341756,0.82341756 0 0 0 1.6875,3 l 0,1.9375 A 0.82341756,0.82341756 0 0 0 0.75,5.0625 L 0.0625,5.75 a 0.82341756,0.82341756 0 0 0 0,1.1875 l 2,1.96875 0.34375,0.375 a 0.82341756,0.82341756 0 0 0 1.1875,0 L 3.9375,8.9375 l 0,-0.03125 2,-1.96875 a 0.82341756,0.82341756 0 0 0 0,-1.1875 L 5.25,5.0625 A 0.82341756,0.82341756 0 0 0 4.3125,4.90625 L 4.3125,3 A 0.82341756,0.82341756 0 0 0 3.5,2.1875 l -1,0 a 0.82341756,0.82341756 0 0 0 -0.15625,0 z"
id="path3830"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
inkscape:original="M 2.5 3 L 2.5 6.8125 L 1.34375 5.65625 L 0.65625 6.34375 L 2.65625 8.34375 L 3 8.71875 L 3.34375 8.34375 L 5.34375 6.34375 L 4.65625 5.65625 L 3.5 6.8125 L 3.5 3 L 2.5 3 z "
inkscape:radius="0.82333523"
sodipodi:type="inkscape:offset" />
<path
transform="translate(0,16)"
id="path3819"
d="m 2.5,3 0,3.8125 -1.15625,-1.15625 -0.6875,0.6875 2,2 0.34375,0.375 0.34375,-0.375 2,-2 L 4.65625,5.65625 3.5,6.8125 3.5,3 2.5,3 z"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 17 KiB

Wyświetl plik

@ -1,170 +0,0 @@
<?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="30"
height="16"
id="svg3797"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="file_geojson.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\point.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.395603"
inkscape:cx="30.265484"
inkscape:cy="1.3590001"
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"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</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"
transform="translate(0,-16)">
<text
sodipodi:linespacing="125%"
id="text3859"
y="27"
x="-20"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
xml:space="preserve"><tspan
y="27"
x="-20"
id="tspan3861"
sodipodi:role="line">DXF</tspan></text>
<text
xml:space="preserve"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
x="36"
y="27"
id="text3863"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3865"
x="36"
y="27">JSON</tspan></text>
<g
id="text3877"
style="font-size:7.45153379px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
transform="matrix(1.2078051,0,0,1.207805,-32.27147,-16.40592)">
<path
d="m 35.8125,30 c -0.51841,6e-6 -1.002329,0.06429 -1.4375,0.25 -0.211066,0.09008 -0.392513,0.314908 -0.59375,0.46875 a 1.0457523,1.0457523 0 0 0 -0.96875,-0.625 l -1.09375,0 A 1.0457523,1.0457523 0 0 0 30.6875,31.125 l 0,2.53125 a 1.0457523,1.0457523 0 0 0 -0.40625,0 l -1,0.125 A 1.0457523,1.0457523 0 0 0 28.375,34.8125 c 0.003,0.714474 0.138816,1.461465 0.6875,2.03125 0.514577,0.53437 1.253286,0.75 1.96875,0.75 0.593621,0 1.183576,-0.09189 1.6875,-0.4375 0.308306,-0.211451 0.470768,-0.556887 0.65625,-0.875 0.127813,0.182745 0.110034,0.446091 0.28125,0.59375 0.587809,0.506938 1.382062,0.71875 2.21875,0.71875 0.550156,0 1.071911,-0.04495 1.5625,-0.25 0.433723,-0.181285 0.845393,-0.490787 1.15625,-0.9375 0.03111,0.03525 0.02959,0.09098 0.0625,0.125 0.668636,0.691157 1.629213,1.0625 2.65625,1.0625 0.922984,0 1.761184,-0.336964 2.40625,-0.90625 A 1.0457523,1.0457523 0 0 0 44.75,37.5 l 1,0 a 1.0457523,1.0457523 0 0 0 1.03125,-0.8125 L 46.96875,37 a 1.0457523,1.0457523 0 0 0 0.90625,0.5 l 1.09375,0 A 1.0457523,1.0457523 0 0 0 50,36.46875 L 50,31.125 a 1.0457523,1.0457523 0 0 0 -1.03125,-1.03125 l -1,0 A 1.0457523,1.0457523 0 0 0 46.9375,30.9375 l -0.25,-0.375 a 1.0457523,1.0457523 0 0 0 -0.90625,-0.46875 l -1.03125,0 a 1.0457523,1.0457523 0 0 0 -1.03125,0.8125 C 43.060062,30.329879 42.204799,30.000006 41.28125,30 c -0.559516,6e-6 -1.078199,0.08945 -1.53125,0.28125 C 39.382983,30.434479 39.025145,30.684754 38.71875,31 38.575648,31.14724 38.485453,31.306319 38.375,31.46875 38.233858,31.210464 38.256746,30.883097 38.03125,30.6875 37.417573,30.155224 36.631909,30.000006 35.8125,30 z m 5.5,3 c 0.229181,3e-6 0.209801,0.01357 0.28125,0.09375 0.03226,0.0362 0.156247,0.233871 0.15625,0.6875 -3e-6,0.470968 -0.104317,0.62916 -0.15625,0.6875 -0.09481,0.106502 -0.110866,0.125 -0.28125,0.125 -0.174331,0 -0.179253,-0.01103 -0.28125,-0.125 -0.06982,-0.07802 -0.187501,-0.266514 -0.1875,-0.6875 -2e-6,-0.460806 0.11643,-0.642879 0.15625,-0.6875 0.05148,-0.05768 0.0776,-0.09375 0.3125,-0.09375 z"
id="path3891"
inkscape:original="M 35.8125 31.03125 C 35.402566 31.031255 35.071111 31.095049 34.78125 31.21875 C 34.491386 31.342463 34.247777 31.513506 34.09375 31.75 C 33.939719 31.986504 33.875 32.259584 33.875 32.53125 C 33.875 32.953313 34.047539 33.300252 34.375 33.59375 C 34.607859 33.802357 35.016449 33.98189 35.59375 34.125 C 36.042489 34.236581 36.311364 34.30009 36.4375 34.34375 C 36.621844 34.409244 36.76976 34.50522 36.84375 34.59375 C 36.917732 34.682288 36.937497 34.780119 36.9375 34.90625 C 36.937497 35.102727 36.863355 35.29075 36.6875 35.4375 C 36.511639 35.584256 36.253112 35.65625 35.90625 35.65625 C 35.578787 35.65625 35.317836 35.571194 35.125 35.40625 C 34.932161 35.241309 34.78182 34.976717 34.71875 34.625 L 33.6875 34.71875 C 33.757843 35.315456 33.98233 35.782057 34.34375 36.09375 C 34.705167 36.405443 35.200673 36.5625 35.875 36.5625 C 36.338293 36.5625 36.720766 36.504771 37.03125 36.375 C 37.341727 36.245229 37.611452 36.04807 37.78125 35.78125 C 37.951041 35.514432 38.031245 35.211881 38.03125 34.90625 C 38.031245 34.56909 37.954395 34.291724 37.8125 34.0625 C 37.670596 33.83328 37.469799 33.66345 37.21875 33.53125 C 36.967694 33.399057 36.586433 33.24871 36.0625 33.125 C 35.538562 33.001296 35.198334 32.895258 35.0625 32.78125 C 34.955769 32.691506 34.906248 32.563636 34.90625 32.4375 C 34.906248 32.299243 34.948493 32.20748 35.0625 32.125 C 35.239569 31.996443 35.499592 31.937504 35.8125 31.9375 C 36.115701 31.937504 36.348395 31.973685 36.5 32.09375 C 36.651598 32.213822 36.73516 32.413408 36.78125 32.6875 L 37.875 32.65625 C 37.858016 32.166277 37.682121 31.762256 37.34375 31.46875 C 37.005371 31.175255 36.48197 31.031255 35.8125 31.03125 z M 41.28125 31.03125 C 40.84706 31.031255 40.488559 31.109319 40.15625 31.25 C 39.906409 31.354308 39.678565 31.502874 39.46875 31.71875 C 39.258932 31.934636 39.090031 32.197084 38.96875 32.46875 C 38.806234 32.83745 38.71875 33.269163 38.71875 33.8125 C 38.71875 34.661473 38.938103 35.328588 39.40625 35.8125 C 39.874395 36.296413 40.519317 36.5625 41.3125 36.5625 C 42.095975 36.5625 42.71935 36.298839 43.1875 35.8125 C 43.655642 35.326163 43.874995 34.673601 43.875 33.8125 C 43.874995 32.944128 43.659279 32.268806 43.1875 31.78125 C 42.71571 31.293704 42.067151 31.031255 41.28125 31.03125 z M 31.71875 31.125 L 31.71875 34.5625 C 31.718747 34.994264 31.6932 35.300453 31.59375 35.4375 C 31.494297 35.574552 31.302635 35.625001 31.0625 35.625 C 30.824787 35.625001 30.647679 35.535375 30.53125 35.34375 C 30.453628 35.217618 30.41838 34.99313 30.40625 34.6875 L 29.40625 34.8125 C 29.408675 35.382524 29.528701 35.830287 29.8125 36.125 C 30.096298 36.419714 30.504887 36.5625 31.03125 36.5625 C 31.479989 36.5625 31.850901 36.469236 32.125 36.28125 C 32.399093 36.093264 32.583195 35.841732 32.6875 35.53125 C 32.765121 35.29354 32.812496 34.941466 32.8125 34.5 L 32.8125 31.125 L 31.71875 31.125 z M 44.75 31.125 L 44.75 36.46875 L 45.75 36.46875 L 45.75 32.96875 L 47.875 36.46875 L 48.96875 36.46875 L 48.96875 31.125 L 47.96875 31.125 L 47.96875 34.6875 L 45.78125 31.125 L 44.75 31.125 z M 41.3125 31.96875 C 41.756387 31.968755 42.106964 32.105476 42.375 32.40625 C 42.643028 32.707032 42.781246 33.169995 42.78125 33.78125 C 42.781246 34.399788 42.650304 34.846984 42.375 35.15625 C 42.099687 35.465519 41.741833 35.625001 41.3125 35.625 C 40.883161 35.625001 40.528945 35.467944 40.25 35.15625 C 39.971051 34.844558 39.812498 34.385234 39.8125 33.78125 C 39.812498 33.167569 39.947078 32.71067 40.21875 32.40625 C 40.490418 32.101838 40.868607 31.968755 41.3125 31.96875 z "
inkscape:radius="1.0456477"
sodipodi:type="inkscape:offset" />
</g>
<g
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
id="text3873">
<path
d="m 6.0570714,21.189514 1.2963868,0 0,4.078125 c -4.3e-6,0.533205 -0.046879,0.943361 -0.140625,1.230469 -0.1259806,0.375001 -0.354496,0.676026 -0.6855469,0.903076 -0.3310578,0.227051 -0.7675808,0.340576 -1.3095703,0.340576 -0.6357437,0 -1.125001,-0.177978 -1.4677735,-0.533935 C 3.4071688,26.851868 3.2343174,26.329652 3.2313879,25.641174 l 1.2260742,-0.140625 c 0.014647,0.369143 0.068846,0.629885 0.1625976,0.782227 0.1406233,0.231446 0.3544903,0.347169 0.6416016,0.347168 0.2900366,1e-6 0.4951145,-0.08276 0.6152344,-0.248291 0.1201142,-0.165526 0.1801728,-0.509032 0.1801757,-1.030518 z"
style=""
id="path3006" />
<path
d="m 8.4125402,25.535706 1.265625,-0.123047 c 0.07617,0.424806 0.2307111,0.736818 0.4636228,0.936035 0.232908,0.19922 0.547117,0.298829 0.942627,0.298828 0.418942,1e-6 0.734616,-0.08862 0.947022,-0.265869 0.212398,-0.177245 0.318599,-0.38452 0.318603,-0.621826 -4e-6,-0.152342 -0.04468,-0.281981 -0.134033,-0.388916 -0.08936,-0.106932 -0.245365,-0.199949 -0.468018,-0.279053 -0.152347,-0.05273 -0.499514,-0.146482 -1.041503,-0.28125 C 10.009218,24.637759 9.5199606,24.425357 9.2387121,24.173401 8.8432035,23.818913 8.6454498,23.386784 8.6454504,22.877014 c -6e-7,-0.32812 0.093017,-0.635004 0.2790527,-0.920654 0.1860341,-0.285639 0.4541003,-0.503168 0.8041992,-0.652588 0.3500957,-0.149408 0.7727027,-0.224115 1.2678227,-0.224121 0.80859,6e-6 1.417232,0.177252 1.825927,0.531738 0.408687,0.354498 0.623286,0.827642 0.643799,1.419434 l -1.300781,0.05713 c -0.05567,-0.33105 -0.175053,-0.569087 -0.358154,-0.714112 -0.183109,-0.145014 -0.457767,-0.217523 -0.823975,-0.217529 -0.377932,6e-6 -0.67383,0.07764 -0.887695,0.23291 -0.1376975,0.09962 -0.2065451,0.232915 -0.2065433,0.399903 -1.8e-6,0.152348 0.064451,0.282719 0.1933593,0.391113 0.16406,0.137699 0.562498,0.281254 1.195313,0.430664 0.632808,0.149418 1.100825,0.303959 1.404052,0.463623 0.303218,0.159671 0.540523,0.377933 0.711914,0.654785 0.171382,0.276858 0.257075,0.618899 0.25708,1.026123 -5e-6,0.369142 -0.102544,0.714845 -0.307617,1.03711 -0.205083,0.322266 -0.495122,0.561767 -0.870117,0.718505 -0.375004,0.156739 -0.842289,0.235108 -1.401855,0.235108 -0.814456,0 -1.4399433,-0.188233 -1.8764652,-0.564697 C 8.7582427,26.804994 8.4975007,26.25641 8.4125402,25.535706 z"
style=""
id="path3008" />
<path
d="m 14.490177,24.450256 c 0,-0.656246 0.09814,-1.207027 0.294434,-1.652343 0.146483,-0.32812 0.346434,-0.622554 0.599853,-0.883301 0.253416,-0.260736 0.531004,-0.454096 0.832764,-0.580078 0.401364,-0.169916 0.864255,-0.254877 1.388672,-0.254883 0.949214,6e-6 1.708735,0.29444 2.278564,0.883301 0.569818,0.588872 0.85473,1.407719 0.854736,2.456543 -6e-6,1.040041 -0.282721,1.853761 -0.848144,2.441162 -0.565435,0.587402 -1.321294,0.881103 -2.267578,0.881103 -0.958011,0 -1.719729,-0.292236 -2.285157,-0.876709 -0.56543,-0.584471 -0.848144,-1.389402 -0.848144,-2.414795 z m 1.340332,-0.04395 c -2e-6,0.729495 0.168455,1.282473 0.505371,1.658936 0.336912,0.376466 0.764645,0.564698 1.283203,0.564697 0.518551,1e-6 0.944087,-0.186767 1.276611,-0.560303 0.332515,-0.373533 0.498774,-0.933835 0.49878,-1.680908 -6e-6,-0.738277 -0.161871,-1.289058 -0.485596,-1.652344 -0.323735,-0.363276 -0.753666,-0.544916 -1.289795,-0.544922 -0.536136,6e-6 -0.968264,0.183843 -1.296387,0.551514 -0.328126,0.36768 -0.492189,0.922123 -0.492187,1.66333 z"
style=""
id="path3010" />
<path
d="m 21.763126,27.631897 0,-6.442383 1.265625,0 2.636719,4.302246 0,-4.302246 1.208496,0 0,6.442383 -1.305176,0 -2.597168,-4.201172 0,4.201172 z"
style=""
id="path3012" />
</g>
<g
id="g3962"
transform="translate(-30.885486,-3.8859141)">
<g
transform="matrix(1.2076814,0,0,1.2079287,-11.232871,-4.3113471)"
id="g3943">
<g
id="text3929"
style="font-size:7.45153379px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
transform="scale(1.0001024,0.99989762)">
<path
d="m 17.6875,30.28125 a 1.0167554,1.0167554 0 0 0 -1.03125,1.03125 l 0,5.34375 a 1.0167554,1.0167554 0 0 0 1.03125,1.03125 l 2.03125,0 c 0.482666,0 0.906153,-0.06886 1.28125,-0.1875 0.226456,-0.07261 0.437309,-0.248639 0.65625,-0.375 a 1.0167554,1.0167554 0 0 0 0.875,0.5625 l 1.3125,0 a 1.0167554,1.0167554 0 0 0 0.84375,-0.46875 l 0.34375,-0.53125 0.34375,0.53125 a 1.0167554,1.0167554 0 0 0 0.84375,0.46875 l 1.28125,0 a 1.0167554,1.0167554 0 0 0 0.28125,-0.0625 1.0167554,1.0167554 0 0 0 0.03125,0 1.0167554,1.0167554 0 0 0 0.25,0.0625 l 1.09375,0 a 1.0167554,1.0167554 0 0 0 1.03125,-1.03125 l 0,-1.25 1.1875,0 A 1.0167554,1.0167554 0 0 0 32.40625,34.375 l 0,-0.90625 a 1.0167554,1.0167554 0 0 0 -0.09375,-0.40625 1.0167554,1.0167554 0 0 0 0,-0.03125 1.0167554,1.0167554 0 0 0 0.4375,-0.8125 l 0,-0.90625 a 1.0167554,1.0167554 0 0 0 -1.03125,-1.03125 l -3.65625,0 a 1.0167554,1.0167554 0 0 0 -0.34375,0.0625 1.0167554,1.0167554 0 0 0 -0.03125,0 1.0167554,1.0167554 0 0 0 -0.34375,-0.0625 l -1.25,0 a 1.0167554,1.0167554 0 0 0 -0.875,0.5 l -0.1875,0.3125 -0.1875,-0.3125 a 1.0167554,1.0167554 0 0 0 -0.875,-0.5 l -1.25,0 a 1.0167554,1.0167554 0 0 0 -0.9375,0.65625 c -0.256719,-0.18474 -0.502851,-0.408778 -0.8125,-0.5 -0.432605,-0.126173 -0.829185,-0.156243 -1.3125,-0.15625 l -1.96875,0 z m 2.125,3 c 0.01585,0.0016 0.130355,0.0012 0.125,0 0.05596,0.01214 0.05085,0.01851 0.03125,0 -0.03277,-0.03095 -0.05004,-0.08928 0,0.0625 0.02212,0.06709 0.0625,0.329747 0.0625,0.65625 -2e-6,0.326522 -0.02336,0.558999 -0.0625,0.6875 -0.01688,0.0043 -0.114233,-0.0056 -0.15625,0 l 0,-1.40625 z m 7.21875,0.40625 0,0.40625 -0.125,-0.1875 0.125,-0.21875 z"
id="path3941"
inkscape:original="M 17.6875 31.3125 L 17.6875 36.65625 L 19.71875 36.65625 C 20.11655 36.65625 20.449785 36.60644 20.6875 36.53125 C 21.005254 36.429373 21.250722 36.306922 21.4375 36.125 C 21.684909 35.884863 21.866586 35.544351 22 35.15625 C 22.10915 34.838494 22.156245 34.470291 22.15625 34.03125 C 22.156245 33.531573 22.116425 33.122055 22 32.78125 C 21.883565 32.440453 21.723153 32.14154 21.5 31.90625 C 21.276838 31.670968 21.000402 31.49843 20.6875 31.40625 C 20.454636 31.338333 20.100137 31.312506 19.65625 31.3125 L 17.6875 31.3125 z M 22.71875 31.3125 L 24.375 33.875 L 22.53125 36.65625 L 23.84375 36.65625 L 25.03125 34.8125 L 26.21875 36.65625 L 27.5 36.65625 L 25.6875 33.90625 L 27.34375 31.3125 L 26.09375 31.3125 L 25.03125 33.03125 L 23.96875 31.3125 L 22.71875 31.3125 z M 28.0625 31.3125 L 28.0625 36.65625 L 29.15625 36.65625 L 29.15625 34.375 L 31.375 34.375 L 31.375 33.46875 L 29.15625 33.46875 L 29.15625 32.21875 L 31.71875 32.21875 L 31.71875 31.3125 L 28.0625 31.3125 z M 18.78125 32.21875 L 19.25 32.21875 C 19.689036 32.21876 20.005858 32.24729 20.15625 32.28125 C 20.357574 32.324915 20.525262 32.407547 20.65625 32.53125 C 20.78723 32.654961 20.86473 32.810522 20.9375 33.03125 C 21.010263 33.251986 21.062497 33.587646 21.0625 34 C 21.062497 34.41236 21.01027 34.729827 20.9375 34.96875 C 20.864728 35.207675 20.771463 35.36445 20.65625 35.46875 C 20.541029 35.573054 20.393392 35.64384 20.21875 35.6875 C 20.085337 35.72146 19.894525 35.750001 19.59375 35.75 L 18.78125 35.75 L 18.78125 32.21875 z "
inkscape:radius="1.0166538"
sodipodi:type="inkscape:offset" />
</g>
<text
xml:space="preserve"
style="font-size:7.45153379px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
x="17.159304"
y="36.652206"
id="text3893"
sodipodi:linespacing="125%"
transform="scale(1.0001024,0.99989762)"><tspan
sodipodi:role="line"
id="tspan3895"
x="17.159304"
y="36.652206">DXF</tspan></text>
</g>
</g>
<g
id="g3832"
transform="matrix(1,0,0,0.99466628,-24.5,-10.898659)">
<path
transform="translate(0,16)"
d="M 2.34375,2.1875 A 0.82341756,0.82341756 0 0 0 1.6875,3 l 0,1.9375 A 0.82341756,0.82341756 0 0 0 0.75,5.0625 L 0.0625,5.75 a 0.82341756,0.82341756 0 0 0 0,1.1875 l 2,1.96875 0.34375,0.375 a 0.82341756,0.82341756 0 0 0 1.1875,0 L 3.9375,8.9375 l 0,-0.03125 2,-1.96875 a 0.82341756,0.82341756 0 0 0 0,-1.1875 L 5.25,5.0625 A 0.82341756,0.82341756 0 0 0 4.3125,4.90625 L 4.3125,3 A 0.82341756,0.82341756 0 0 0 3.5,2.1875 l -1,0 a 0.82341756,0.82341756 0 0 0 -0.15625,0 z"
id="path3830"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
inkscape:original="M 2.5 3 L 2.5 6.8125 L 1.34375 5.65625 L 0.65625 6.34375 L 2.65625 8.34375 L 3 8.71875 L 3.34375 8.34375 L 5.34375 6.34375 L 4.65625 5.65625 L 3.5 6.8125 L 3.5 3 L 2.5 3 z "
inkscape:radius="0.82333523"
sodipodi:type="inkscape:offset" />
<path
transform="translate(0,16)"
id="path3819"
d="m 2.5,3 0,3.8125 -1.15625,-1.15625 -0.6875,0.6875 2,2 0.34375,0.375 0.34375,-0.375 2,-2 L 4.65625,5.65625 3.5,6.8125 3.5,3 2.5,3 z"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 20 KiB

Wyświetl plik

@ -1,105 +0,0 @@
<?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="41"
height="16"
id="svg3797"
version="1.1"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="file_las_3d.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\point.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="5.5989008"
inkscape:cx="28.841832"
inkscape:cy="14.080185"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="1600"
inkscape:window-height="1137"
inkscape:window-x="2552"
inkscape:window-y="-8"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3805"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</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"
transform="translate(0,-16)">
<path
transform="translate(0.5625,0.56832228)"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
d="m 16.90625,19.1875 c -0.665893,9e-6 -1.265087,0.136807 -1.75,0.34375 -0.484589,0.206819 -1.016796,0.543759 -1.375,1.09375 -0.292337,0.448871 -0.413822,0.972509 -0.4375,1.5 l -0.8125,-2.03125 A 1.2611202,1.2611202 0 0 0 11.375,19.3125 l -1.375,0 a 1.2611202,1.2611202 0 0 0 -1.1875,0.78125 l -1.78125,4.5625 -1.78125,0 0,-4.03125 A 1.2611202,1.2611202 0 0 0 4,19.375 l -1.3125,0 a 1.2611202,1.2611202 0 0 0 -1.25,1.25 l 0,6.375 a 1.2611202,1.2611202 0 0 0 1.25,1.25 l 4.53125,0 a 1.2611202,1.2611202 0 0 0 0.09375,0 1.2611202,1.2611202 0 0 0 0.03125,0 1.2611202,1.2611202 0 0 0 0.09375,0 1.2611202,1.2611202 0 0 0 0.0625,0 l 1.375,0 a 1.2611202,1.2611202 0 0 0 1.1875,-0.8125 l 0.25,-0.65625 0.8125,0 0.25,0.65625 a 1.2611202,1.2611202 0 0 0 1.1875,0.8125 l 1.40625,0 a 1.2611202,1.2611202 0 0 0 0.9375,-0.40625 C 15.538957,28.188876 16.232691,28.375 17,28.375 c 0.699679,0 1.348334,-0.110561 1.90625,-0.34375 0.356565,-0.149035 0.575329,-0.429477 0.84375,-0.6875 0.26903,0.776919 0.593046,1.541218 1.0625,2.25 a 1.2611202,1.2611202 0 0 0 1.0625,0.5625 l 0.84375,0 A 1.2611202,1.2611202 0 0 0 23.875,28.375 c -0.153104,-0.332304 -0.217535,-0.494008 -0.3125,-0.71875 0.549186,0.376102 1.181465,0.71875 1.90625,0.71875 0.796159,0 1.524616,-0.316214 2.125,-0.78125 A 1.2611202,1.2611202 0 0 0 28.6875,28.25 l 2.4375,0 c 0.540269,0 1.018875,-0.02542 1.53125,-0.1875 0.560243,-0.179622 1.042735,-0.458435 1.40625,-0.8125 0.08593,-0.0834 0.109838,-0.220504 0.1875,-0.3125 -0.03142,0.102705 -0.06259,0.225424 -0.09375,0.3125 -0.09304,0.259951 -0.24692,0.649266 -0.46875,1.125 a 1.2611202,1.2611202 0 0 0 1.15625,1.78125 l 0.84375,0 a 1.2611202,1.2611202 0 0 0 1.0625,-0.5625 c 0.568478,-0.862636 0.990686,-1.760897 1.25,-2.6875 0.221071,-0.800554 0.312496,-1.57953 0.3125,-2.3125 -4e-6,-0.877401 -0.150993,-1.735561 -0.4375,-2.5625 -0.28436,-0.820713 -0.682376,-1.593274 -1.1875,-2.3125 A 1.2611202,1.2611202 0 0 0 35.65625,19.1875 l -0.8125,0 A 1.2611202,1.2611202 0 0 0 33.625,20.09375 c -0.319812,-0.233998 -0.618209,-0.512527 -1,-0.625 -0.477175,-0.139163 -0.959002,-0.156243 -1.5625,-0.15625 l -2.375,0 a 1.2611202,1.2611202 0 0 0 -1.15625,0.75 c -0.584368,-0.486319 -1.318032,-0.781242 -2.09375,-0.78125 -0.483013,8e-6 -0.997221,0.04663 -1.5,0.28125 -0.0798,0.03724 -0.113039,0.112469 -0.1875,0.15625 A 1.2611202,1.2611202 0 0 0 22.71875,19.1875 l -0.84375,0 a 1.2611202,1.2611202 0 0 0 -1.03125,0.53125 c -0.260179,0.372532 -0.429441,0.789604 -0.625,1.1875 -0.168274,-0.326788 -0.368625,-0.625512 -0.65625,-0.875 -0.733792,-0.636461 -1.663898,-0.843741 -2.65625,-0.84375 z M 31.375,22.90625 c -0.08017,-0.07572 -0.03104,-0.06392 0.03125,0.125 0.03381,0.102561 0.09375,0.367336 0.09375,0.75 -4e-6,0.382673 -0.07885,0.660954 -0.125,0.8125 -0.03566,0.117065 0.03402,0.0248 0.03125,0.03125 0.0048,-0.002 -0.112998,-0.0042 -0.15625,0 l 0,-1.6875 c 0.0037,-2.11e-4 0.101665,0.0018 0.09375,0 0.144429,0.03133 0.142784,0.07408 0.03125,-0.03125 z m -8.3125,0.53125 a 1.2611202,1.2611202 0 0 0 0.1875,0.03125 l 0.5,0.09375 -0.0625,0.34375 a 1.2611202,1.2611202 0 0 0 0,0.09375 L 23.25,24.03125 A 1.2611202,1.2611202 0 0 0 23,24.09375 c 0.02154,-0.220213 0.02072,-0.439548 0.0625,-0.65625 z"
id="path3786" />
<g
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
id="text3003">
<path
d="m 3.2524414,27.568336 0,-6.389648 1.3007813,0 0,5.304199 3.234375,0 0,1.085449 z"
style=""
id="path3789" />
<path
d="m 14.528809,27.568336 -1.415039,0 -0.5625,-1.463378 -2.5751958,0 -0.5317383,1.463378 -1.3798828,0 2.5092769,-6.442382 1.375489,0 z m -2.39502,-2.548828 -0.887695,-2.390625 -0.870117,2.390625 z"
style=""
id="path3791" />
<path
d="m 14.893555,25.472145 1.265625,-0.123047 c 0.07617,0.424807 0.230711,0.736818 0.463623,0.936035 0.232908,0.19922 0.547116,0.298829 0.942627,0.298828 0.418942,1e-6 0.734615,-0.08862 0.947021,-0.265869 0.212398,-0.177244 0.318599,-0.38452 0.318604,-0.621826 -5e-6,-0.152342 -0.04468,-0.28198 -0.134034,-0.388916 -0.08936,-0.106931 -0.245365,-0.199949 -0.468017,-0.279053 -0.152347,-0.05273 -0.499515,-0.146481 -1.041504,-0.28125 -0.697268,-0.172848 -1.186525,-0.38525 -1.467773,-0.637207 -0.395509,-0.354488 -0.593263,-0.786616 -0.593262,-1.296386 -10e-7,-0.32812 0.09302,-0.635005 0.279053,-0.920655 0.186034,-0.285638 0.4541,-0.503167 0.804199,-0.652588 0.350095,-0.149407 0.772702,-0.224114 1.267822,-0.224121 0.80859,7e-6 1.417232,0.177253 1.825928,0.531739 0.408686,0.354498 0.623285,0.827642 0.643799,1.419433 l -1.300782,0.05713 c -0.05567,-0.33105 -0.175052,-0.569087 -0.358154,-0.714111 -0.183109,-0.145014 -0.457767,-0.217524 -0.823975,-0.217529 -0.377932,5e-6 -0.67383,0.07764 -0.887695,0.23291 -0.137697,0.09961 -0.206545,0.232915 -0.206543,0.399902 -2e-6,0.152348 0.06445,0.282719 0.19336,0.391113 0.16406,0.1377 0.562497,0.281255 1.195312,0.430664 0.632809,0.149418 1.100826,0.303959 1.404053,0.463623 0.303218,0.159672 0.540522,0.377933 0.711914,0.654786 0.171381,0.276858 0.257074,0.618898 0.25708,1.026123 -6e-6,0.369142 -0.102545,0.714845 -0.307617,1.037109 -0.205083,0.322266 -0.495122,0.561768 -0.870117,0.718506 -0.375004,0.156738 -0.842289,0.235107 -1.401856,0.235107 -0.814455,0 -1.439943,-0.188232 -1.876465,-0.564697 -0.436524,-0.376464 -0.697266,-0.925047 -0.782226,-1.645752 z"
style=""
id="path3793" />
<path
d="m 23.273926,29.462379 -0.848145,0 C 21.977538,28.78562 21.636229,28.082496 21.401855,27.353004 21.16748,26.623513 21.050292,25.917459 21.050293,25.23484 c -1e-6,-0.846676 0.145019,-1.647945 0.435059,-2.403808 0.251952,-0.656245 0.571287,-1.261225 0.958007,-1.814942 l 0.84375,0 c -0.401369,0.887701 -0.677492,1.642828 -0.828369,2.265381 -0.15088,0.622563 -0.22632,1.282474 -0.226318,1.979737 -2e-6,0.48047 0.04468,0.972657 0.134033,1.476562 0.08935,0.503907 0.211668,0.98291 0.366943,1.437012 0.102537,0.298827 0.282713,0.728026 0.540528,1.287597 z"
style=""
id="path3795" />
<path
d="m 23.924316,25.858864 1.195313,-0.14502 c 0.03808,0.304689 0.140623,0.537599 0.307617,0.698731 0.16699,0.161134 0.369139,0.2417 0.606445,0.241699 0.254881,10e-7 0.46948,-0.09668 0.643799,-0.290039 0.174313,-0.193358 0.261471,-0.4541 0.261475,-0.782227 -4e-6,-0.310544 -0.0835,-0.556638 -0.250488,-0.738281 -0.166996,-0.181638 -0.370609,-0.272458 -0.61084,-0.272461 -0.158206,3e-6 -0.34717,0.03076 -0.566895,0.09228 l 0.136231,-1.006347 c 0.333982,0.0088 0.588864,-0.06372 0.764648,-0.21753 0.175778,-0.153804 0.263669,-0.358149 0.263672,-0.613037 -3e-6,-0.216792 -0.06446,-0.389643 -0.193359,-0.518554 -0.128909,-0.128901 -0.300296,-0.193354 -0.514161,-0.19336 -0.210939,6e-6 -0.391115,0.07325 -0.540527,0.219727 -0.149416,0.146489 -0.240236,0.360356 -0.272461,0.641601 l -1.138183,-0.193359 c 0.0791,-0.389643 0.198485,-0.700922 0.358154,-0.933838 0.159667,-0.232904 0.382323,-0.416009 0.667969,-0.549316 0.285642,-0.133295 0.60571,-0.199945 0.960205,-0.199952 0.606442,7e-6 1.09277,0.193366 1.458984,0.580079 0.301754,0.316411 0.452632,0.673833 0.452637,1.072265 -5e-6,0.565434 -0.309086,1.016606 -0.927246,1.353516 0.369137,0.0791 0.664302,0.256351 0.885498,0.531738 0.221187,0.275393 0.331782,0.607913 0.331787,0.997559 -5e-6,0.565431 -0.206548,1.047364 -0.619629,1.445801 -0.41309,0.398437 -0.927249,0.597656 -1.542481,0.597656 -0.583009,0 -1.066407,-0.167725 -1.450195,-0.503174 -0.38379,-0.335449 -0.606446,-0.774169 -0.667969,-1.316162 z"
style=""
id="path3797" />
<path
d="m 29.246094,21.125954 2.377441,0 c 0.536129,6e-6 0.94482,0.04102 1.226074,0.123047 0.377925,0.111334 0.701656,0.309088 0.971192,0.593261 0.269526,0.284185 0.474603,0.632085 0.615234,1.043701 0.140619,0.411626 0.210932,0.919194 0.210938,1.522706 -6e-6,0.530276 -0.06592,0.987306 -0.197754,1.371093 -0.161139,0.468752 -0.391119,0.848146 -0.689942,1.138184 -0.225591,0.219727 -0.530278,0.391113 -0.914062,0.51416 -0.287113,0.09082 -0.670902,0.13623 -1.151367,0.13623 l -2.447754,0 z m 1.300781,1.089843 0,4.26709 0.971191,0 c 0.363278,10e-7 0.625485,-0.02051 0.786621,-0.06152 0.210934,-0.05273 0.385983,-0.142089 0.525147,-0.268067 0.139156,-0.125975 0.252681,-0.33325 0.340576,-0.621826 0.08789,-0.288572 0.131831,-0.681882 0.131836,-1.179931 -5e-6,-0.498044 -0.04395,-0.880367 -0.131836,-1.146973 -0.08789,-0.266597 -0.210942,-0.474605 -0.36914,-0.624023 -0.158208,-0.149409 -0.358891,-0.250484 -0.602051,-0.303223 -0.181644,-0.04101 -0.537601,-0.06152 -1.067871,-0.06152 z"
style=""
id="path3799" />
<path
d="m 35.402832,29.462379 c 0.243164,-0.521485 0.41455,-0.921387 0.51416,-1.199707 0.09961,-0.27832 0.191894,-0.599121 0.276856,-0.962402 0.08496,-0.363281 0.147948,-0.708251 0.188964,-1.034912 0.04102,-0.326659 0.06152,-0.661375 0.06152,-1.00415 -10e-7,-0.697263 -0.07471,-1.357174 -0.224121,-1.979737 -0.149415,-0.622553 -0.424806,-1.37768 -0.826172,-2.265381 l 0.839355,0 c 0.442382,0.629889 0.785887,1.297857 1.030518,2.003907 0.244627,0.706058 0.366941,1.422366 0.366943,2.148925 -2e-6,0.612307 -0.09668,1.268556 -0.290039,1.96875 -0.219728,0.785156 -0.581544,1.560058 -1.085449,2.324707 z"
style=""
id="path3801" />
</g>
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 12 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 1.0 KiB

Wyświetl plik

@ -1,101 +0,0 @@
<?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>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.1 KiB

Wyświetl plik

@ -1,173 +0,0 @@
<?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>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 5.5 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 859 B

File diff suppressed because one or more lines are too long

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 24 KiB

Wyświetl plik

@ -1,103 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="front.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\area.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="11.313709"
inkscape:cx="7.609904"
inkscape:cy="16.299638"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="2560"
inkscape:window-height="1377"
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:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 12,5 v 15 l -6,7 6,-7 h 15"
id="path891"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 11.970172,4.985086 V 20.014914 H 27 V 4.985086 Z"
id="path843"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:0.31372549;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 12,5 6,12 H 21 L 27,5 Z"
id="path879"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:0.31372549;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 27,5 -6,7 v 15 l 6,-7 z"
id="path881"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path840-5"
d="M 5.9850856,11.970171 V 27 H 21.014914 V 11.970171 Z"
style="fill:#44a24a;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 6,27 V 12 l 6,-7 h 15 v 15 l -6,7 z"
id="path885"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 6,12 H 21 L 27,5"
id="path887"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 21,12 V 27"
id="path889"
inkscape:connector-curvature="0" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 3.9 KiB

Wyświetl plik

@ -1,143 +0,0 @@
<?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.91 r13725"
sodipodi:docname="goto.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\profile.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3799">
<inkscape:path-effect
effect="spiro"
id="path-effect4170"
is_visible="true" />
<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-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="15.792052"
inkscape:cx="25.559779"
inkscape:cy="15.899732"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="2560"
inkscape:window-height="1378"
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="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="M 8,4.5 A 1.50015,1.50015 0 0 0 6.5,6 l 0,5 3,0 0,-3.5 17,0 0,17 -17,0 0,-3.5 -3,0 0,5 A 1.50015,1.50015 0 0 0 8,27.5 l 20,0 A 1.50015,1.50015 0 0 0 29.5,26 l 0,-20 A 1.50015,1.50015 0 0 0 28,4.5 l -20,0 z"
id="rect4178"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 19.585591,16 2,16"
id="path4180"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 13.95798,10.060515 6.298121,5.981506 -6.298121,5.823199"
id="path4162"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 5.4 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 9.0 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 14 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 15 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 15 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 14 KiB

Wyświetl plik

@ -1,110 +0,0 @@
<?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="height.svg">
<defs
id="defs3799" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.836083"
inkscape:cx="13.328662"
inkscape:cy="12.909333"
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:none;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.5,1.5;stroke-dashoffset:1.2"
d="M 16,9.5000028 16,23.5"
id="path3007"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M -30,19 -16,5"
id="path3829"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1.09090912;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
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.61111111,0,0,0.61111111,-22.222221,-8.9444445)" />
<path
sodipodi:type="arc"
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1.09090912;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
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.61111111,0,0,0.61111111,-39.222222,8.055556)" />
<path
transform="matrix(0.61111111,0,0,0.61111111,9.2777778,-5.4444422)"
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
sodipodi:ry="6"
sodipodi:rx="6"
sodipodi:cy="22"
sodipodi:cx="11"
id="path3003"
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1.09090912;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
transform="matrix(0.61111111,0,0,0.61111111,9.2777778,11.555556)"
d="M 17,22 A 6,6 0 1 1 5,22 6,6 0 1 1 17,22 z"
sodipodi:ry="6"
sodipodi:rx="6"
sodipodi:cy="22"
sodipodi:cx="11"
id="path3005"
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1.09090912;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 3.8 KiB

Wyświetl plik

@ -1,267 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="helicopter_controls.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\fps_controls.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="44.791208"
inkscape:cx="18.284561"
inkscape:cy="17.162354"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="3840"
inkscape:window-height="2066"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
inkscape:pagecheckerboard="true">
<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="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffffc;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 7.7161893,7.5 a 0.50005,0.50005 0 1 0 0,1 H 18.216189 v 1 h -0.808594 l -0.138672,0.2773438 -0.910156,1.8183592 c -0.232618,0.06064 -2.035169,0.521648 -3.691406,1.279297 -0.707286,0.323549 -1.348,0.663902 -1.796875,1.119141 l -5.7128905,-0.01563 -1.8046874,-3 H 2.7161893 l 1.1660156,3.486333 -1.1660156,2.007812 1.015625,0.02148 1.3945312,-1.273438 5.8652345,0.90625 h 0.002 c 0.150408,0.111648 0.304035,0.22233 0.5,0.320313 0.871146,0.435573 1.783199,1.401215 2.765625,2.296875 0.81754,0.745337 1.717612,1.458738 2.789062,1.679687 L 16.354861,22.5 h -4.638672 v 1 H 26.92322 L 28.069705,22.353516 27.362673,21.646484 26.509158,22.5 h -5.09961 l 0.667969,-2 h 3.642578 0.0039 c 1.613883,-0.02409 3.074717,-0.58311 3.890626,-1.511719 0.407952,-0.464304 0.649,-1.061035 0.560546,-1.68164 -0.08845,-0.620606 -0.487775,-1.204211 -1.158203,-1.707032 -1.994666,-1.496 -3.248117,-2.503511 -4.433593,-3.162109 -1.092177,-0.606765 -2.167283,-0.861267 -3.541016,-0.902344 L 20.024783,9.5 h -0.808594 v -1 h 10.5 a 0.50005,0.50005 0 1 0 0,-1 z m 10.3613277,13 h 2.945313 l -0.667969,2 h -2.945313 z"
id="path4714"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d=""
id="path3840"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#fffffc;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
d="M 7.7163105,7.99995 H 29.71631"
id="path836"
inkscape:connector-curvature="0" />
<path
style="fill:#fffffb;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 17.716189,10 h 2 l 1,2 c 3,0 4,1 8,4 2.4,1.8 -0.0083,3.955348 -3,4 h -8 c -2.321884,0 -4,-3 -6,-4 -3.5777084,-1.788854 5,-4 5,-4 z"
id="path838"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccsccscc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 11.716189,23 h 15 l 1,-1"
id="path842"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 21.716189,20 -1,3"
id="path844"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 17.716189,20 -1,3"
id="path846"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 18.716189,8 v 2"
id="path848"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 12.716189,14 -7.5579712,-0.02122 -1.8051233,-3 H 2.7161893 l 1.1657607,3.486929 -1.1657607,2.007893 1.0157868,0.02122 1.3946682,-1.273811 7.1105067,1.100157 z"
id="path870"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccc" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 22.716189,12.955078 V 17 h 6.027344 c -0.104804,-0.133454 -0.243847,-0.276635 -0.453125,-0.433594 -2.007562,-1.505671 -3.253711,-2.4949 -4.292969,-3.072265 -0.444139,-0.246744 -0.853,-0.414688 -1.28125,-0.539063 z"
id="path872"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4577"
d="M 7.7163105,7.99995 H 29.71631"
style="fill:none;stroke:#fffffc;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 17.407595,9.5 -0.138672,0.2773438 -0.910156,1.8183592 c -0.232618,0.06064 -2.035169,0.521648 -3.691406,1.279297 -0.880227,0.402661 -1.672519,0.822709 -2.097656,1.470703 -0.212569,0.323997 -0.301915,0.787096 -0.119141,1.179688 0.182774,0.392592 0.541589,0.671185 1.042969,0.921875 0.871146,0.435573 1.783199,1.401215 2.765625,2.296875 C 15.241584,19.639801 16.339905,20.5 17.716189,20.5 h 8.003906 0.0039 c 1.613882,-0.02409 3.074718,-0.58311 3.890626,-1.511719 0.407953,-0.464304 0.649,-1.061035 0.560546,-1.68164 -0.08845,-0.620606 -0.487775,-1.204211 -1.158203,-1.707032 -1.994666,-1.496 -3.248117,-2.503511 -4.433593,-3.162109 -1.092177,-0.606765 -2.167283,-0.861267 -3.541016,-0.902344 L 20.024783,9.5 Z m 0.617188,1 h 1.382812 l 1,2 h 0.308594 c 1.444444,0 2.318289,0.221098 3.382812,0.8125 1.064524,0.591402 2.311073,1.583891 4.316407,3.087891 0.529572,0.397179 0.728031,0.75766 0.769531,1.048828 0.0415,0.291168 -0.05418,0.573792 -0.322266,0.878906 -0.536167,0.610229 -1.776478,1.151311 -3.154296,1.171875 h -7.992188 c -0.9456,0 -1.8461,-0.639801 -2.783203,-1.494141 -0.937103,-0.85434 -1.865287,-1.888698 -2.994141,-2.453125 -0.393047,-0.196523 -0.549103,-0.37849 -0.582031,-0.449218 -0.03293,-0.07073 -0.03965,-0.07413 0.04883,-0.208985 0.176953,-0.269711 0.860748,-0.737596 1.677735,-1.111328 1.633971,-0.747464 3.75781,-1.298828 3.75781,-1.298828 l 0.220703,-0.05664 z"
id="path4579"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4581"
d="m 11.716189,23 h 15 l 1,-1"
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4583"
d="m 21.716189,20 -1,3"
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4585"
d="m 17.716189,20 -1,3"
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4587"
d="m 18.716189,8 v 2"
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccccccc"
inkscape:connector-curvature="0"
id="path4589"
d="m 12.716189,14 -7.5579712,-0.02122 -1.8051233,-3 H 2.7161893 l 1.1657607,3.486929 -1.1657607,2.007893 1.0157868,0.02122 1.3946682,-1.273811 7.1105067,1.100157 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path4591"
d="M 22.716189,12.955078 V 17 h 6.027344 c -0.104804,-0.133454 -0.243847,-0.276635 -0.453125,-0.433594 -2.007562,-1.505671 -3.253711,-2.4949 -4.292969,-3.072265 -0.444139,-0.246744 -0.853,-0.414688 -1.28125,-0.539063 z"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4682"
d="m -29.999879,7.99995 h 22"
style="fill:none;stroke:#fffffc;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccsccscc"
inkscape:connector-curvature="0"
id="path4684"
d="m -20,10 h 2 l 1,2 c 3,0 4,1 8,4 2.4,1.8 -0.0083,3.955348 -3,4 h -8 c -2.321884,0 -4,-3 -6,-4 -3.577709,-1.788854 5,-4 5,-4 z"
style="fill:#fffffb;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4686"
d="m -26,23 h 15 l 1,-1"
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4688"
d="m -16,20 -1,3"
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4690"
d="m -20,20 -1,3"
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4692"
d="m -19,8 v 2"
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccccccc"
inkscape:connector-curvature="0"
id="path4694"
d="m -25,14 -7.557971,-0.02122 -1.805124,-3 H -35 l 1.165761,3.486929 L -35,16.473602 l 1.015787,0.02122 1.394668,-1.273811 7.110507,1.100157 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path4696"
d="M -15,12.955078 V 17 h 6.027344 c -0.104804,-0.133454 -0.243847,-0.276635 -0.453125,-0.433594 -2.007562,-1.505671 -3.253711,-2.4949 -4.292969,-3.072265 -0.444139,-0.246744 -0.853,-0.414688 -1.28125,-0.539063 z"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#fffffc;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
d="m -29.999879,7.99995 h 22"
id="path4698"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4700"
d="m -20.308594,9.5 -0.138672,0.2773438 -0.910156,1.8183592 c -0.232618,0.06064 -2.035169,0.521648 -3.691406,1.279297 -0.880227,0.402661 -1.672519,0.822709 -2.097656,1.470703 -0.212569,0.323997 -0.301915,0.787096 -0.119141,1.179688 0.182774,0.392592 0.541589,0.671185 1.042969,0.921875 0.871146,0.435573 1.783199,1.401215 2.765625,2.296875 C -22.474605,19.639801 -21.376284,20.5 -20,20.5 h 8.003906 0.0039 c 1.613882,-0.02409 3.074718,-0.58311 3.890626,-1.511719 0.407953,-0.464304 0.649,-1.061035 0.560546,-1.68164 -0.08845,-0.620606 -0.487775,-1.204211 -1.158203,-1.707032 -1.994666,-1.496 -3.248117,-2.503511 -4.433593,-3.162109 -1.092177,-0.606765 -2.167283,-0.861267 -3.541016,-0.902344 L -17.691406,9.5 Z m 0.617188,1 h 1.382812 l 1,2 H -17 c 1.444444,0 2.318289,0.221098 3.382812,0.8125 1.064524,0.591402 2.311073,1.583891 4.316407,3.087891 0.529572,0.397179 0.728031,0.75766 0.769531,1.048828 0.0415,0.291168 -0.05418,0.573792 -0.322266,0.878906 -0.536167,0.610229 -1.776478,1.151311 -3.154296,1.171875 H -20 c -0.9456,0 -1.8461,-0.639801 -2.783203,-1.494141 -0.937103,-0.85434 -1.865287,-1.888698 -2.994141,-2.453125 -0.393047,-0.196523 -0.549103,-0.37849 -0.582031,-0.449218 -0.03293,-0.07073 -0.03965,-0.07413 0.04883,-0.208985 0.176953,-0.269711 0.860748,-0.737596 1.677735,-1.111328 1.633973,-0.747464 3.757812,-1.298828 3.757812,-1.298828 l 0.220703,-0.05664 z"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -26,23 h 15 l 1,-1"
id="path4702"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -16,20 -1,3"
id="path4704"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -20,20 -1,3"
id="path4706"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -19,8 v 2"
id="path4708"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -25,14 -7.557971,-0.02122 -1.805124,-3 H -35 l 1.165761,3.486929 L -35,16.473602 l 1.015787,0.02122 1.394668,-1.273811 7.110507,1.100157 z"
id="path4710"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccc" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -15,12.955078 V 17 h 6.027344 c -0.104804,-0.133454 -0.243847,-0.276635 -0.453125,-0.433594 -2.007562,-1.505671 -3.253711,-2.4949 -4.292969,-3.072265 -0.444139,-0.246744 -0.853,-0.414688 -1.28125,-0.539063 z"
id="path4712"
inkscape:connector-curvature="0" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 19 KiB

Wyświetl plik

@ -1,24 +0,0 @@
<?php
$dir = './';
$files = scandir($dir);
foreach($files as $key => $value){
if($value === "." || $value === ".." || $value === "image_preview.php"){
continue;
}
?>
<div style="float: left; margin: 10px; width: 140px; height: 140px">
<span ><?= $value ?></span><br>
<img src="<?= $value ?>" style="width: 128px; border: 1px solid black" />
</div>
<?php
}
?>

Wyświetl plik

@ -1,501 +0,0 @@
<html>
<head>
<style>
.icon_container{
border: 1px solid black;
margin: 10px;
padding: 10px;
}
</style>
</head>
<body>
<div id="icons_container">
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="annotation.svg" style="height: 32px;"/>
<div style="font-weight: bold">annotation.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="area.svg" style="height: 32px;"/>
<div style="font-weight: bold">area.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="area_backup.svg" style="height: 32px;"/>
<div style="font-weight: bold">area_backup.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="back.svg" style="height: 32px;"/>
<div style="font-weight: bold">back.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="bottom.svg" style="height: 32px;"/>
<div style="font-weight: bold">bottom.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="clip-plane-x.svg" style="height: 32px;"/>
<div style="font-weight: bold">clip-plane-x.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="clip-plane-y.svg" style="height: 32px;"/>
<div style="font-weight: bold">clip-plane-y.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="clip-plane-z.svg" style="height: 32px;"/>
<div style="font-weight: bold">clip-plane-z.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="clip-polygon.svg" style="height: 32px;"/>
<div style="font-weight: bold">clip-polygon.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="clip-screen.svg" style="height: 32px;"/>
<div style="font-weight: bold">clip-screen.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="clip_volume.svg" style="height: 32px;"/>
<div style="font-weight: bold">clip_volume.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="close.svg" style="height: 32px;"/>
<div style="font-weight: bold">close.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="cloud.svg" style="height: 32px;"/>
<div style="font-weight: bold">cloud.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="copy.svg" style="height: 32px;"/>
<div style="font-weight: bold">copy.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="distance.svg" style="height: 32px;"/>
<div style="font-weight: bold">distance.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="earth_controls.svg" style="height: 32px;"/>
<div style="font-weight: bold">earth_controls.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="eye.svg" style="height: 32px;"/>
<div style="font-weight: bold">eye.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="eye_2.svg" style="height: 32px;"/>
<div style="font-weight: bold">eye_2.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="eye_crossed.svg" style="height: 32px;"/>
<div style="font-weight: bold">eye_crossed.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="file_csv_2d.svg" style="height: 32px;"/>
<div style="font-weight: bold">file_csv_2d.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="file_dxf.svg" style="height: 32px;"/>
<div style="font-weight: bold">file_dxf.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="file_geojson.svg" style="height: 32px;"/>
<div style="font-weight: bold">file_geojson.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="file_las_3d.svg" style="height: 32px;"/>
<div style="font-weight: bold">file_las_3d.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="flip_y_z.svg" style="height: 32px;"/>
<div style="font-weight: bold">flip_y_z.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="focus.svg" style="height: 32px;"/>
<div style="font-weight: bold">focus.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="fps_controls.svg" style="height: 32px;"/>
<div style="font-weight: bold">fps_controls.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="front.svg" style="height: 32px;"/>
<div style="font-weight: bold">front.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="goto.svg" style="height: 32px;"/>
<div style="font-weight: bold">goto.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="height.svg" style="height: 32px;"/>
<div style="font-weight: bold">height.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="helicopter_controls.svg" style="height: 32px;"/>
<div style="font-weight: bold">helicopter_controls.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="left.svg" style="height: 32px;"/>
<div style="font-weight: bold">left.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="menu_button.svg" style="height: 32px;"/>
<div style="font-weight: bold">menu_button.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="menu_icon.svg" style="height: 32px;"/>
<div style="font-weight: bold">menu_icon.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="navigation_cube.svg" style="height: 32px;"/>
<div style="font-weight: bold">navigation_cube.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="orbit_controls.svg" style="height: 32px;"/>
<div style="font-weight: bold">orbit_controls.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="orthographic-camera.svg" style="height: 32px;"/>
<div style="font-weight: bold">orthographic-camera.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="perspective-camera.svg" style="height: 32px;"/>
<div style="font-weight: bold">perspective-camera.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="point.svg" style="height: 32px;"/>
<div style="font-weight: bold">point.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="profile.svg" style="height: 32px;"/>
<div style="font-weight: bold">profile.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="remove.svg" style="height: 32px;"/>
<div style="font-weight: bold">remove.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="reset_tools.svg" style="height: 32px;"/>
<div style="font-weight: bold">reset_tools.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="return_number.svg" style="height: 32px;"/>
<div style="font-weight: bold">return_number.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="rgb.svg" style="height: 32px;"/>
<div style="font-weight: bold">rgb.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="right.svg" style="height: 32px;"/>
<div style="font-weight: bold">right.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="rotate.svg" style="height: 32px;"/>
<div style="font-weight: bold">rotate.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="scale.svg" style="height: 32px;"/>
<div style="font-weight: bold">scale.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="sphere.svg" style="height: 32px;"/>
<div style="font-weight: bold">sphere.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="sphere_distances.svg" style="height: 32px;"/>
<div style="font-weight: bold">sphere_distances.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="target.svg" style="height: 32px;"/>
<div style="font-weight: bold">target.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="top.svg" style="height: 32px;"/>
<div style="font-weight: bold">top.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="translate.svg" style="height: 32px;"/>
<div style="font-weight: bold">translate.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="triangle.svg" style="height: 32px;"/>
<div style="font-weight: bold">triangle.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="volume.svg" style="height: 32px;"/>
<div style="font-weight: bold">volume.svg</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="angle.png" style="height: 32px;"/>
<div style="font-weight: bold">angle.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="earth_controls.png" style="height: 32px;"/>
<div style="font-weight: bold">earth_controls.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="earth_controls_1.png" style="height: 32px;"/>
<div style="font-weight: bold">earth_controls_1.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="eye_2.png" style="height: 32px;"/>
<div style="font-weight: bold">eye_2.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="flip_y_z.png" style="height: 32px;"/>
<div style="font-weight: bold">flip_y_z.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="fps_controls.png" style="height: 32px;"/>
<div style="font-weight: bold">fps_controls.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="gradients_grayscale.png" style="height: 32px;"/>
<div style="font-weight: bold">gradients_grayscale.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="gradients_plasma.png" style="height: 32px;"/>
<div style="font-weight: bold">gradients_plasma.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="gradients_rainbow.png" style="height: 32px;"/>
<div style="font-weight: bold">gradients_rainbow.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="gradients_spectral.png" style="height: 32px;"/>
<div style="font-weight: bold">gradients_spectral.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="gradients_yellow_green.png" style="height: 32px;"/>
<div style="font-weight: bold">gradients_yellow_green.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="map_icon.png" style="height: 32px;"/>
<div style="font-weight: bold">map_icon.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="profile.png" style="height: 32px;"/>
<div style="font-weight: bold">profile.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="rgb.png" style="height: 32px;"/>
<div style="font-weight: bold">rgb.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="rgb_elevation.png" style="height: 32px;"/>
<div style="font-weight: bold">rgb_elevation.png</div>
</center>
</span>
<span class="icon_container" style="position: relative; float: left">
<center>
<img src="sphere.png" style="height: 32px;"/>
<div style="font-weight: bold">sphere.png</div>
</center>
</span>
</div>
</body>
</html>

Wyświetl plik

@ -1,108 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="left.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\area.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="11.313709"
inkscape:cx="7.9777455"
inkscape:cy="15.097561"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="2560"
inkscape:window-height="1377"
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:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 11,5 v 15 l -6,7 6,-7 h 15"
id="path891"
inkscape:connector-curvature="0" />
<path
style="fill:#44a24a;fill-opacity:0;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 10.970172,4.985086 V 20.014914 H 26 V 4.985086 Z"
id="path843"
inkscape:connector-curvature="0" />
<path
style="fill:#e73100;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
d="m 11,5 -6,7 v 15 l 6,-7 z"
id="path835"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:0.31372549;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 11,5 5,12 H 20 L 26,5 Z"
id="path879"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:0.31372549;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 26,5 -6,7 v 15 l 6,-7 z"
id="path881"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path840"
d="M 4.985086,11.970171 V 27 H 20.014914 V 11.970171 Z"
style="fill:#ffffff;fill-opacity:0.31372549;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 5,27 V 12 l 6,-7 h 15 v 15 l -6,7 z"
id="path885"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 5,12 H 20 L 26,5"
id="path887"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 20,12 V 27"
id="path889"
inkscape:connector-curvature="0" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.2 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 7.8 KiB

Wyświetl plik

@ -1,95 +0,0 @@
<?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="64"
height="64"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="menu_button.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.9195959"
inkscape:cx="50.452374"
inkscape:cy="18.274589"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1018"
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" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-988.36218)">
<path
sodipodi:type="inkscape:offset"
inkscape:radius="1.1206636"
inkscape:original="M 12.8125 997.1875 C 10.612493 997.1875 8.8125 998.95624 8.8125 1001.1562 L 8.8125 1039.5625 C 8.8125 1041.7625 10.612493 1043.5312 12.8125 1043.5312 L 51.1875 1043.5312 C 53.387507 1043.5312 55.1875 1041.7625 55.1875 1039.5625 L 55.1875 1001.1562 C 55.1875 998.95624 53.387507 997.1875 51.1875 997.1875 L 12.8125 997.1875 z "
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:3"
id="path3811"
d="m 12.8125,996.0625 c -2.80066,0 -5.125,2.28251 -5.125,5.0937 l 0,38.4063 c 0,2.8113 2.324353,5.0937 5.125,5.0937 l 38.375,0 c 2.800647,0 5.125,-2.2824 5.125,-5.0937 l 0,-38.4063 c 0,-2.81119 -2.32434,-5.0937 -5.125,-5.0937 l -38.375,0 z"
transform="matrix(1.2641814,0,0,1.2649957,-8.4538063,-270.38804)" />
<rect
style="fill:none;stroke:#ffffff;stroke-width:2.52917719;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:3"
id="rect2985"
width="58.588169"
height="58.625908"
x="2.7059135"
y="991.05286"
ry="5.0234642" />
<rect
y="1002.0764"
x="14.98659"
height="6.2188277"
width="34.28471"
id="rect3794"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.52917719;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:3"
ry="1.4375684" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.52917719;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:3"
id="rect3796"
width="34.28471"
height="6.2188277"
x="14.98659"
y="1017.2564"
ry="0.87851411" />
<rect
y="1032.4363"
x="14.98659"
height="6.2188277"
width="34.28471"
id="rect3798"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.52917719;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:3"
ry="1.1181087" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 3.8 KiB

Wyświetl plik

@ -1,83 +0,0 @@
<?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="64"
height="64"
id="svg2987"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="New document 1">
<defs
id="defs2989" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.9195959"
inkscape:cx="28.466514"
inkscape:cy="32.358992"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1018"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
<metadata
id="metadata2992">
<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,-988.36218)">
<rect
style="fill:#000000;fill-opacity:1;stroke:none"
id="rect2995"
width="56"
height="12"
x="4"
y="1036.3622"
ry="5.5795407"
rx="6.8212709" />
<rect
rx="6.8212709"
ry="5.5795407"
y="1014.3622"
x="4"
height="12"
width="56"
id="rect3765"
style="fill:#000000;fill-opacity:1;stroke:none" />
<rect
style="fill:#000000;fill-opacity:1;stroke:none"
id="rect3767"
width="56"
height="12"
x="4"
y="992.36218"
ry="5.5795407"
rx="6.8212709" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.2 KiB

Wyświetl plik

@ -1,62 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg3698"
sodipodi:docname="navigation_cube.svg"
inkscape:version="0.92.1 r15371">
<metadata
id="metadata3704">
<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>
<defs
id="defs3702" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview3700"
showgrid="false"
inkscape:zoom="19.666667"
inkscape:cx="14.803793"
inkscape:cy="8.4943686"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg3698" />
<style
type="text/css"
id="style3694">
.st0{fill:#DDDDDD;stroke:#DDDDDD;}
</style>
<path
class="st0"
d="M 11.984871,1.9527405 2.7016267,7.016328 v 10.23773 l 9.2832443,4.953032 9.283244,-4.953032 V 7.0711835 Z M 18.660367,7.5615076 11.98909,11.121209 5.3456633,7.4973689 11.980651,3.8777477 Z M 4.3894892,8.8982949 11.140939,12.580367 v 7.263716 L 4.3894892,16.242185 Z M 12.828801,19.844083 v -7.257808 l 6.751451,-3.602743 v 7.257808 z m 5.635774,-4.485495 c 0.0059,0.280185 -0.216047,0.510579 -0.496232,0.516486 -0.280185,0.0059 -0.509734,-0.216046 -0.515642,-0.496231 -0.0051,-0.279342 0.216046,-0.510578 0.496231,-0.516487 0.279342,-0.0059 0.510579,0.216047 0.515643,0.496232 z m -2.287054,-1.415272 c -0.280185,0.0051 -0.502139,0.2363 -0.496232,0.515642 0.0051,0.280185 0.235458,0.502139 0.515643,0.496231 0.280185,-0.0059 0.501295,-0.236301 0.496231,-0.516486 -0.0059,-0.279341 -0.235457,-0.501295 -0.515642,-0.495387 z M 14.37826,13.019211 c -0.280185,0.0059 -0.502139,0.237145 -0.496232,0.516486 0.0051,0.280185 0.235457,0.501295 0.515642,0.496231 0.280185,-0.0059 0.501295,-0.2363 0.496231,-0.516485 -0.0059,-0.279341 -0.235456,-0.501295 -0.515641,-0.496232 z m -8.3566077,1.842302 c 0.2801851,0.0059 0.5012951,0.237144 0.4962315,0.516486 -0.00591,0.280185 -0.2354568,0.502139 -0.515642,0.496232 -0.2801851,-0.0051 -0.502139,-0.236301 -0.4962315,-0.516487 0.00422,-0.279341 0.2354567,-0.501295 0.515642,-0.496231 z m 1.2549258,-0.421966 c -0.00506,0.280185 0.2160463,0.510579 0.4962316,0.516486 0.2801851,0.0059 0.5105783,-0.21689 0.5156419,-0.496232 0.00591,-0.280185 -0.2160463,-0.510577 -0.4962316,-0.515641 -0.2801852,-0.0067 -0.5097344,0.215202 -0.5156419,0.495387 z m 1.7992614,-0.92326 c -0.00507,0.280185 0.2160463,0.510578 0.4962316,0.516485 0.2801852,0.0051 0.5105779,-0.216046 0.5156419,-0.496231 0.0059,-0.280185 -0.2160457,-0.510578 -0.4962315,-0.516486 -0.2801852,-0.0059 -0.5097345,0.216047 -0.515642,0.496232 z M 11.984871,8.6645257 c -0.279342,0 -0.506359,0.2270179 -0.506359,0.5063588 0,0.2793408 0.227017,0.5063588 0.506359,0.5063588 0.279341,0 0.506359,-0.227018 0.506359,-0.5063588 0,-0.2793409 -0.227018,-0.5063588 -0.506359,-0.5063588 z m 0,-1.877747 c -0.279342,0 -0.506359,0.2270176 -0.506359,0.5063588 0,0.2793413 0.227017,0.5063588 0.506359,0.5063588 0.279341,0 0.506359,-0.2270175 0.506359,-0.5063588 0,-0.2793412 -0.227018,-0.5063588 -0.506359,-0.5063588 z m 0,-1.7140244 c -0.279342,0 -0.506359,0.2270176 -0.506359,0.5063588 0,0.2793412 0.227017,0.5063588 0.506359,0.5063588 0.279341,0 0.506359,-0.2270176 0.506359,-0.5063588 0,-0.2793412 -0.227018,-0.5063588 -0.506359,-0.5063588 z"
id="path3696"
inkscape:connector-curvature="0"
style="fill:#dddddd;stroke:#dddddd;stroke-width:0.84393132" />
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.2 KiB

File diff suppressed because one or more lines are too long

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 14 KiB

Wyświetl plik

@ -1,62 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg3710"
sodipodi:docname="orthographic-camera.svg"
inkscape:version="0.92.1 r15371">
<metadata
id="metadata3716">
<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>
<defs
id="defs3714" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview3712"
showgrid="false"
inkscape:zoom="9.8333333"
inkscape:cx="12"
inkscape:cy="7.9322034"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg3710" />
<style
type="text/css"
id="style3706">
.st0{fill:#DDDDDD;stroke:#DDDDDD;}
</style>
<path
class="st0"
d="M 19.752542,8.6494916 V 17.769491 H 4.5525423 V 8.6494916 Z m 1.52,-1.52 H 3.0325423 V 19.289491 H 21.272542 Z M 9.8725425,11.689491 H 6.0725423 v -1.52 H 9.8725425 Z M 6.8325422,6.3694916 H 4.5525423 V 5.6094917 h 2.2799999 z m 8.3599998,5.3199994 c 0.83828,0 1.52,0.68172 1.52,1.52 0,0.83828 -0.68172,1.52 -1.52,1.52 -0.83828,0 -1.52,-0.68172 -1.52,-1.52 0,-0.83828 0.68172,-1.52 1.52,-1.52 z m 0,-1.52 c -1.67884,0 -3.04,1.361159 -3.04,3.04 0,1.67884 1.36116,3.04 3.04,3.04 1.67884,0 3.04,-1.36116 3.04,-3.04 0,-1.678841 -1.36116,-3.04 -3.04,-3.04 z"
id="path3708"
inkscape:connector-curvature="0"
style="fill:#dddddd;stroke:#dddddd;stroke-width:0.75999999" />
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.2 KiB

Wyświetl plik

@ -1,62 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg3722"
sodipodi:docname="perspective-camera.svg"
inkscape:version="0.92.1 r15371">
<metadata
id="metadata3728">
<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>
<defs
id="defs3726" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1001"
id="namedview3724"
showgrid="false"
inkscape:zoom="13.906433"
inkscape:cx="13.102073"
inkscape:cy="11.612785"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg3722" />
<style
type="text/css"
id="style3718">
.st0{fill:#DDDDDD;stroke:#DDDDDD}
</style>
<path
class="st0"
d="M 7.231152,7.0269974 H 5.1322117 V 6.3273506 H 7.231152 Z m 9.795055,6.2968216 c 0,1.157216 -0.941724,2.09894 -2.09894,2.09894 -1.157216,0 -2.098941,-0.941724 -2.098941,-2.09894 0,-1.157216 0.941725,-2.098941 2.098941,-2.098941 1.157216,0 2.09894,0.941725 2.09894,2.098941 z m -0.699647,0 c 0,-0.77241 -0.626883,-1.399294 -1.399293,-1.399294 -0.77241,0 -1.399294,0.626884 -1.399294,1.399294 0,0.77241 0.626884,1.399293 1.399294,1.399293 0.77241,0 1.399293,-0.626883 1.399293,-1.399293 z M 20.524441,7.7266441 V 18.920993 H 3.7329182 V 7.7266441 Z M 9.3300924,9.8255844 H 5.8318585 v 1.3992936 h 3.4982339 z m 9.0954086,3.4982346 c 0,-1.931725 -1.56581,-3.4982346 -3.498234,-3.4982346 -1.932425,0 -3.498233,1.5665096 -3.498233,3.4982346 0,1.931724 1.565808,3.498233 3.498233,3.498233 1.932424,0 3.498234,-1.566509 3.498234,-3.498233 z"
id="path3720"
inkscape:connector-curvature="0"
style="fill:#dddddd;stroke:#dddddd;stroke-width:0.69964677" />
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.5 KiB

Wyświetl plik

@ -1,73 +0,0 @@
<?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="point.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\point.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="15.836083"
inkscape:cx="4.7216612"
inkscape:cy="14.34516"
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
sodipodi:type="arc"
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:2.52600002000000010;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
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,5.8535197,-4.2877854)" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.2 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 975 B

Wyświetl plik

@ -1,145 +0,0 @@
<?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>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.5 KiB

Wyświetl plik

@ -1,185 +0,0 @@
<?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"
sodipodi:docname="remove.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
version="1.1"
id="svg2"
height="32"
width="32">
<sodipodi:namedview
id="base"
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.85882353"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="5.6164634"
inkscape:cy="17.901643"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="3840"
inkscape:window-height="2066"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
showguides="true"
inkscape:guide-bbox="true">
<inkscape:grid
type="xygrid"
id="grid3809"
empspacing="1"
visible="true"
enabled="true"
snapvisiblegridlinesonly="false"
spacingx="0.1"
spacingy="0.1"
originx="0"
originy="0" />
</sodipodi:namedview>
<defs
id="defs4">
<marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3819"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend"
style="overflow:visible">
<path
id="path3840"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible">
<path
id="path3822"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 50 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="100 : 50 : 1"
inkscape:persp3d-origin="50 : 33.333333 : 1"
id="perspective3001" />
<marker
inkscape:stockid="Arrow2Lendy"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lendy"
style="overflow:visible">
<path
id="path4637"
style="fill:#25f300;fill-rule:evenodd;stroke:#25f300;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2LendQ"
orient="auto"
refY="0"
refX="0"
id="Arrow2LendQ"
style="overflow:visible">
<path
id="path6071"
style="fill:#fa0000;fill-rule:evenodd;stroke:#fa0000;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2LendM"
orient="auto"
refY="0"
refX="0"
id="Arrow2LendM"
style="overflow:visible">
<path
id="path6312"
style="fill:#00f400;fill-rule:evenodd;stroke:#00f400;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2LendI"
orient="auto"
refY="0"
refX="0"
id="Arrow2LendI"
style="overflow:visible">
<path
id="path6561"
style="fill:#0000f6;fill-rule:evenodd;stroke:#0000f6;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<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 />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1020.3622)">
<g
aria-label="x"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.2911911px;line-height:1.25;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';letter-spacing:0px;word-spacing:0px;fill:#e73100;fill-opacity:1;stroke:none;stroke-width:1.03227961"
id="text4605">
<path
d="m 25.182024,1029.6544 -2.94361,2.7621 -3.588786,3.5687 6.572719,8.5888 q 0.504043,0.6452 0.504043,1.2702 0,0.7863 -0.604851,1.3912 -0.604852,0.6048 -1.370997,0.6048 -0.766145,0 -1.391158,-0.7459 -1.854878,-2.1573 -6.532396,-8.3067 l -3.931534,4.0525 q -1.189541,1.0686 -3.4678149,3.3267 -0.6451748,0.7258 -1.3911582,0.7258 -0.7661452,0 -1.3709966,-0.6048 -0.5846897,-0.6049 -0.5846897,-1.3912 0,-0.625 0.5040428,-1.2702 0.564528,-0.7459 1.7540692,-1.7944 1.3911583,-1.2298 1.834716,-1.6935 l 4.2944454,-4.4961 -2.641185,-3.8106 q -1.5927753,-2.2782 -2.7823164,-3.3266 -0.7661452,-0.6855 -0.7661452,-1.492 0,-0.8065 0.564528,-1.4315 0.5846897,-0.625 1.3306732,-0.625 1.1895414,0 3.5887854,3.1049 l 3.487976,4.8186 3.951696,-3.6291 q 2.45973,-2.3186 3.326683,-3.6291 0.645175,-0.9476 1.532291,-0.9476 0.786306,0 1.391158,0.5847 0.604851,0.5847 0.604851,1.3509 0,1.1088 -1.875039,3.0444 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';fill:#e73100;fill-opacity:1;stroke-width:1.03227961"
id="path872" />
</g>
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 7.1 KiB

Wyświetl plik

@ -1,185 +0,0 @@
<?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"
sodipodi:docname="reset_tools.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
version="1.1"
id="svg2"
height="32"
width="32">
<sodipodi:namedview
id="base"
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.85882353"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="5.6164634"
inkscape:cy="17.901643"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="3840"
inkscape:window-height="2066"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
showguides="true"
inkscape:guide-bbox="true">
<inkscape:grid
type="xygrid"
id="grid3809"
empspacing="1"
visible="true"
enabled="true"
snapvisiblegridlinesonly="false"
spacingx="0.1"
spacingy="0.1"
originx="0"
originy="0" />
</sodipodi:namedview>
<defs
id="defs4">
<marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path3819"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend"
style="overflow:visible">
<path
id="path3840"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible">
<path
id="path3822"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 50 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="100 : 50 : 1"
inkscape:persp3d-origin="50 : 33.333333 : 1"
id="perspective3001" />
<marker
inkscape:stockid="Arrow2Lendy"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lendy"
style="overflow:visible">
<path
id="path4637"
style="fill:#25f300;fill-rule:evenodd;stroke:#25f300;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2LendQ"
orient="auto"
refY="0"
refX="0"
id="Arrow2LendQ"
style="overflow:visible">
<path
id="path6071"
style="fill:#fa0000;fill-rule:evenodd;stroke:#fa0000;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2LendM"
orient="auto"
refY="0"
refX="0"
id="Arrow2LendM"
style="overflow:visible">
<path
id="path6312"
style="fill:#00f400;fill-rule:evenodd;stroke:#00f400;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2LendI"
orient="auto"
refY="0"
refX="0"
id="Arrow2LendI"
style="overflow:visible">
<path
id="path6561"
style="fill:#0000f6;fill-rule:evenodd;stroke:#0000f6;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<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="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1020.3622)">
<g
aria-label="x"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.2911911px;line-height:1.25;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';letter-spacing:0px;word-spacing:0px;fill:#e73100;fill-opacity:1;stroke:none;stroke-width:1.03227961"
id="text4605">
<path
d="m 25.182024,1029.6544 -2.94361,2.7621 -3.588786,3.5687 6.572719,8.5888 q 0.504043,0.6452 0.504043,1.2702 0,0.7863 -0.604851,1.3912 -0.604852,0.6048 -1.370997,0.6048 -0.766145,0 -1.391158,-0.7459 -1.854878,-2.1573 -6.532396,-8.3067 l -3.931534,4.0525 q -1.189541,1.0686 -3.4678149,3.3267 -0.6451748,0.7258 -1.3911582,0.7258 -0.7661452,0 -1.3709966,-0.6048 -0.5846897,-0.6049 -0.5846897,-1.3912 0,-0.625 0.5040428,-1.2702 0.564528,-0.7459 1.7540692,-1.7944 1.3911583,-1.2298 1.834716,-1.6935 l 4.2944454,-4.4961 -2.641185,-3.8106 q -1.5927753,-2.2782 -2.7823164,-3.3266 -0.7661452,-0.6855 -0.7661452,-1.492 0,-0.8065 0.564528,-1.4315 0.5846897,-0.625 1.3306732,-0.625 1.1895414,0 3.5887854,3.1049 l 3.487976,4.8186 3.951696,-3.6291 q 2.45973,-2.3186 3.326683,-3.6291 0.645175,-0.9476 1.532291,-0.9476 0.786306,0 1.391158,0.5847 0.604851,0.5847 0.604851,1.3509 0,1.1088 -1.875039,3.0444 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';fill:#e73100;fill-opacity:1;stroke-width:1.03227961"
id="path872" />
</g>
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 7.1 KiB

Wyświetl plik

@ -1,80 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="return_number.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="8.5295208"
inkscape:cy="8.9111752"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="3840"
inkscape:window-height="2066"
inkscape:window-x="-11"
inkscape:window-y="-11"
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
sodipodi:type="inkscape:offset"
inkscape:radius="2.0042622"
inkscape:original="M 13.140625 4.8984375 A 3.9059537 3.5997569 0 0 0 9.2363281 8.4980469 A 3.9059537 3.5997569 0 0 0 9.6523438 10.113281 A 5.258813 4.8465626 0 0 0 6.0996094 14.693359 A 5.258813 4.8465626 0 0 0 8.6347656 18.830078 A 4.4925343 4.1403543 0 0 0 8.1640625 20.666016 A 4.4925343 4.1403543 0 0 0 12.65625 24.804688 A 4.4925343 4.1403543 0 0 0 14.59375 24.396484 A 5.7091317 5.2615798 0 0 0 17.179688 24.974609 A 5.7091317 5.2615798 0 0 0 22.886719 19.712891 A 5.7091317 5.2615798 0 0 0 22.496094 17.796875 A 5.5563898 5.1208115 0 0 0 23.306641 15.148438 A 5.5563898 5.1208115 0 0 0 21 11 A 3.9059537 3.5997569 0 0 0 21.673828 8.9804688 A 3.9059537 3.5997569 0 0 0 17.767578 5.3808594 A 3.9059537 3.5997569 0 0 0 15.806641 5.8710938 A 3.9059537 3.5997569 0 0 0 13.140625 4.8984375 z "
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2.1540308;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path926"
d="m 13.140625,2.8945312 c -3.011423,0.00118 -5.908069,2.5808884 -5.9082031,5.6035157 7.67e-5,0.1896887 0.1200909,0.3564491 0.140625,0.5449219 -1.9250518,1.2489552 -3.275127,3.3697702 -3.2773438,5.6484372 a 2.0044626,2.0044626 0 0 0 0,0.0059 c 0.00379,1.845086 1.0200292,3.473819 2.3769531,4.738281 -0.093712,0.415544 -0.3114861,0.800478 -0.3125,1.226562 a 2.0044626,2.0044626 0 0 0 0,0.0039 c 0.00146,3.30556 3.1776679,6.142342 6.4960938,6.142578 a 2.0044626,2.0044626 0 0 0 0.0039,0 c 0.663558,-0.001 1.296799,-0.217349 1.931641,-0.408203 0.84031,0.287765 1.691563,0.575843 2.582031,0.578125 a 2.0044626,2.0044626 0 0 0 0.0059,0 c 1.977797,-6.71e-4 3.953672,-0.743836 5.394531,-2.072266 1.440383,-1.327992 2.315884,-3.245664 2.316406,-5.191406 v -0.002 c 2.13e-4,-0.560873 -0.198373,-1.094108 -0.333984,-1.638672 0.444193,-0.917708 0.750719,-1.902262 0.753906,-2.919922 a 2.0044626,2.0044626 0 0 0 0,-0.0078 c -0.0018,-1.670488 -0.824029,-3.173385 -1.931641,-4.435546 0.190816,-0.556398 0.29853,-1.1396639 0.298828,-1.7285161 a 2.0044626,2.0044626 0 0 0 0,-0.00195 C 23.6776,5.9568792 20.77996,3.3767425 17.767578,3.3769531 a 2.0044626,2.0044626 0 0 0 -0.0039,0 c -0.56353,9.217e-4 -1.080593,0.2540977 -1.623047,0.40625 C 15.218829,3.2588589 14.204563,2.8956177 13.142578,2.8945312 a 2.0044626,2.0044626 0 0 0 -0.002,0 z"
transform="matrix(0.78916203,0,0,0.78916203,3.5502551,1.8676931)" />
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.03449154px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 13.668881,22.657505 c 0,0 0.07958,3.498215 -0.471918,5.360026 C 12.614852,29.982705 11.849708,30 11.849708,30 h 5.940516 C 17.790224,30 17,29.581893 17,27.780412 v -4.503704"
id="path871"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccsc" />
<path
style="fill:#fffff8;fill-opacity:1;stroke:none;stroke-width:0.75555968;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 13.96927,6.0444096 c -1.635388,1.534e-4 -3.024016,1.4855226 -3.024158,2.992708 4.21e-4,0.4252932 0,0.8166016 0.816602,1.6332034 -1.674996,-0.8173444 -3.1412014,1.00357 -3.1319841,2.799824 0.00232,1.283348 0.952153,2.573635 2.3049851,3.027908 -0.806204,0.705082 -0.737956,1.017812 -0.739005,1.500629 3.71e-4,1.733206 1.524775,3.138189 3.405407,3.138631 0.508462,-8.17e-4 1.010269,-0.106582 1.468607,-0.309462 0.607091,0.286133 1.27894,0.436042 1.960812,0.437514 2.390131,-1.29e-4 4.327819,-1.78555 4.328453,-3.988315 -9.7e-5,-0.497049 0.201946,-0.890517 -0.990246,-1.507293 1.192192,-0.199826 1.305535,-1.245351 1.307711,-1.954137 -0.0014,-1.246333 -0.866806,-2.310722 -2.565325,-2.328697 0.816602,-0.816602 1.327227,-1.8018628 1.32748,-2.3479013 C 20.438467,7.6318365 19.112773,6.4100479 17.477386,6.409894 16.954677,6.4108078 16.441542,6.5392065 15.990105,6.7820476 15.442283,6.3090058 14.719978,6.0453524 13.96927,6.0444096 Z"
id="circle873"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccccccc" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 5.6 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.3 KiB

Wyświetl plik

@ -1,140 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="rgb.svg">
<defs
id="defs3799">
<mask
maskUnits="userSpaceOnUse"
id="mask969">
<circle
style="fill:#ecffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle971"
cx="485"
cy="-8"
r="280" />
</mask>
</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="10.367976"
inkscape:cy="25.891107"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="3840"
inkscape:window-height="2066"
inkscape:window-x="-11"
inkscape:window-y="-11"
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">
<circle
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.06921577;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path950"
cx="-367.8205"
cy="-610.33264"
r="7.4653921" />
<circle
cy="-620.84656"
cx="-360.49545"
id="circle952"
style="fill:#00ff24;fill-opacity:1;stroke:#000000;stroke-width:1.06921577;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
r="7.4653921" />
<circle
style="fill:#1700ff;fill-opacity:1;stroke:#000000;stroke-width:1.06921577;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle954"
cx="-353.92816"
cy="-610.26947"
r="7.4653921" />
<image
y="1"
x="1"
id="image1018"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAAsSAAALEgHS3X78AAAI
5UlEQVRYR81Xa4xdVRlde59z7mvunUc7M4VppwMtpUIRW6C1JakC8YFEIUYCGKM1xl/YhkgjxoBY
wGCCio+oAQV+AAGJiA/wj+ERQE0kNlZapO92Wmc6M525M/eee95n7+3adzpjH8jjl57Md8++Z87s
tb71vfYA/+NLvFd888CVjrp/fLE4f/lK9PU/Dagmdr5+kwj9YVz83Kj85Ur9XvZ81wR2Lb1nXdqU
1w+lz1zVrXYuMxpdQivZBnOlhpAzuMTZj2sKzyPvetrZNvz3d0PkHQnsGLpnragnt+sku6amfa9m
dkNiBmUcpU3BaAFxNiCHCNdFWy6gqzIRbul3urLwXvf2Q/94OyKzHrzF1XjtgNzRe+c3xFjwghOq
65RSHnAECXKk8JChg1YBb0ARsLrrlAEZB6hMUejgBumPvqTu7L3lPRPYdcUDpYMfe+QRNPS9SY5a
SCghMqSmB0rUIFzyNpI/HoTHtTDEcIAy1agYmFRAZVzLvEeaxg/VtgU/VS/eRgfOvM5QYOePtjuP
7+57YHe8eNN+0YERp4ZYlGBMkV4W6b8HpRyuCajot1ZtbDgkYSEKtBI50VTVhkNDLm7ebKYf+oEy
luip1xkEnvzu8G0ykJvqhAhEARktEEVEwqX0JWIWIXIBh8AuNZc5AfiudDIC03uqAHc2LIKEjEcS
sSFH/yvmN/2bTydwShLedf7vL/XHs1dknlcGdJ37aVSMQtkE6DQxujIfFbeB8IICxlf2YLKnyLCE
6A6HcWH+OlZV98BZqKA6yMCqYPODS0OFZA/JCW8GpcHLnU/ue3OOiOXavvb+9bh4+NqX75bKrWQi
R13WUDMJMpr1WqY51JpzcOBL78e/VvTheA7UwwzTQYa6HyP1fVwUbMdm+SguLu2HLhLVpX9WCYZF
K6pWzrpVMn4H4T43hzuvwLaVz65rjSV/Vkq75Mq/E/BMSgVoUYi+T50F9+urMe0INOoBgRPMhCkt
mV1HGSYTBx3pJO7r/jE+3rsdynMIPkuCW85+CDdCZfFa55qDb9gn8zmQN9KbjC64UyQeSQlfCjSZ
5fWsAH35Eiy8ex1khYIR0CjF+lfQOqdnOb9TDpWhlDf5fhGbj30ZO/Jz4FT4ngW3ycmQmE4B2aHK
Jpq+fk6BNoFbP/8Xbw/EVROORkrg2JEISTygCmG1iOVbL4TbIRE1/Da4IqDOCdy2jGtaZptABicL
MBqWcdfwtcgYBsHEnK8MWy1VA7Eo+Yjaua2tfpvA0X82B0alOLdJAloIKkBgSt3MDWqXdWHR6hoS
n/mQMNa0POU6jfidHSIOoZIA2q7DgOuISszgpdEh7AiXWI9nQ2Btrlw71QqT/WTBPIGR4aBPGlHz
paH0Ei02loD8miTTe1knI5chiWPGT/AeoVWfQOw3kAYtmk9ydt1AFvnIoybLzkejmeLVCfZnNss2
uA1DmcnIUDB+PaJr44p5AlffuHQdK07MeR4xBAFVCNjlCr0O4jBERO/Clo8oaCKj3HHYQlQfQzJN
4zNrigR03AK/tO1Qg+gEtfFvG4kYKtum4/U9axdzZdjOUQqAjE+07bR2bfMgj9FqUpFmg/dW2wI/
JBmSakwhihJEmcOQZCSmkOfMETYnxC73SGYVYHownWYHBvtVey0Z7zkCf3jqyGsFzzGxZ4SylPiC
pvCsKoyMtTA0HaAx00SDSdgkAd+aTyO4n3BGxDYJScAWA9uzti06cjHUV2fScb/QQlnpZ7sje3sK
PXntPIHB86qTk4dDPyvIzqSk2NYdDh2qSMnePBTg/AnWeb1xggSJELwZUZk4R8xplWQaCT3P6blg
LLUybcU3rj72nx5gNaZJSqsjMWPSl/fPE3jfsq6RZ6PgQCidNZIyJkUNe9RQjMn+KWDX7mkUxDim
6gRvUoUwRpAoROyOsX2f4CnBtY0bCUQtias/PIVL10yRDGW0pchzA2c5UONdOHvEwDcpz5bZHPj2
E+vzpdc980LakmtKDQPF1slpi5wTLmU7fXW4hFXFCcxMTxE8ZcwJTr3TE55nlFzRa6WpBEdxd01h
6817CUxSuQtpUfiOYRVZAqaj9LwrtrTzbn4W9BS9J8eD9JZWJzzJjfjJVmqnW46RUgdiDKJ7+gDL
L+BatD22wNZybcENK4Mh59C5466jWPmBGRxPJTpY1iWeH1w3bZ8VtHIDkffwLEkBTuTjbH5QvqFP
PPPbKPOug4ph+LLqImve80qOjMetUnoUle2vwBweYc0z5uwxNuEzeo+iwbK1Kb64dRIb17dQIHiN
pVxhGDsZhSrXDhVVefUx12t84URatgti/lp943Orx+vpq5nR1WyAflYkKv4eJP0L4Pd3QvUwzYsj
8CZ2Qg4fhpmpw3Nj9A7kuOCDMTasjXBup0Y1l23QLlrRHg9oy8tMUF2oKzO4vuDu2zcHapvj/DX2
xhNjAxd9Nk8z96N5mZXSkcNlI0kWlpFykKDoU4ZJ6MEW8kvYeDaOoXrFJJauD3H2IIcRd/LYRArM
H7sxnbbNE1V63uM6SFX3V0ve0T+ejHnGiejh72z4XqWcP5SfxxNQr0KjpxthD1OFuYACx5Mb0pMI
gvNAZIxpwuEVsnPGNNZuYHsQrUkLaTPMDU0Z0rx2f9mbePBkcLs+g8DGVYvMh35R3eydF/5cnyOR
DXLiFWk8GUEyy7yIlrJKOGrtYZTGVbvZhfzasjnBe8T7OJ+PC4m/Tdfu/1Xz1q+dDn5KEp7+S5uU
/Y8+urWp1B25lN3sNhCdPOKXR+25G6bKPtJxEEU3wRDLdqU9EXOTRRRrQ6dBgaFTqTtZ0F3fumHB
xM/eCvwtFZjPTgbv+KZN3x8oFK5gO3/KcUSE9BIYdkrTeYD5MMlAcybQ0+MU5xBH95KawYZ+W1tu
S6e1xwr54o1vB/62CpzOePCJx9e0UvGZZNl9V6rqrhVGy252Pp552w2Wqov6Db3O3k8vKL4Y5t2/
3rTw0K7/5vXJz9/xX7MzQ7NFrHr9tbOaGO8fKiwZsG3oWH5kdEmpY+JPK/ba/4veDe7/zzv/Bvo5
tFGae1+FAAAAAElFTkSuQmCC
"
preserveAspectRatio="none"
height="30"
width="30" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 6.2 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 2.4 KiB

Wyświetl plik

@ -1,108 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="right.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\area.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="11.313709"
inkscape:cx="25.12024"
inkscape:cy="14.265029"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="2560"
inkscape:window-height="1377"
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:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 12,5 v 15 l -6,7 6,-7 h 15"
id="path891"
inkscape:connector-curvature="0" />
<path
style="fill:#44a24a;fill-opacity:0;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 11.970172,4.985086 V 20.014914 H 27 V 4.985086 Z"
id="path843"
inkscape:connector-curvature="0" />
<path
style="fill:#e73100;fill-opacity:0;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 12,5 -6,7 v 15 l 6,-7 z"
id="path835"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:0.31372549;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 12,5 6,12 H 21 L 27,5 Z"
id="path879"
inkscape:connector-curvature="0" />
<path
style="fill:#e73100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 27,5 -6,7 v 15 l 6,-7 z"
id="path881"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path840"
d="M 5.985086,11.970171 V 27 H 21.014914 V 11.970171 Z"
style="fill:#ffffff;fill-opacity:0.31372549;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 6,27 V 12 l 6,-7 h 15 v 15 l -6,7 z"
id="path885"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 6,12 H 21 L 27,5"
id="path887"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 21,12 V 27"
id="path889"
inkscape:connector-curvature="0" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.1 KiB

Wyświetl plik

@ -1,136 +0,0 @@
<?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="rotate.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\profile.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3799">
<inkscape:path-effect
effect="spiro"
id="path-effect4170"
is_visible="true" />
<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-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="12.765891"
inkscape:cy="6.3277075"
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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5.5999999;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
d="M 16 4 C 9.3962723 4 4 9.3962722 4 16 L 8 16 C 8 11.558033 11.558033 8 16 8 C 20.441967 8 24 11.558033 24 16 C 24 20.441966 20.441967 24 16 24 L 16 28 C 22.603728 28 28 22.603728 28 16 C 28 9.3962721 22.603727 4 16 4 z "
id="path3805" />
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path3842"
d="M 10.899495,15.393399 5.949748,22 1,15.393399 z"
style="fill:#000000;fill-opacity:1;stroke:none" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.5 KiB

Wyświetl plik

@ -1,144 +0,0 @@
<?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="scale.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\profile.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3799">
<inkscape:path-effect
effect="spiro"
id="path-effect4170"
is_visible="true" />
<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-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="15.792052"
inkscape:cx="6.2829315"
inkscape:cy="15.496851"
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:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 8,24 24,8"
id="path3000"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="M 17,8.6363637 27,5 23.363638,15 z"
id="path3002"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path3010"
d="M 16.090909,22.363636 6.0909091,26 9.7272728,16 z"
style="fill:#000000;fill-opacity:1;stroke:none" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.2 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 939 B

Wyświetl plik

@ -1,123 +0,0 @@
<?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>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 3.9 KiB

Wyświetl plik

@ -1,154 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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="32mm"
height="32mm"
viewBox="0 0 32 32"
version="1.1"
id="svg8"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="sphere_distances.svg">
<defs
id="defs2">
<linearGradient
osb:paint="gradient"
id="linearGradient4510">
<stop
style="stop-color:#5d4ea2;stop-opacity:1"
offset="0"
id="stop4521" />
<stop
id="stop4532"
offset="0.1429722"
style="stop-color:#3287bd;stop-opacity:1" />
<stop
style="stop-color:#66c2a5;stop-opacity:1"
offset="0.23828688"
id="stop4534" />
<stop
id="stop4536"
offset="0.33047801"
style="stop-color:#abdda3;stop-opacity:1" />
<stop
style="stop-color:#e6f598;stop-opacity:1"
offset="0.42412987"
id="stop4538" />
<stop
id="stop4540"
offset="0.52621633"
style="stop-color:#ffffbe;stop-opacity:1" />
<stop
style="stop-color:#fedf8b;stop-opacity:1"
offset="0.64776045"
id="stop4542" />
<stop
id="stop4544"
offset="0.74160188"
style="stop-color:#fdae61;stop-opacity:1" />
<stop
style="stop-color:#f46d42;stop-opacity:1"
offset="0.83177513"
id="stop4550" />
<stop
style="stop-color:#d53d4e;stop-opacity:1"
offset="0.90847957"
id="stop4548" />
<stop
style="stop-color:#9d0041;stop-opacity:1"
offset="1"
id="stop4523" />
</linearGradient>
<linearGradient
id="linearGradient4510-9"
inkscape:collect="always"
osb:paint="gradient">
<stop
id="stop4514"
offset="0"
style="stop-color:#000000;stop-opacity:0.6776557;" />
<stop
id="stop4516"
offset="1"
style="stop-color:#fffffc;stop-opacity:0;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4510"
id="radialGradient4530"
cx="62.541069"
cy="88.262497"
fx="62.541069"
fy="88.262497"
r="29.529253"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.42652322,0,0,0.42652323,-10.675217,243.35399)" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4510-9"
id="radialGradient4558"
cx="19.989243"
cy="291.82883"
fx="19.989243"
fy="291.82883"
r="14.000001"
gradientTransform="matrix(3.9199479,-3.3776121,1.3849569,1.6073362,-460.574,-106.66048)"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="-22.546915"
inkscape:cy="20.903521"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<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(1.5497208e-6,-265)">
<ellipse
style="fill:url(#radialGradient4530);fill-opacity:1;stroke:#000000;stroke-width:3.14872789;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
id="path4504"
cx="16"
cy="281"
rx="12.425637"
ry="12.425636" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.6 KiB

Wyświetl plik

@ -1,156 +0,0 @@
<?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="target.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\profile.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3799">
<inkscape:path-effect
effect="spiro"
id="path-effect4170"
is_visible="true" />
<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-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="15.792052"
inkscape:cx="15.229286"
inkscape:cy="15.509057"
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
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3000"
sodipodi:cx="16"
sodipodi:cy="16"
sodipodi:rx="9"
sodipodi:ry="9"
d="M 25,16 A 9,9 0 1 1 7,16 9,9 0 1 1 25,16 z"
transform="matrix(0.55555556,0,0,0.55555556,7.1111111,7.111111)" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3770"
sodipodi:cx="15"
sodipodi:cy="16"
sodipodi:rx="14"
sodipodi:ry="14"
d="M 29,16 A 14,14 0 1 1 1,16 14,14 0 1 1 29,16 z"
transform="translate(1,0)" />
<path
transform="matrix(0.64285714,0,0,0.64285714,6.3571429,5.7142858)"
d="M 29,16 A 14,14 0 1 1 1,16 14,14 0 1 1 29,16 z"
sodipodi:ry="14"
sodipodi:rx="14"
sodipodi:cy="16"
sodipodi:cx="15"
id="path3772"
style="fill:none;stroke:#000000;stroke-width:3.11111116;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.6 KiB

Wyświetl plik

@ -1,108 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="top.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\area.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="8"
inkscape:cx="-8.2536547"
inkscape:cy="7.4850518"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="2560"
inkscape:window-height="1377"
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:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 12,5 v 15 l -6,7 6,-7 h 15"
id="path891"
inkscape:connector-curvature="0" />
<path
style="fill:#44a24a;fill-opacity:0;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 11.970172,4.985086 V 20.014914 H 27 V 4.985086 Z"
id="path843"
inkscape:connector-curvature="0" />
<path
style="fill:#e73100;fill-opacity:0;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 12,5 -6,7 v 15 l 6,-7 z"
id="path835"
inkscape:connector-curvature="0" />
<path
style="fill:#2669e7;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 12,5 6,12 H 21 L 27,5 Z"
id="path879"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:0.3137255;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 27,5 -6,7 v 15 l 6,-7 z"
id="path881"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path840"
d="M 5.985086,11.970171 V 27 H 21.014914 V 11.970171 Z"
style="fill:#ffffff;fill-opacity:0.31372549;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 6,27 V 12 l 6,-7 h 15 v 15 l -6,7 z"
id="path885"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 6,12 H 21 L 27,5"
id="path887"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 21,12 V 27"
id="path889"
inkscape:connector-curvature="0" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.1 KiB

Wyświetl plik

@ -1,148 +0,0 @@
<?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="translate.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\icons\profile.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3799">
<inkscape:path-effect
effect="spiro"
id="path-effect4170"
is_visible="true" />
<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-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="15.792052"
inkscape:cx="15.491423"
inkscape:cy="14.823242"
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:none;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,7"
id="path3000"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="M 17,8 28,4 24,15 z"
id="path3002"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3774"
sodipodi:cx="6"
sodipodi:cy="26"
sodipodi:rx="4"
sodipodi:ry="4"
d="m 10,26 a 4,4 0 1 1 -8,0 4,4 0 1 1 8,0 z"
transform="translate(3,-3)" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 4.3 KiB

Wyświetl plik

@ -1,111 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="triangle.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="6.2806856"
inkscape:cy="9.735117"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="3840"
inkscape:window-height="2066"
inkscape:window-x="-11"
inkscape:window-y="-11"
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:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M -33,23 -19,9"
id="path3829"
inkscape:connector-curvature="0" />
<circle
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:0.66666669;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807-4"
cx="-18.499998"
cy="8.5"
r="3.6666667" />
<circle
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:0.66666669;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3807"
cx="-35.5"
cy="25.5"
r="3.6666667" />
<circle
cy="24.062943"
cx="6.5721059"
id="circle819"
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
r="3.5" />
<circle
r="3.5"
style="fill:#ffffff;fill-opacity:0.98449612;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle825"
cx="25.358316"
cy="24.062943" />
<circle
cy="8.276"
cx="16"
id="circle827"
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
r="3.5" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 14,11 8,21"
id="path829"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path831"
d="M 22,24 H 10"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" />
<path
inkscape:connector-curvature="0"
id="path835"
d="m 18,11 6,10"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 3.8 KiB

Wyświetl plik

@ -1,150 +0,0 @@
<?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.92.2 (5c3e80d, 2017-08-06)"
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="31.672167"
inkscape:cx="14.746608"
inkscape:cy="16.700474"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="2560"
inkscape:window-height="1377"
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:#e73100;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:#e73100;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:#e73100;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>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 5.7 KiB

Wyświetl plik

@ -1,325 +0,0 @@
<?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>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 17 KiB

Wyświetl plik

@ -1,7 +0,0 @@
{
"simple_dev": "ok_from_common_dev",
"test": {
"simple_dev": "ok_from_common_dev",
"fallback_dev": "ok_from_common_dev-fallback"
}
}

Wyświetl plik

@ -1,6 +0,0 @@
{
"simple_dev": "ok_from_special_dev",
"test": {
"simple_dev": "ok_from_special_dev"
}
}

Wyświetl plik

@ -1,6 +0,0 @@
{
"simple_dev": "ok_from_dev",
"test": {
"simple_dev": "ok_from_dev"
}
}

Wyświetl plik

@ -1,7 +0,0 @@
{
"simple_en": "ok_from_common_en",
"test": {
"simple_en": "ok_from_common_en",
"fallback_en": "ok_from_common_en-fallback"
}
}

Wyświetl plik

@ -1,6 +0,0 @@
{
"simple_en": "ok_from_special_en",
"test": {
"simple_en": "ok_from_special_en"
}
}

Wyświetl plik

@ -1,98 +0,0 @@
{
"tb": {
"navigation_opt": "Navigation",
"rendering_opt": "Appearance",
"tools_opt": "Tools",
"measurments_opt": "Measurements",
"clipping_opt": "Clipping",
"annotations_opt": "Annotations",
"materials_opt": "Materials",
"scene_opt": "Scene",
"classification_filter_opt": "Classification filter",
"filters_opt": "Filters",
"parameters_opt": "Other settings",
"about_opt": "About"
},
"tt": {
"angle_measurement": "Angle measurement",
"point_measurement": "Point measurement",
"distance_measurement": "Distance measurement",
"height_measurement": "Height measurement",
"area_measurement": "Area measurement",
"volume_measurement": "Volume measurement",
"height_profile": "Height profile",
"clip_volume": "Volume clip",
"clip_polygon": "Polygon clip",
"screen_clip_box": "Draw a selection box. Requires you to be in orthographic camera mode!",
"clip_plane_x": "Clip plane on x axis",
"clip_plane_y": "Clip plane on y axis",
"clip_plane_z": "Clip plane on z axis",
"remove_all_measurement": "Remove all measurements",
"left_view_control": "Left view",
"right_view_control": "Righ view",
"front_view_control": "Front view",
"back_view_control": "Back view",
"top_view_control": "Top view",
"bottom_view_control": "Bottom view",
"focus_control": "Full extent",
"orbit_control": "Orbit control",
"flight_control": "Fly control",
"heli_control": "Helicopter control",
"earth_control": "Earth control",
"perspective_camera_control": "Perspective camera",
"orthographic_camera_control": "Orthographic camera",
"navigation_cube_control": "Navigation cube",
"remove_all_clipping_volumes": "Remove all clipping volumes"
},
"appearance": {
"nb_max_pts": "Point budget",
"point_size": "Point size",
"point_opacity": "Opacity",
"field_view": "Field of view",
"point_size_type": "Point sizing",
"point_material": "Materials",
"elevation_range": "Elevation range",
"point_quality": "Quality",
"point_shape": "Shape",
"edl_radius": "Radius",
"edl_strength": "Strength",
"edl_enable": "Enable",
"min_node_size": "Min node size",
"clip_mode": "Clip mode",
"move_speed": "Speed",
"skybox": "Sky",
"bottom_lock": "Keep above ground",
"box": "Box",
"length_unit": "Length unit",
"freeze": "Lock view",
"language": "Language"
},
"measurements": {
"clip": "clip",
"show": "show volume"
},
"annotations": {
"show3D": "show in 3D",
"showMap": "show on map"
},
"profile": {
"nb_points": "Number of Points",
"title": "Height profile",
"save_las": "Save LAS(3D)",
"save_ortho": "Save CSV(2D)"
},
"scene": {
"camera_position": "Camera Position",
"camera_target": "Camera Target"
},
"filters": {
"return_number": "Return Number",
"number_of_returns": "Number of Returns",
"gps_min": "min",
"gps_max": "max",
"gps_time": "GPS Time"
},
"settings": {
"language": "Language"
}
}

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 28 KiB

Wyświetl plik

@ -1,91 +0,0 @@
<?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="248.03149"
height="63.779526"
id="svg3057"
version="1.1"
inkscape:version="0.48.5 r10040"
sodipodi:docname="logo.svg"
inkscape:export-filename="D:\dev\workspaces\potree\develop\resources\logo.png"
inkscape:export-xdpi="450.91"
inkscape:export-ydpi="450.91">
<defs
id="defs3059" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="215.03645"
inkscape:cy="-3.9260948"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1018"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
units="cm" />
<metadata
id="metadata3062">
<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,-988.58135)">
<text
xml:space="preserve"
style="font-size:11.27208328px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
x="45.69685"
y="1045.5303"
id="text3839"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3841"
x="45.69685"
y="1045.5303"
style="font-weight:bold;-inkscape-font-specification:Arial Bold">WebGL point cloud visualization </tspan></text>
<text
sodipodi:linespacing="125%"
id="text3914"
y="1028.0765"
x="42.857159"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;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;stroke-dashoffset:0;font-family:Sans"
xml:space="preserve"><tspan
style="font-weight:bold;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;stroke-dashoffset:0;font-family:Arial;-inkscape-font-specification:Arial Bold"
y="1028.0765"
x="42.857159"
id="tspan3916"
sodipodi:role="line">Potree.org</tspan></text>
<rect
style="fill:#000000;fill-opacity:1;stroke:none"
id="rect3950"
width="173.13705"
height="1.9996326"
x="45.786343"
y="1032.6077" />
</g>
</svg>

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 3.4 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 6.6 KiB

Wyświetl plik

@ -1,23 +0,0 @@
brick_pavement.jpg:
http://www.wildtextures.com/terms-of-use/
==============================
All textures at wildtextures.com are completely free for both, personal and commercial use, however you cant:
host textures for download on any other website or server,
direct link to texture file from any other website ( however you can link to texture page ),
sell them as a stock materials,
==============================

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 95 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 1.2 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 1.0 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 510 B

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 421 B

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 1.2 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 840 B

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 37 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 6.3 KiB

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 41 KiB

Some files were not shown because too many files have changed in this diff Show More