Merge branch 'master' into addImportExportRecentFilesPrefs
@@ -87,6 +87,24 @@ The pages below contain up-to-date build instructions:
|
||||
- [Cygwin](https://wiki.freecadweb.org/Compile_on_Cygwin)
|
||||
- [MinGW](https://wiki.freecadweb.org/Compile_on_MinGW)
|
||||
|
||||
|
||||
Reporting Issues
|
||||
---------
|
||||
|
||||
To report an issue please:
|
||||
- First post to forum to verify the issue;
|
||||
- Link forum thread to bug tracker ticket and vice-a-versa;
|
||||
- Use the most updated stable or development versions of FreeCAD;
|
||||
- Post version info from eg. `Help > About FreeCAD > Copy to clipboard`;
|
||||
- Post a Step-By-Step explanation on how to recreate the issue;
|
||||
- Upload an example file to demonstrate problem.
|
||||
|
||||
For more detail see:
|
||||
- [Wiki Page about the Bug Tracker](https://wiki.freecadweb.org/Tracker)
|
||||
- [Bug Tracker](https://tracker.freecadweb.org)
|
||||
- [Help Forum](http://forum.freecadweb.org/viewforum.php?f=3)
|
||||
|
||||
|
||||
Usage & Getting help
|
||||
--------------------
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ macro(PrintFinalReport)
|
||||
message(STATUS "pybind11: not enabled")
|
||||
endif(DEFINED pybind11_FOUND)
|
||||
|
||||
message(STATUS "Boost: ${Boost_VERSION}")
|
||||
message(STATUS "Boost: ${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION}.${Boost_SUBMINOR_VERSION} (${Boost_VERSION})")
|
||||
|
||||
message(STATUS "XercesC: [${XercesC_LIBRARIES}] [${XercesC_INCLUDE_DIRS}]")
|
||||
|
||||
|
||||
@@ -53,7 +53,7 @@ namespace SMESH{
|
||||
class SMESHCONTROLS_EXPORT Functor
|
||||
{
|
||||
public:
|
||||
~Functor(){}
|
||||
virtual ~Functor(){}
|
||||
virtual void SetMesh( const SMDS_Mesh* theMesh ) = 0;
|
||||
virtual SMDSAbs_ElementType GetType() const = 0;
|
||||
};
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#ifndef APP_APPLICATION_H
|
||||
#define APP_APPLICATION_H
|
||||
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
|
||||
#include <vector>
|
||||
#include <deque>
|
||||
|
||||
@@ -104,7 +104,7 @@ PyMethodDef Application::Methods[] = {
|
||||
"loadFile(string=filename,[string=module]) -> None\n\n"
|
||||
"Loads an arbitrary file by delegating to the given Python module:\n"
|
||||
"* If no module is given it will be determined by the file extension.\n"
|
||||
"* If more than one module can load a file the first one one will be taken.\n"
|
||||
"* If more than one module can load a file the first one will be taken.\n"
|
||||
"* If no module exists to load the file an exception will be raised."},
|
||||
{"open", reinterpret_cast<PyCFunction>(reinterpret_cast<void (*) (void)>( Application::sOpenDocument )), METH_VARARGS|METH_KEYWORDS,
|
||||
"See openDocument(string)"},
|
||||
|
||||
@@ -70,7 +70,7 @@ recompute path. Also, it enables more complicated dependencies beyond trees.
|
||||
|
||||
#include <boost/algorithm/string.hpp>
|
||||
|
||||
#include <boost/graph/adjacency_list.hpp>
|
||||
#include <boost_graph_adjacency_list.hpp>
|
||||
#include <boost/graph/subgraph.hpp>
|
||||
#include <boost/graph/graphviz.hpp>
|
||||
#include <boost/graph/strong_components.hpp>
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
#include <stack>
|
||||
#include <functional>
|
||||
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
|
||||
namespace Base {
|
||||
class Writer;
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
#include <unordered_map>
|
||||
#include <bitset>
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
|
||||
namespace App
|
||||
{
|
||||
@@ -407,7 +407,7 @@ public:
|
||||
*
|
||||
* @param newLabel: input as the new label, which can be modified by object itself
|
||||
*
|
||||
* This function is is called before onBeforeChange()
|
||||
* This function is called before onBeforeChange()
|
||||
*/
|
||||
virtual void onBeforeChangeLabel(std::string &newLabel) {(void)newLabel;}
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
#define APP_DOCUMENTOBSERVER_H
|
||||
|
||||
#include <Base/BaseClass.h>
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
#include <set>
|
||||
#include <memory>
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
#include <CXX/Objects.hxx>
|
||||
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
#include <boost/bind/bind.hpp>
|
||||
#include <string>
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#ifndef APP_GROUPEXTENSION_H
|
||||
#define APP_GROUPEXTENSION_H
|
||||
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
#include "FeaturePython.h"
|
||||
#include "DocumentObject.h"
|
||||
#include "PropertyLinks.h"
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#define APP_LINK_H
|
||||
|
||||
#include <unordered_set>
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
#include <boost/preprocessor/facilities/expand.hpp>
|
||||
#include <boost/preprocessor/cat.hpp>
|
||||
#include <boost/preprocessor/seq/for_each.hpp>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#ifndef APP_MERGEDOCUMENTS_H
|
||||
#define APP_MERGEDOCUMENTS_H
|
||||
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
#include <Base/Persistence.h>
|
||||
|
||||
namespace zipios {
|
||||
|
||||
@@ -80,13 +80,13 @@
|
||||
#include <iterator>
|
||||
|
||||
// Boost
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
#include <boost/bind/bind.hpp>
|
||||
#include <boost/regex.hpp>
|
||||
|
||||
#include <boost/tuple/tuple.hpp>
|
||||
#include <boost/utility.hpp>
|
||||
#include <boost/graph/adjacency_list.hpp>
|
||||
#include <boost_graph_adjacency_list.hpp>
|
||||
|
||||
#include <boost/program_options.hpp>
|
||||
//namespace po = boost::program_options;
|
||||
|
||||
@@ -36,7 +36,6 @@
|
||||
#include <CXX/Objects.hxx>
|
||||
#include <boost/bind/bind.hpp>
|
||||
#include <boost/graph/graph_traits.hpp>
|
||||
#include <boost/graph/adjacency_list.hpp>
|
||||
|
||||
|
||||
using namespace App;
|
||||
|
||||
@@ -25,8 +25,8 @@
|
||||
|
||||
#include <boost/unordered/unordered_map.hpp>
|
||||
#include <boost/function.hpp>
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost/graph/adjacency_list.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
#include <boost_graph_adjacency_list.hpp>
|
||||
#include <boost/graph/topological_sort.hpp>
|
||||
#include <App/PropertyLinks.h>
|
||||
#include <App/Expression.h>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
#define APP_PROPERTYLINKS_H
|
||||
|
||||
// Std. configurations
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
#include <string>
|
||||
#include <fstream>
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
|
||||
#include "DocumentObject.h"
|
||||
#include "TextDocument.h"
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
|
||||
#include <string>
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
|
||||
#include "DocumentObject.h"
|
||||
#include "PropertyStandard.h"
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
#include <QString>
|
||||
#include <QObject>
|
||||
|
||||
|
||||
@@ -1975,7 +1975,7 @@ namespace Py
|
||||
}
|
||||
|
||||
Char( const unicodestring &v )
|
||||
: Object( PyUnicode_FromUnicode( const_cast<Py_UNICODE*>( v.data() ),1 ), true )
|
||||
: Object( PyUnicode_FromKindAndData( PyUnicode_4BYTE_KIND, const_cast<Py_UNICODE*>( v.data() ),1 ), true )
|
||||
{
|
||||
validate();
|
||||
}
|
||||
@@ -1995,20 +1995,20 @@ namespace Py
|
||||
|
||||
Char &operator=( const unicodestring &v )
|
||||
{
|
||||
set( PyUnicode_FromUnicode( const_cast<Py_UNICODE*>( v.data() ), 1 ), true );
|
||||
set( PyUnicode_FromKindAndData( PyUnicode_4BYTE_KIND, const_cast<Py_UNICODE*>( v.data() ), 1 ), true );
|
||||
return *this;
|
||||
}
|
||||
|
||||
Char &operator=( int v_ )
|
||||
{
|
||||
Py_UNICODE v( v_ );
|
||||
set( PyUnicode_FromUnicode( &v, 1 ), true );
|
||||
set( PyUnicode_FromKindAndData( PyUnicode_4BYTE_KIND, &v, 1 ), true );
|
||||
return *this;
|
||||
}
|
||||
|
||||
Char &operator=( Py_UNICODE v )
|
||||
{
|
||||
set( PyUnicode_FromUnicode( &v, 1 ), true );
|
||||
set( PyUnicode_FromKindAndData( PyUnicode_4BYTE_KIND, &v, 1 ), true );
|
||||
return *this;
|
||||
}
|
||||
|
||||
@@ -2102,7 +2102,7 @@ namespace Py
|
||||
}
|
||||
|
||||
String( const Py_UNICODE *s, int length )
|
||||
: SeqBase<Char>( PyUnicode_FromUnicode( s, length ), true )
|
||||
: SeqBase<Char>( PyUnicode_FromKindAndData( PyUnicode_4BYTE_KIND, s, length ), true )
|
||||
{
|
||||
validate();
|
||||
}
|
||||
@@ -2122,7 +2122,7 @@ namespace Py
|
||||
|
||||
String &operator=( const unicodestring &v )
|
||||
{
|
||||
set( PyUnicode_FromUnicode( const_cast<Py_UNICODE *>( v.data() ), v.length() ), true );
|
||||
set( PyUnicode_FromKindAndData( PyUnicode_4BYTE_KIND, const_cast<Py_UNICODE *>( v.data() ), v.length() ), true );
|
||||
return *this;
|
||||
}
|
||||
|
||||
@@ -2135,13 +2135,20 @@ namespace Py
|
||||
// Queries
|
||||
virtual size_type size() const
|
||||
{
|
||||
return PyUnicode_GET_SIZE( ptr() );
|
||||
return PyUnicode_GetLength( ptr() );
|
||||
}
|
||||
|
||||
#if PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION < 9
|
||||
const Py_UNICODE *unicode_data() const
|
||||
{
|
||||
return PyUnicode_AS_UNICODE( ptr() );
|
||||
}
|
||||
|
||||
unicodestring as_unicodestring() const
|
||||
{
|
||||
return unicodestring( PyUnicode_AS_UNICODE( ptr() ), PyUnicode_GET_SIZE( ptr() ) );
|
||||
return unicodestring( unicode_data(), PyUnicode_GetLength( ptr() ) );
|
||||
}
|
||||
#endif
|
||||
|
||||
operator std::string() const
|
||||
{
|
||||
@@ -2154,11 +2161,6 @@ namespace Py
|
||||
Bytes b( encode( encoding, error ) );
|
||||
return b.as_std_string();
|
||||
}
|
||||
|
||||
const Py_UNICODE *unicode_data() const
|
||||
{
|
||||
return PyUnicode_AS_UNICODE( ptr() );
|
||||
}
|
||||
};
|
||||
|
||||
// ==================================================
|
||||
|
||||
@@ -65,7 +65,8 @@ if(DOXYGEN_FOUND)
|
||||
${CMAKE_SOURCE_DIR}/src/Mod
|
||||
${CMAKE_BINARY_DIR}/src/Mod
|
||||
#${CMAKE_SOURCE_DIR}/src/Main #nothing to document there ATM...
|
||||
${CMAKE_SOURCE_DIR}/src/Doc
|
||||
${CMAKE_SOURCE_DIR}/src/Doc
|
||||
${CMAKE_BINARY_DIR}/src/Doc
|
||||
)
|
||||
STRING(REGEX REPLACE ";" " " DOXYGEN_INPUT_LIST "${DOXYGEN_SOURCE_DIR}")
|
||||
|
||||
|
||||
@@ -22,8 +22,6 @@
|
||||
|
||||
/**
|
||||
|
||||
|
||||
|
||||
\mainpage FreeCAD source documentation
|
||||
|
||||
This is the source documentation of <a href=https://www.freecadweb.org>FreeCAD</a>.
|
||||
@@ -50,8 +48,6 @@
|
||||
the source code documentation</a>. You can also browse through the <a href=https://github.com/FreeCAD/FreeCAD>source
|
||||
code on github</a>.
|
||||
|
||||
|
||||
|
||||
\if DEV_DOCUMENTATION
|
||||
|
||||
\mainpage FreeCAD source documentation
|
||||
@@ -78,7 +74,9 @@
|
||||
|
||||
\endif
|
||||
|
||||
<small>
|
||||
@GIT_REVISION_INFO@
|
||||
</small>
|
||||
*/
|
||||
|
||||
/** \namespace std
|
||||
|
||||
@@ -16,11 +16,17 @@
|
||||
</div>
|
||||
</div>
|
||||
<!--BEGIN !GENERATE_TREEVIEW-->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
$generatedby  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="$relpath^doxygen.png" alt="doxygen"/>
|
||||
</a> $doxygenversion
|
||||
</small></address>
|
||||
<address class="footer">
|
||||
<small>
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/">
|
||||
<img alt="Creative Commons Licence" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/80x15.png" />
|
||||
</a>  
|
||||
$generatedby  
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="$relpath^doxygen.png" alt="doxygen"/>
|
||||
</a> $doxygenversion
|
||||
</small>
|
||||
</address>
|
||||
<!--END !GENERATE_TREEVIEW-->
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -20,16 +20,21 @@
|
||||
$mathjax
|
||||
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
|
||||
$extrastylesheet
|
||||
<link href='//fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css'>
|
||||
<!--<link href='//fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css'>-->
|
||||
<link rel="stylesheet" href="$relpath^freecad.css">
|
||||
<script type="text/javascript" src="$relpath^doxy-boot.js"></script>
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<link rel="shortcut icon" href="https://freecadweb.org/images/favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
<ul class="navbar" role="navigation">
|
||||
<li>
|
||||
<a href="https://freecadweb.org" title="FreeCAD">
|
||||
<img src="https://freecadweb.org/images/freecad-logo.png">
|
||||
</a>
|
||||
</li>
|
||||
<li><a href="$relpath^index.html" title="Index">Index</a></li>
|
||||
<li><a href="$relpath^modules.html" title="Modules list">Modules Hierarchy</a></li>
|
||||
<li><a href="$relpath^annotated.html" title="Annotated list">Alphabetical list</a></li>
|
||||
<li><a href="$relpath^modules.html" title="Modules list">Modules</a></li>
|
||||
<li><a href="$relpath^annotated.html" title="Annotated list">Classes</a></li>
|
||||
</ul>
|
||||
|
||||
<div id="top" class="maincontents"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#include "PreCompiled.h"
|
||||
|
||||
#ifndef _PreComp_
|
||||
# include <boost/signals2.hpp>
|
||||
# include <boost_signals2.hpp>
|
||||
# include <boost_bind_bind.hpp>
|
||||
# include <QAbstractItemView>
|
||||
# include <QActionEvent>
|
||||
@@ -252,8 +252,10 @@ void ActionGroup::addTo(QWidget *w)
|
||||
// and adding this action to the widget doesn't work.
|
||||
if (_dropDown) {
|
||||
if (w->inherits("QMenu")) {
|
||||
QMenu* menu = qobject_cast<QMenu*>(w);
|
||||
menu = menu->addMenu(_action->text());
|
||||
QMenu *menu = new QMenu(w);
|
||||
QAction* action = qobject_cast<QMenu*>(w)->addMenu(menu);
|
||||
action->setMenuRole(_action->menuRole());
|
||||
menu->setTitle(_action->text());
|
||||
menu->addActions(_group->actions());
|
||||
}
|
||||
else if (w->inherits("QToolBar")) {
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
#ifndef _PreComp_
|
||||
# include "InventorAll.h"
|
||||
# include <boost/signals2.hpp>
|
||||
# include <boost_signals2.hpp>
|
||||
# include <boost_bind_bind.hpp>
|
||||
# include <sstream>
|
||||
# include <stdexcept>
|
||||
|
||||
@@ -214,7 +214,7 @@ PyMethodDef Application::Methods[] = {
|
||||
"loadFile(string=filename,[string=module]) -> None\n\n"
|
||||
"Loads an arbitrary file by delegating to the given Python module:\n"
|
||||
"* If no module is given it will be determined by the file extension.\n"
|
||||
"* If more than one module can load a file the first one one will be taken.\n"
|
||||
"* If more than one module can load a file the first one will be taken.\n"
|
||||
"* If no module exists to load the file an exception will be raised."},
|
||||
|
||||
{"coinRemoveAllChildren", (PyCFunction) Application::sCoinRemoveAllChildren, METH_VARARGS,
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
#include <map>
|
||||
#include <set>
|
||||
#include <string>
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
|
||||
namespace App {
|
||||
class Document;
|
||||
|
||||
@@ -995,6 +995,7 @@ Command *GroupCommand::addCommand(const char *name) {
|
||||
|
||||
Action * GroupCommand::createAction(void) {
|
||||
ActionGroup* pcAction = new ActionGroup(this, getMainWindow());
|
||||
pcAction->setMenuRole(QAction::NoRole);
|
||||
pcAction->setDropDownMenu(true);
|
||||
pcAction->setExclusive(false);
|
||||
pcAction->setCheckable(true);
|
||||
|
||||
@@ -75,6 +75,7 @@ StdCmdRandomColor::StdCmdRandomColor()
|
||||
sToolTipText = QT_TR_NOOP("Random color");
|
||||
sWhatsThis = "Std_RandomColor";
|
||||
sStatusTip = QT_TR_NOOP("Random color");
|
||||
sPixmap = "Std_RandomColor";
|
||||
}
|
||||
|
||||
void StdCmdRandomColor::activated(int iMsg)
|
||||
|
||||
@@ -377,6 +377,7 @@ Action * StdCmdDlgPreferences::createAction(void)
|
||||
{
|
||||
Action *pcAction = Command::createAction();
|
||||
pcAction->setMenuRole(QAction::PreferencesRole);
|
||||
|
||||
return pcAction;
|
||||
}
|
||||
|
||||
@@ -513,6 +514,33 @@ void StdCmdOnlineHelpWebsite::activated(int iMsg)
|
||||
OpenURLInBrowser(url.c_str());
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
// Std_FreeCADDonation
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD(StdCmdFreeCADDonation)
|
||||
|
||||
StdCmdFreeCADDonation::StdCmdFreeCADDonation()
|
||||
:Command("Std_FreeCADDonation")
|
||||
{
|
||||
sGroup = QT_TR_NOOP("Help");
|
||||
sMenuText = QT_TR_NOOP("Donate");
|
||||
sToolTipText = QT_TR_NOOP("Donate to FreeCAD development");
|
||||
sWhatsThis = "Std_FreeCADDonation";
|
||||
sStatusTip = sToolTipText;
|
||||
sPixmap = "internet-web-browser";
|
||||
eType = 0;
|
||||
}
|
||||
|
||||
void StdCmdFreeCADDonation::activated(int iMsg)
|
||||
{
|
||||
Q_UNUSED(iMsg);
|
||||
ParameterGrp::handle hURLGrp = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/Websites");
|
||||
std::string url = hURLGrp->GetASCII("DonatePage", "https://wiki.freecadweb.org/Donate");
|
||||
hURLGrp->SetASCII("DonatePage", url.c_str());
|
||||
OpenURLInBrowser(url.c_str());
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
// Std_FreeCADWebsite
|
||||
//===========================================================================
|
||||
@@ -813,6 +841,7 @@ void CreateStdCommands(void)
|
||||
rcCmdMgr.addCommand(new StdCmdOnlineHelp());
|
||||
rcCmdMgr.addCommand(new StdCmdOnlineHelpWebsite());
|
||||
rcCmdMgr.addCommand(new StdCmdFreeCADWebsite());
|
||||
rcCmdMgr.addCommand(new StdCmdFreeCADDonation());
|
||||
rcCmdMgr.addCommand(new StdCmdFreeCADUserHub());
|
||||
rcCmdMgr.addCommand(new StdCmdFreeCADPowerUserHub());
|
||||
rcCmdMgr.addCommand(new StdCmdFreeCADForum());
|
||||
|
||||
@@ -563,6 +563,7 @@ StdCmdToggleClipPlane::StdCmdToggleClipPlane()
|
||||
sToolTipText = QT_TR_NOOP("Toggles clipping plane for active view");
|
||||
sWhatsThis = "Std_ToggleClipPlane";
|
||||
sStatusTip = QT_TR_NOOP("Toggles clipping plane for active view");
|
||||
sPixmap = "Std_ToggleClipPlane";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -862,6 +863,7 @@ StdCmdToggleVisibility::StdCmdToggleVisibility()
|
||||
sToolTipText = QT_TR_NOOP("Toggles visibility");
|
||||
sStatusTip = QT_TR_NOOP("Toggles visibility");
|
||||
sWhatsThis = "Std_ToggleVisibility";
|
||||
sPixmap = "Std_ToggleVisibility";
|
||||
sAccel = "Space";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
@@ -938,6 +940,7 @@ StdCmdShowSelection::StdCmdShowSelection()
|
||||
sToolTipText = QT_TR_NOOP("Show all selected objects");
|
||||
sStatusTip = QT_TR_NOOP("Show all selected objects");
|
||||
sWhatsThis = "Std_ShowSelection";
|
||||
sPixmap = "Std_ShowSelection";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -965,6 +968,7 @@ StdCmdHideSelection::StdCmdHideSelection()
|
||||
sToolTipText = QT_TR_NOOP("Hide all selected objects");
|
||||
sStatusTip = QT_TR_NOOP("Hide all selected objects");
|
||||
sWhatsThis = "Std_HideSelection";
|
||||
sPixmap = "Std_HideSelection";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -992,6 +996,7 @@ StdCmdSelectVisibleObjects::StdCmdSelectVisibleObjects()
|
||||
sToolTipText = QT_TR_NOOP("Select visible objects in the active document");
|
||||
sStatusTip = QT_TR_NOOP("Select visible objects in the active document");
|
||||
sWhatsThis = "Std_SelectVisibleObjects";
|
||||
sPixmap = "Std_SelectVisibleObjects";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -1033,6 +1038,7 @@ StdCmdToggleObjects::StdCmdToggleObjects()
|
||||
sToolTipText = QT_TR_NOOP("Toggles visibility of all objects in the active document");
|
||||
sStatusTip = QT_TR_NOOP("Toggles visibility of all objects in the active document");
|
||||
sWhatsThis = "Std_ToggleObjects";
|
||||
sPixmap = "Std_ToggleObjects";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -1073,6 +1079,7 @@ StdCmdShowObjects::StdCmdShowObjects()
|
||||
sToolTipText = QT_TR_NOOP("Show all objects in the document");
|
||||
sStatusTip = QT_TR_NOOP("Show all objects in the document");
|
||||
sWhatsThis = "Std_ShowObjects";
|
||||
sPixmap = "Std_ShowObjects";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -1109,6 +1116,7 @@ StdCmdHideObjects::StdCmdHideObjects()
|
||||
sToolTipText = QT_TR_NOOP("Hide all objects in the document");
|
||||
sStatusTip = QT_TR_NOOP("Hide all objects in the document");
|
||||
sWhatsThis = "Std_HideObjects";
|
||||
sPixmap = "Std_HideObjects";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -1145,7 +1153,7 @@ StdCmdSetAppearance::StdCmdSetAppearance()
|
||||
sToolTipText = QT_TR_NOOP("Sets the display properties of the selected object");
|
||||
sWhatsThis = "Std_SetAppearance";
|
||||
sStatusTip = QT_TR_NOOP("Sets the display properties of the selected object");
|
||||
sPixmap = "Std_Tool1";
|
||||
sPixmap = "Std_SetAppearance";
|
||||
sAccel = "Ctrl+D";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
@@ -1188,7 +1196,7 @@ StdCmdViewHome::StdCmdViewHome()
|
||||
sToolTipText = QT_TR_NOOP("Set to default home view");
|
||||
sWhatsThis = "Std_ViewHome";
|
||||
sStatusTip = QT_TR_NOOP("Set to default home view");
|
||||
//sPixmap = "view-home";
|
||||
sPixmap = "Std_ViewHome";
|
||||
sAccel = "Home";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
@@ -1384,6 +1392,7 @@ StdCmdViewDimetric::StdCmdViewDimetric()
|
||||
sToolTipText= QT_TR_NOOP("Set to dimetric view");
|
||||
sWhatsThis = "Std_ViewDimetric";
|
||||
sStatusTip = QT_TR_NOOP("Set to dimetric view");
|
||||
sPixmap = "Std_ViewDimetric";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -1406,6 +1415,7 @@ StdCmdViewTrimetric::StdCmdViewTrimetric()
|
||||
sToolTipText= QT_TR_NOOP("Set to trimetric view");
|
||||
sWhatsThis = "Std_ViewTrimetric";
|
||||
sStatusTip = QT_TR_NOOP("Set to trimetric view");
|
||||
sPixmap = "Std_ViewTrimetric";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -2025,6 +2035,7 @@ StdCmdToggleNavigation::StdCmdToggleNavigation()
|
||||
sWhatsThis = "Std_ToggleNavigation";
|
||||
//iAccel = Qt::SHIFT+Qt::Key_Space;
|
||||
sAccel = "Esc";
|
||||
sPixmap = "Std_ToggleNavigation";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -2072,6 +2083,7 @@ public:
|
||||
sToolTipText = QT_TR_NOOP("Toggle axis cross");
|
||||
sStatusTip = QT_TR_NOOP("Toggle axis cross");
|
||||
sWhatsThis = "Std_AxisCross";
|
||||
sPixmap = "Std_AxisCross";
|
||||
}
|
||||
~StdCmdAxisCross()
|
||||
{
|
||||
@@ -2158,6 +2170,7 @@ StdCmdAxisCross::StdCmdAxisCross()
|
||||
sToolTipText = QT_TR_NOOP("Toggle axis cross");
|
||||
sStatusTip = QT_TR_NOOP("Toggle axis cross");
|
||||
sWhatsThis = "Std_AxisCross";
|
||||
sPixmap = "Std_AxisCross";
|
||||
sAccel = "A,C";
|
||||
}
|
||||
|
||||
@@ -2289,7 +2302,7 @@ StdCmdViewIvStereoOff::StdCmdViewIvStereoOff()
|
||||
sToolTipText = QT_TR_NOOP("Switch stereo viewing off");
|
||||
sWhatsThis = "Std_ViewIvStereoOff";
|
||||
sStatusTip = QT_TR_NOOP("Switch stereo viewing off");
|
||||
sPixmap = "Std_Tool6";
|
||||
sPixmap = "Std_ViewIvStereoOff";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -2318,7 +2331,7 @@ StdCmdViewIvStereoRedGreen::StdCmdViewIvStereoRedGreen()
|
||||
sToolTipText = QT_TR_NOOP("Switch stereo viewing to red/cyan");
|
||||
sWhatsThis = "Std_ViewIvStereoRedGreen";
|
||||
sStatusTip = QT_TR_NOOP("Switch stereo viewing to red/cyan");
|
||||
sPixmap = "Std_Tool7";
|
||||
sPixmap = "Std_ViewIvStereoRedGreen";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -2346,7 +2359,7 @@ StdCmdViewIvStereoQuadBuff::StdCmdViewIvStereoQuadBuff()
|
||||
sToolTipText = QT_TR_NOOP("Switch stereo viewing to quad buffer");
|
||||
sWhatsThis = "Std_ViewIvStereoQuadBuff";
|
||||
sStatusTip = QT_TR_NOOP("Switch stereo viewing to quad buffer");
|
||||
sPixmap = "Std_Tool7";
|
||||
sPixmap = "Std_ViewIvStereoQuadBuff";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -2374,7 +2387,7 @@ StdCmdViewIvStereoInterleavedRows::StdCmdViewIvStereoInterleavedRows()
|
||||
sToolTipText = QT_TR_NOOP("Switch stereo viewing to Interleaved Rows");
|
||||
sWhatsThis = "Std_ViewIvStereoInterleavedRows";
|
||||
sStatusTip = QT_TR_NOOP("Switch stereo viewing to Interleaved Rows");
|
||||
sPixmap = "Std_Tool7";
|
||||
sPixmap = "Std_ViewIvStereoInterleavedRows";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -2402,7 +2415,7 @@ StdCmdViewIvStereoInterleavedColumns::StdCmdViewIvStereoInterleavedColumns()
|
||||
sToolTipText = QT_TR_NOOP("Switch stereo viewing to Interleaved Columns");
|
||||
sWhatsThis = "Std_ViewIvStereoInterleavedColumns";
|
||||
sStatusTip = QT_TR_NOOP("Switch stereo viewing to Interleaved Columns");
|
||||
sPixmap = "Std_Tool7";
|
||||
sPixmap = "Std_ViewIvStereoInterleavedColumns";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -2431,7 +2444,7 @@ StdCmdViewIvIssueCamPos::StdCmdViewIvIssueCamPos()
|
||||
sToolTipText = QT_TR_NOOP("Issue the camera position to the console and to a macro, to easily recall this position");
|
||||
sWhatsThis = "Std_ViewIvIssueCamPos";
|
||||
sStatusTip = QT_TR_NOOP("Issue the camera position to the console and to a macro, to easily recall this position");
|
||||
sPixmap = "Std_Tool8";
|
||||
sPixmap = "Std_ViewIvIssueCamPos";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
@@ -3099,6 +3112,7 @@ StdCmdTextureMapping::StdCmdTextureMapping()
|
||||
sToolTipText = QT_TR_NOOP("Texture mapping");
|
||||
sWhatsThis = "Std_TextureMapping";
|
||||
sStatusTip = QT_TR_NOOP("Texture mapping");
|
||||
sPixmap = "Std_TextureMapping";
|
||||
eType = Alter3DView;
|
||||
}
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#ifndef _PreComp_
|
||||
#include <boost_bind_bind.hpp>
|
||||
#include <boost/graph/topological_sort.hpp>
|
||||
#include <boost/graph/reverse_graph.hpp>
|
||||
#include <boost_graph_reverse_graph.hpp>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QString>
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
|
||||
#include <QGraphicsScene>
|
||||
#include <QBrush>
|
||||
|
||||
@@ -26,16 +26,16 @@
|
||||
#include <memory>
|
||||
#include <bitset>
|
||||
|
||||
#include <boost/graph/adjacency_list.hpp>
|
||||
#include <boost_graph_adjacency_list.hpp>
|
||||
#include <boost/graph/iteration_macros.hpp>
|
||||
#include <boost/graph/reverse_graph.hpp>
|
||||
#include <boost_graph_reverse_graph.hpp>
|
||||
#include <boost/graph/topological_sort.hpp>
|
||||
#include <boost/graph/graphviz.hpp>
|
||||
#include <boost/graph/breadth_first_search.hpp>
|
||||
#include <boost/multi_index_container.hpp>
|
||||
#include <boost/multi_index/member.hpp>
|
||||
#include <boost/multi_index/ordered_index.hpp>
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
|
||||
#include "DAGRectItem.h"
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
#ifndef _PreComp_
|
||||
# include <algorithm>
|
||||
# include <boost_bind_bind.hpp>
|
||||
# include <boost/signals2.hpp>
|
||||
# include <boost_signals2.hpp>
|
||||
# include <QDockWidget>
|
||||
#endif
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
# include <QTextStream>
|
||||
# include <qmessagebox.h>
|
||||
# include <qstatusbar.h>
|
||||
# include <boost/signals2.hpp>
|
||||
# include <boost_signals2.hpp>
|
||||
# include <boost_bind_bind.hpp>
|
||||
# include <Inventor/actions/SoSearchAction.h>
|
||||
# include <Inventor/nodes/SoSeparator.h>
|
||||
@@ -477,8 +477,10 @@ void Document::_resetEdit(void)
|
||||
// the editing object gets deleted inside the above call to
|
||||
// 'finishEditing()', which will trigger our slotDeletedObject(), which
|
||||
// nullifies _editViewProvider.
|
||||
if (d->_editViewProvider && d->_editViewProvider->isDerivedFrom(ViewProviderDocumentObject::getClassTypeId()))
|
||||
signalResetEdit(*(static_cast<ViewProviderDocumentObject*>(d->_editViewProvider)));
|
||||
if (d->_editViewProvider && d->_editViewProvider->isDerivedFrom(ViewProviderDocumentObject::getClassTypeId())) {
|
||||
auto vpd = static_cast<ViewProviderDocumentObject*>(d->_editViewProvider);
|
||||
vpd->getDocument()->signalResetEdit(*vpd);
|
||||
}
|
||||
d->_editViewProvider = 0;
|
||||
|
||||
// The logic below is not necessary anymore, because this method is
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
#ifndef _PreComp_
|
||||
# include <QApplication>
|
||||
# include <algorithm>
|
||||
# include <boost/signals2.hpp>
|
||||
# include <boost_signals2.hpp>
|
||||
# include <boost_bind_bind.hpp>
|
||||
#endif
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
#define GUI_DOCUMENTOBSERVER_H
|
||||
|
||||
#include <Base/BaseClass.h>
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
|
||||
namespace App { class Property; }
|
||||
namespace Gui
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
#include <CXX/Objects.hxx>
|
||||
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
#include <boost/bind/bind.hpp>
|
||||
|
||||
namespace Gui
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
#include <App/ObjectIdentifier.h>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <QLabel>
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
|
||||
namespace App {
|
||||
class Expression;
|
||||
|
||||
@@ -445,7 +445,11 @@ bool GraphvizView::onHasMsg(const char* pMsg) const
|
||||
void GraphvizView::print(QPrinter* printer)
|
||||
{
|
||||
QPainter p(printer);
|
||||
#if QT_VERSION >= 0x050300
|
||||
QRect rect = printer->pageLayout().paintRectPixels(printer->resolution());
|
||||
#else
|
||||
QRect rect = printer->pageRect();
|
||||
#endif
|
||||
view->scene()->render(&p, rect);
|
||||
//QByteArray buffer = exportGraph(QString::fromLatin1("svg"));
|
||||
//QSvgRenderer svg(buffer);
|
||||
@@ -457,7 +461,11 @@ void GraphvizView::print()
|
||||
{
|
||||
QPrinter printer(QPrinter::HighResolution);
|
||||
printer.setFullPage(true);
|
||||
#if QT_VERSION >= 0x050300
|
||||
printer.setPageOrientation(QPageLayout::Landscape);
|
||||
#else
|
||||
printer.setOrientation(QPrinter::Landscape);
|
||||
#endif
|
||||
QPrintDialog dlg(&printer, this);
|
||||
if (dlg.exec() == QDialog::Accepted) {
|
||||
print(&printer);
|
||||
@@ -487,7 +495,11 @@ void GraphvizView::printPreview()
|
||||
{
|
||||
QPrinter printer(QPrinter::HighResolution);
|
||||
printer.setFullPage(true);
|
||||
#if QT_VERSION >= 0x050300
|
||||
printer.setPageOrientation(QPageLayout::Landscape);
|
||||
#else
|
||||
printer.setOrientation(QPrinter::Landscape);
|
||||
#endif
|
||||
|
||||
QPrintPreviewDialog dlg(&printer, this);
|
||||
connect(&dlg, SIGNAL(paintRequested (QPrinter *)),
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
#include "MDIView.h"
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <boost/signals2.hpp>
|
||||
#include <boost_signals2.hpp>
|
||||
|
||||
|
||||
class QGraphicsScene;
|
||||
|
||||
@@ -0,0 +1,231 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64"
|
||||
height="64"
|
||||
viewBox="0 0 64 64"
|
||||
id="svg2"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title930">Std_AxisCross</title>
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient926">
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop922" />
|
||||
<stop
|
||||
style="stop-color:#a40000;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop924" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient918">
|
||||
<stop
|
||||
style="stop-color:#8ae234;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop914" />
|
||||
<stop
|
||||
style="stop-color:#4e9a06;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop916" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient910">
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop906" />
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop908" />
|
||||
</linearGradient>
|
||||
<marker
|
||||
orient="auto"
|
||||
refY="0"
|
||||
refX="0"
|
||||
id="marker4732"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path4734"
|
||||
style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff08;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
|
||||
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)" />
|
||||
</marker>
|
||||
<marker
|
||||
orient="auto"
|
||||
refY="0"
|
||||
refX="0"
|
||||
id="Arrow2Lstart"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path4174"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
|
||||
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)" />
|
||||
</marker>
|
||||
<marker
|
||||
orient="auto"
|
||||
refY="0"
|
||||
refX="0"
|
||||
id="Arrow1Lstart"
|
||||
style="overflow:visible">
|
||||
<path
|
||||
id="path4156"
|
||||
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
||||
transform="matrix(0.8,0,0,0.8,10,0)" />
|
||||
</marker>
|
||||
<linearGradient
|
||||
id="linearGradient4067-6">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4069-7" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4071-5" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient910"
|
||||
id="linearGradient912"
|
||||
x1="16.275192"
|
||||
y1="999.11859"
|
||||
x2="20.275194"
|
||||
y2="1005.3622"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.32823259,0.25769489)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient918"
|
||||
id="linearGradient920"
|
||||
x1="37.791718"
|
||||
y1="1008.163"
|
||||
x2="41.744087"
|
||||
y2="1014.2588"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,0.67970822)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient926"
|
||||
id="linearGradient928"
|
||||
x1="32.554726"
|
||||
y1="1037.6899"
|
||||
x2="38.136963"
|
||||
y2="1044.7837"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,0.67970822)" />
|
||||
</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>Std_AxisCross</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:date>2020/12/20</dc:date>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
transform="translate(0,-988.36216)">
|
||||
<g
|
||||
id="g4036-9-5"
|
||||
transform="matrix(0.42333463,-1.0406928,1.2322046,0.04560555,-18.902112,1031.4247)"
|
||||
style="fill:#73d216;fill-opacity:1;stroke:#172a04;stroke-width:1.753;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
|
||||
<g
|
||||
id="g4033-8-3"
|
||||
transform="matrix(0.70857077,0.64561924,-0.7760537,0.70710678,30.848953,1.7173836)"
|
||||
style="fill:#73d216;fill-opacity:1;stroke:#172a04;stroke-width:1.75119;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
|
||||
<rect
|
||||
style="fill:#73d216;fill-opacity:1;stroke:#172a04;stroke-width:1.75119;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3261-1-56"
|
||||
width="23"
|
||||
height="6"
|
||||
x="-25"
|
||||
y="-38"
|
||||
transform="scale(-1)" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#8ae234;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 17.758513,1025.996 23.516681,-15.1976"
|
||||
id="path4083-0-29" />
|
||||
<g
|
||||
style="fill:#cc0000;fill-opacity:1;stroke:#280000;stroke-width:1.77168;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
transform="matrix(-0.09950839,-1.2704661,0.99694669,-0.07808517,-7.0272263,1034.6728)"
|
||||
id="g4033-8-5">
|
||||
<rect
|
||||
transform="matrix(-0.61568026,0.78799608,-0.61567913,-0.78799696,0,0)"
|
||||
y="-22.253193"
|
||||
x="11.761694"
|
||||
height="4.9622731"
|
||||
width="24.257404"
|
||||
id="rect3261-1-6"
|
||||
style="fill:#cc0000;fill-opacity:1;stroke:#280000;stroke-width:1.65466;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ef2929;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 38.136962,1045.4634 17.397878,1027.7269"
|
||||
id="path4083-0-2" />
|
||||
<path
|
||||
id="path872-8"
|
||||
d="m 44,1049.0419 -8.562552,-14.5923 c -4.048591,1.9848 -5.937899,5.0071 -7.162254,8.3488 z"
|
||||
style="fill:url(#linearGradient928);fill-opacity:1;stroke:#280000;stroke-width:2.50713;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient920);fill-opacity:1;stroke:#172a04;stroke-width:2.50713;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 52.025756,1005.4549 -16.544154,3.5417 c 0.611589,4.4672 2.886818,7.2108 5.674284,9.4235 z"
|
||||
id="path872-8-1" />
|
||||
<g
|
||||
id="g4036-9"
|
||||
transform="matrix(-0.64428531,-0.92040759,0.70710678,-1.0101525,0.936348,1060.8558)"
|
||||
style="fill:#3465a4;fill-opacity:1;stroke:#0b1521;stroke-width:1.753;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
|
||||
<g
|
||||
id="g4033-8"
|
||||
transform="matrix(0.53748674,0.48973482,-0.7760537,0.70710678,30.821878,1.6927139)"
|
||||
style="fill:#3465a4;fill-opacity:1;stroke:#0b1521;stroke-width:1.75119;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
|
||||
<rect
|
||||
style="fill:#3465a4;fill-opacity:1;stroke:#0b1521;stroke-width:1.75119;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3261-1"
|
||||
width="23"
|
||||
height="6"
|
||||
x="-25"
|
||||
y="-38"
|
||||
transform="scale(-1)" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 16.157967,1027.8686 V 999.86865"
|
||||
id="path4083-0" />
|
||||
<path
|
||||
style="fill:url(#linearGradient912);fill-opacity:1;stroke:#0b1521;stroke-width:2.50713;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 17.171767,991.6197 -5.5,16.0002 c 4.142481,1.7805 7.666483,1.2466 11,0 z"
|
||||
id="path872" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.7 KiB |
@@ -0,0 +1,518 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.1"
|
||||
id="svg3057"
|
||||
height="64px"
|
||||
width="64px">
|
||||
<title
|
||||
id="title861">Std_HideObjects</title>
|
||||
<defs
|
||||
id="defs3059">
|
||||
<linearGradient
|
||||
id="linearGradient919">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop915" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop917" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3814">
|
||||
<stop
|
||||
id="stop3816"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3818"
|
||||
offset="1"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3878">
|
||||
<stop
|
||||
id="stop3880"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;" />
|
||||
<stop
|
||||
id="stop3882"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3870">
|
||||
<stop
|
||||
id="stop3872"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;" />
|
||||
<stop
|
||||
id="stop3874"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3858">
|
||||
<stop
|
||||
id="stop3868"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;" />
|
||||
<stop
|
||||
id="stop3862"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
id="stop3841"
|
||||
offset="0"
|
||||
style="stop-color:#01d6d6;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3843"
|
||||
offset="1"
|
||||
style="stop-color:#01d6d6;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.83341111,0,0,0.86929423,6.5373399,6.8175926)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="64.894638"
|
||||
x2="64.94799"
|
||||
y1="0.43078607"
|
||||
x1="0.1544303"
|
||||
id="linearGradient3844-0"
|
||||
xlink:href="#linearGradient3838-3" />
|
||||
<linearGradient
|
||||
id="linearGradient3838-3">
|
||||
<stop
|
||||
id="stop3840-1"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3842-2"
|
||||
offset="1"
|
||||
style="stop-color:#dde0dd;stop-opacity:0.09302326" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient919"
|
||||
id="linearGradient921"
|
||||
x1="156.11201"
|
||||
y1="112.10596"
|
||||
x2="143.52336"
|
||||
y2="85.579796"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
y2="609.50507"
|
||||
x2="302.85715"
|
||||
y1="366.64789"
|
||||
x1="302.85715"
|
||||
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient5027"
|
||||
xlink:href="#linearGradient5048" />
|
||||
<linearGradient
|
||||
id="linearGradient5048">
|
||||
<stop
|
||||
id="stop5050"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop5056" />
|
||||
<stop
|
||||
id="stop5052"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="117.14286"
|
||||
fy="486.64789"
|
||||
fx="605.71429"
|
||||
cy="486.64789"
|
||||
cx="605.71429"
|
||||
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient5029"
|
||||
xlink:href="#linearGradient5060" />
|
||||
<linearGradient
|
||||
id="linearGradient5060">
|
||||
<stop
|
||||
id="stop5062"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5064"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="117.14286"
|
||||
fy="486.64789"
|
||||
fx="605.71429"
|
||||
cy="486.64789"
|
||||
cx="605.71429"
|
||||
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient5031"
|
||||
xlink:href="#linearGradient5060" />
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient259"
|
||||
id="radialGradient15658"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.960493,0,0,1.041132,7.9999997,5.9999995)"
|
||||
cx="33.966679"
|
||||
cy="35.736916"
|
||||
fx="33.966679"
|
||||
fy="35.736916"
|
||||
r="86.70845" />
|
||||
<linearGradient
|
||||
id="linearGradient259">
|
||||
<stop
|
||||
id="stop260"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#fafafa;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop261"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#bbbbbb;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient269"
|
||||
id="radialGradient15656"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.968273,0,0,1.032767,11.353553,6.6464465)"
|
||||
cx="8.824419"
|
||||
cy="3.7561285"
|
||||
fx="8.824419"
|
||||
fy="3.7561285"
|
||||
r="37.751713" />
|
||||
<linearGradient
|
||||
id="linearGradient269">
|
||||
<stop
|
||||
id="stop270"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#a3a3a3;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop271"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#4c4c4c;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient15662"
|
||||
id="radialGradient15668"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.968273,0,0,1.032767,11.353553,6.6464465)"
|
||||
cx="8.1435566"
|
||||
cy="7.2678967"
|
||||
fx="8.1435566"
|
||||
fy="7.2678967"
|
||||
r="38.158695" />
|
||||
<linearGradient
|
||||
id="linearGradient15662">
|
||||
<stop
|
||||
id="stop15664"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop15666"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#f8f8f8;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="5.256"
|
||||
fy="114.5684"
|
||||
fx="20.892099"
|
||||
cy="114.5684"
|
||||
cx="20.892099"
|
||||
gradientTransform="matrix(0.229703,0,0,0.229703,4.613529,3.979808)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient2283"
|
||||
xlink:href="#aigrd2" />
|
||||
<radialGradient
|
||||
id="aigrd2"
|
||||
cx="20.892099"
|
||||
cy="114.5684"
|
||||
r="5.256"
|
||||
fx="20.892099"
|
||||
fy="114.5684"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#F0F0F0"
|
||||
id="stop15566" />
|
||||
<stop
|
||||
offset="1.0000000"
|
||||
style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
|
||||
id="stop15568" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
r="5.257"
|
||||
fy="64.567902"
|
||||
fx="20.892099"
|
||||
cy="64.567902"
|
||||
cx="20.892099"
|
||||
gradientTransform="matrix(0.229703,0,0,0.229703,4.613529,3.979808)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient2285"
|
||||
xlink:href="#aigrd3" />
|
||||
<radialGradient
|
||||
id="aigrd3"
|
||||
cx="20.892099"
|
||||
cy="64.567902"
|
||||
r="5.257"
|
||||
fx="20.892099"
|
||||
fy="64.567902"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#F0F0F0"
|
||||
id="stop15573" />
|
||||
<stop
|
||||
offset="1.0000000"
|
||||
style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
|
||||
id="stop15575" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.56579776,1.5556263,-1.400577,0.53125337,102.03373,-38.341495)"
|
||||
r="26.352777"
|
||||
fy="24.73864"
|
||||
fx="20.945665"
|
||||
cy="24.73864"
|
||||
cx="20.945665"
|
||||
id="radialGradient3820-0"
|
||||
xlink:href="#linearGradient3814" />
|
||||
</defs>
|
||||
<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>Std_HideObjects</dc:title>
|
||||
<dc:date>2020/12/25</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>eye</rdf:li>
|
||||
<rdf:li>box</rdf:li>
|
||||
<rdf:li>page</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
id="g1188"
|
||||
transform="matrix(1.3085841,0,0,1.3085841,-9.8885318,-9.0044046)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g5022"
|
||||
transform="matrix(0.02165152,0,0,0.01485743,51.0076,48.68539)">
|
||||
<rect
|
||||
y="-150.69685"
|
||||
x="-1559.2523"
|
||||
height="478.35718"
|
||||
width="1339.6335"
|
||||
id="rect4173"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.402062;fill:url(#linearGradient5027);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
||||
<path
|
||||
id="path5058"
|
||||
d="m -219.61876,-150.68038 c 0,0 0,478.33079 0,478.33079 142.874166,0.90045 345.40022,-107.16966 345.40014,-239.196175 0,-132.026537 -159.436816,-239.134595 -345.40014,-239.134615 z"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.402062;fill:url(#radialGradient5029);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.402062;fill:url(#radialGradient5031);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
||||
d="m -1559.2523,-150.68038 c 0,0 0,478.33079 0,478.33079 -142.8742,0.90045 -345.4002,-107.16966 -345.4002,-239.196175 0,-132.026537 159.4368,-239.134595 345.4002,-239.134615 z"
|
||||
id="path5018" />
|
||||
</g>
|
||||
<rect
|
||||
ry="1.1490486"
|
||||
y="9.6464453"
|
||||
x="14.603553"
|
||||
height="40.920494"
|
||||
width="34.875"
|
||||
id="rect15391"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#radialGradient15658);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15656);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
||||
<rect
|
||||
rx="0.14904857"
|
||||
ry="0.14904857"
|
||||
y="10.583945"
|
||||
x="15.666054"
|
||||
height="38.946384"
|
||||
width="32.775887"
|
||||
id="rect15660"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15668);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g2270"
|
||||
transform="translate(8.6464467,5.9620101)">
|
||||
<g
|
||||
transform="matrix(0.229703,0,0,0.229703,4.967081,4.244972)"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-miterlimit:4"
|
||||
id="g1440">
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
fy="114.5684"
|
||||
fx="20.892099"
|
||||
r="5.256"
|
||||
cy="114.5684"
|
||||
cx="20.892099"
|
||||
id="radialGradient1442">
|
||||
<stop
|
||||
id="stop1444"
|
||||
style="stop-color:#F0F0F0"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop1446"
|
||||
style="stop-color:#474747"
|
||||
offset="1" />
|
||||
</radialGradient>
|
||||
<path
|
||||
id="path1448"
|
||||
d="m 23.428,113.07 c 0,1.973 -1.6,3.572 -3.573,3.572 -1.974,0 -3.573,-1.6 -3.573,-3.572 0,-1.974 1.6,-3.573 3.573,-3.573 1.973,0 3.573,1.6 3.573,3.573 z"
|
||||
style="stroke:none" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
fy="64.567902"
|
||||
fx="20.892099"
|
||||
r="5.257"
|
||||
cy="64.567902"
|
||||
cx="20.892099"
|
||||
id="radialGradient1450">
|
||||
<stop
|
||||
id="stop1452"
|
||||
style="stop-color:#F0F0F0"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop1454"
|
||||
style="stop-color:#474747"
|
||||
offset="1" />
|
||||
</radialGradient>
|
||||
<path
|
||||
id="path1456"
|
||||
d="m 23.428,63.07 c 0,1.973 -1.6,3.573 -3.573,3.573 -1.974,0 -3.573,-1.6 -3.573,-3.573 0,-1.974 1.6,-3.573 3.573,-3.573 1.973,0 3.573,1.6 3.573,3.573 z"
|
||||
style="stroke:none" />
|
||||
</g>
|
||||
<path
|
||||
id="path15570"
|
||||
d="m 9.9950109,29.952326 c 0,0.453204 -0.3675248,0.820499 -0.8207288,0.820499 -0.4534338,0 -0.8207289,-0.367524 -0.8207289,-0.820499 0,-0.453434 0.3675248,-0.820729 0.8207289,-0.820729 0.453204,0 0.8207288,0.367525 0.8207288,0.820729 z"
|
||||
style="fill:url(#radialGradient2283);fill-rule:nonzero;stroke:none;stroke-miterlimit:4" />
|
||||
<path
|
||||
id="path15577"
|
||||
d="m 9.9950109,18.467176 c 0,0.453204 -0.3675248,0.820729 -0.8207288,0.820729 -0.4534338,0 -0.8207289,-0.367525 -0.8207289,-0.820729 0,-0.453434 0.3675248,-0.820729 0.8207289,-0.820729 0.453204,0 0.8207288,0.367525 0.8207288,0.820729 z"
|
||||
style="fill:url(#radialGradient2285);fill-rule:nonzero;stroke:none;stroke-miterlimit:4" />
|
||||
</g>
|
||||
<path
|
||||
id="path15672"
|
||||
d="M 19.505723,11.494276 V 49.400869"
|
||||
style="display:inline;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.988553;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.0175438" />
|
||||
<path
|
||||
id="path15674"
|
||||
d="M 20.5,11.020515 V 49.038228"
|
||||
style="display:inline;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.204678" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.60952727,0,0,0.50029644,-49.907082,-1.6810936)"
|
||||
id="g3060-2"
|
||||
style="stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
style="fill:#204a87;stroke:none"
|
||||
d="M 181.76846,74.564006 V 110.8957 l -17.89251,14.53268 v -36.3317 z"
|
||||
id="path3150-7-8" />
|
||||
<path
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 163.87595,121.79521 17.89251,-14.53268"
|
||||
id="path3930-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 178.78637,114.52887 V 78.197173"
|
||||
id="path3932-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 181.76846,78.197173 -17.89251,14.53268"
|
||||
id="path3934-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 166.85803,85.463513 V 121.79521"
|
||||
id="path3936-5" />
|
||||
<path
|
||||
style="fill:url(#linearGradient921);fill-opacity:1;stroke:none;stroke-width:3.50043;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 163.87595,125.42838 140.01927,110.8957 V 74.564003 l 23.85668,14.532677 z"
|
||||
id="path3152-1-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 160.89386,89.096683 V 121.79521"
|
||||
id="path3938-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 140.01927,107.26253 23.85668,14.53268"
|
||||
id="path3940-4" />
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 143.00136,110.8957 V 78.197173"
|
||||
id="path3942-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#0b1521;stroke-width:3.29157;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="M 181.76846,74.564003 V 110.8957 l -17.89251,14.53268 V 89.096683 Z"
|
||||
id="path3150-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 163.87595,92.729853 140.01927,78.197173"
|
||||
id="path3944-9" />
|
||||
<path
|
||||
style="fill:none;stroke:#0b1521;stroke-width:3.29157;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="M 163.87595,125.42838 140.01927,110.8957 V 74.564003 l 23.85668,14.53268 z"
|
||||
id="path3152-9" />
|
||||
<path
|
||||
style="fill:#729fcf;stroke:#0b1521;stroke-width:3.29157;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 181.76846,74.564003 -17.89251,14.53268 -23.85668,-14.53268 17.89251,-14.53268 23.85668,14.53268"
|
||||
id="path3156-2" />
|
||||
</g>
|
||||
<g
|
||||
id="g1211"
|
||||
transform="matrix(0.68009161,0,0,0.68009161,-41.415906,6.1210315)">
|
||||
<path
|
||||
id="path3016-4"
|
||||
d="m 65,15.948961 c 14.326599,27.813708 42.65526,28.27173 58,0.147085 -14.59152,-27.868192 -42.637019,-28.337211 -58,-0.147085 z"
|
||||
style="fill:url(#radialGradient3820-0);fill-opacity:1;stroke:#2e3436;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3016-7-2"
|
||||
d="M 67.000001,15.953823 C 80.338557,41.118611 106.71352,41.533012 121,16.086902 107.41479,-9.1271781 81.303465,-9.5515298 67.000001,15.953823 Z"
|
||||
style="fill:none;stroke:#888a85;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#2e3436;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 79,4 28,25"
|
||||
id="path906" />
|
||||
<path
|
||||
id="path906-6"
|
||||
d="m 79,4 28,25"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 20 KiB |
@@ -0,0 +1,209 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg3057"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title861">Std_HideSelection</title>
|
||||
<defs
|
||||
id="defs3059">
|
||||
<linearGradient
|
||||
id="linearGradient3862">
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3864" />
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3866" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3814">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3816" />
|
||||
<stop
|
||||
style="stop-color:#d3d7cf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3818" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3878">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop3880" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="1"
|
||||
id="stop3882" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3870">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;"
|
||||
offset="0"
|
||||
id="stop3872" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3874" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3858">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;"
|
||||
offset="0"
|
||||
id="stop3868" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3862" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
style="stop-color:#01d6d6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3841" />
|
||||
<stop
|
||||
style="stop-color:#01d6d6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3843" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3838-3"
|
||||
id="linearGradient3844-0"
|
||||
x1="0.1544303"
|
||||
y1="0.43078607"
|
||||
x2="64.94799"
|
||||
y2="64.894638"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.83341111,0,0,0.86929423,6.5373399,6.8175926)" />
|
||||
<linearGradient
|
||||
id="linearGradient3838-3">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3840-1" />
|
||||
<stop
|
||||
style="stop-color:#dde0dd;stop-opacity:0.09302326"
|
||||
offset="1"
|
||||
id="stop3842-2" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3814"
|
||||
id="radialGradient3820"
|
||||
cx="20.945665"
|
||||
cy="24.73864"
|
||||
fx="20.945665"
|
||||
fy="24.73864"
|
||||
r="26.352778"
|
||||
gradientTransform="matrix(0.56579776,1.5556263,-1.400577,0.53125337,40.033725,-30.341495)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3862"
|
||||
id="radialGradient3868"
|
||||
cx="44.616356"
|
||||
cy="44.709038"
|
||||
fx="44.616356"
|
||||
fy="44.709038"
|
||||
r="16.079005"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.0572796,-0.99508664,0.9062161,0.96285465,-49.688012,40.348834)" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="18"
|
||||
x2="31"
|
||||
y1="51"
|
||||
x1="35"
|
||||
id="linearGradient3771"
|
||||
xlink:href="#linearGradient3765"
|
||||
gradientTransform="matrix(0.5518208,0,0,0.55482649,4.4577306,27.600091)" />
|
||||
<linearGradient
|
||||
id="linearGradient3765">
|
||||
<stop
|
||||
id="stop3767"
|
||||
offset="0"
|
||||
style="stop-color:#555753;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3769"
|
||||
offset="1"
|
||||
style="stop-color:#888a85;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<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>Std_HideSelection</dc:title>
|
||||
<dc:date>2020/12/25</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>eye</rdf:li>
|
||||
<rdf:li>arrow</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<path
|
||||
id="path3016"
|
||||
d="M 3.0000003,23.948961 C 17.326599,51.762669 45.655264,52.220691 61.000004,24.096046 46.408481,-3.7721464 18.362981,-4.2411648 3.0000003,23.948961 Z"
|
||||
style="fill:url(#radialGradient3820);fill-opacity:1;stroke:#2e3436;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3016-7"
|
||||
d="M 5.0000005,23.953823 C 18.338557,49.118611 44.713521,49.533012 59.000001,24.086902 45.41479,-1.1271781 19.303465,-1.5515298 5.0000005,23.953823 Z"
|
||||
style="fill:none;stroke:#888a85;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#2e3436;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17,12 45,37"
|
||||
id="path906" />
|
||||
<path
|
||||
id="path906-6"
|
||||
d="M 17,12 45,37"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(1.162122,0,0,1.1558264,-6.7132409,-7.586234)"
|
||||
id="g887">
|
||||
<path
|
||||
id="path3761"
|
||||
d="m 8.320476,54.786589 4.414566,4.438612 11.036417,-11.09653 3.310925,6.657918 8.829133,-23.302713 -23.176475,8.877224 6.621851,3.328959 z"
|
||||
style="fill:url(#linearGradient3771);fill-opacity:1;stroke:#2e3436;stroke-width:1.76123;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3763"
|
||||
d="M 9.8756073,54.786589 21.213017,43.336988 15.494147,40.512417 34.005227,33.40055 26.931887,52.012457 24.122618,46.262437 12.735042,57.661599 Z"
|
||||
style="fill:none;stroke:#888a85;stroke-width:1.32092;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.9 KiB |
@@ -0,0 +1,299 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64"
|
||||
height="64"
|
||||
id="svg1307"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title953">Std_RandomColor</title>
|
||||
<defs
|
||||
id="defs1309">
|
||||
<linearGradient
|
||||
id="linearGradient951">
|
||||
<stop
|
||||
id="stop947"
|
||||
offset="0"
|
||||
style="stop-color:#4e9a06;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop949"
|
||||
offset="1"
|
||||
style="stop-color:#8ae234;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient945">
|
||||
<stop
|
||||
id="stop941"
|
||||
offset="0"
|
||||
style="stop-color:#ce5c00;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop943"
|
||||
offset="1"
|
||||
style="stop-color:#fcaf3e;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3851">
|
||||
<stop
|
||||
style="stop-color:#5c3566;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3853" />
|
||||
<stop
|
||||
style="stop-color:#ad7fa8;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3855" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2684">
|
||||
<stop
|
||||
id="stop2686"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop2688"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2584">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2586" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2588" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5075">
|
||||
<stop
|
||||
style="stop-color:#adb0a8;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5077" />
|
||||
<stop
|
||||
style="stop-color:#464744;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop5079" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3340">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3342" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.62886596;"
|
||||
offset="1"
|
||||
id="stop3344" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient5075"
|
||||
id="linearGradient2306"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="71.288956"
|
||||
y1="124.11652"
|
||||
x2="70.826942"
|
||||
y2="95"
|
||||
gradientTransform="translate(-105.00042,-71.09425)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient2684"
|
||||
id="linearGradient2690"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.128181,0,0,1.128181,-113.99314,-83.36009)"
|
||||
x1="70.913956"
|
||||
y1="101.74152"
|
||||
x2="70.951942"
|
||||
y2="88.923729" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="12.5"
|
||||
x2="6.75"
|
||||
y1="0.5"
|
||||
x1="6.75"
|
||||
id="linearGradient7035"
|
||||
xlink:href="#linearGradient7029" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.0057859,0,-2.4948735)"
|
||||
r="9.3095722"
|
||||
fy="431.19708"
|
||||
fx="466.73566"
|
||||
cy="431.19708"
|
||||
cx="466.73566"
|
||||
id="radialGradient6052"
|
||||
xlink:href="#linearGradient17794" />
|
||||
<linearGradient
|
||||
y2="424.95065"
|
||||
x2="461.39169"
|
||||
y1="436.79602"
|
||||
x1="472.42236"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient2438"
|
||||
xlink:href="#linearGradient17794" />
|
||||
<linearGradient
|
||||
y2="424.95065"
|
||||
x2="461.39169"
|
||||
y1="436.79602"
|
||||
x1="472.42236"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient24732"
|
||||
xlink:href="#linearGradient17794" />
|
||||
<linearGradient
|
||||
id="linearGradient17794">
|
||||
<stop
|
||||
id="stop17798"
|
||||
offset="0"
|
||||
style="stop-color:#f18383;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ed6767;stop-opacity:1;"
|
||||
offset="0.3807947"
|
||||
id="stop8006" />
|
||||
<stop
|
||||
id="stop17796"
|
||||
offset="1"
|
||||
style="stop-color:#e62323;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient7029">
|
||||
<stop
|
||||
id="stop7031"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop7033"
|
||||
offset="1"
|
||||
style="stop-color:#ffffff;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient945"
|
||||
id="linearGradient3857"
|
||||
x1="35.599998"
|
||||
y1="60.799999"
|
||||
x2="27.200001"
|
||||
y2="27.199999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.83333333,0,0,0.83333332,17.035644,-8.666666)" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.83333333,0,0,0.83333332,-6.6522187,-8.7504872)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="27.199999"
|
||||
x2="27.200001"
|
||||
y1="60.799999"
|
||||
x1="35.599998"
|
||||
id="linearGradient3857-0"
|
||||
xlink:href="#linearGradient951" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3851"
|
||||
id="linearGradient3857-0-8"
|
||||
x1="35.599998"
|
||||
y1="60.799999"
|
||||
x2="27.200001"
|
||||
y2="27.199999"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.83333333,0,0,0.83333332,5.3496667,-32.545057)" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata1312">
|
||||
<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>Std_RandomColor</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>bitacovir</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<dc:date>2020/12/15</dc:date>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer4"
|
||||
style="display:inline"
|
||||
transform="translate(0,16)" />
|
||||
<g
|
||||
id="layer1"
|
||||
style="display:inline"
|
||||
transform="translate(0,16)">
|
||||
<circle
|
||||
style="fill:#ef2929;fill-opacity:1;stroke:#321900;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6;stroke-opacity:1"
|
||||
id="path3831"
|
||||
cx="43.702312"
|
||||
cy="28"
|
||||
r="17" />
|
||||
<circle
|
||||
style="display:inline;fill:url(#linearGradient3857);fill-opacity:1;stroke:#fcaf3e;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6;stroke-opacity:1"
|
||||
id="path3831-6"
|
||||
cx="43.702312"
|
||||
cy="28"
|
||||
r="15" />
|
||||
<circle
|
||||
r="17"
|
||||
cy="27.916178"
|
||||
cx="20.01445"
|
||||
id="path3831-7"
|
||||
style="display:inline;fill:#ef2929;fill-opacity:1;stroke:#172a04;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6;stroke-opacity:1" />
|
||||
<circle
|
||||
r="15"
|
||||
cy="27.916178"
|
||||
cx="20.01445"
|
||||
id="path3831-6-9"
|
||||
style="display:inline;fill:url(#linearGradient3857-0);fill-opacity:1;stroke:#8ae234;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6;stroke-opacity:1" />
|
||||
<circle
|
||||
style="display:inline;fill:#ef2929;fill-opacity:1;stroke:#171018;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6;stroke-opacity:1"
|
||||
id="path3831-7-5"
|
||||
cx="32.016338"
|
||||
cy="4.1216102"
|
||||
r="17" />
|
||||
<circle
|
||||
style="display:inline;fill:url(#linearGradient3857-0-8);fill-opacity:1;stroke:#ad7fa8;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6;stroke-opacity:1"
|
||||
id="path3831-6-9-0"
|
||||
cx="32.016338"
|
||||
cy="4.1216102"
|
||||
r="15" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.3 KiB |
@@ -0,0 +1,304 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.1"
|
||||
id="svg3057"
|
||||
height="64px"
|
||||
width="64px">
|
||||
<title
|
||||
id="title861">Std_SelectVisibleObjects</title>
|
||||
<defs
|
||||
id="defs3059">
|
||||
<linearGradient
|
||||
id="linearGradient919">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop915" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop917" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3862">
|
||||
<stop
|
||||
id="stop3864"
|
||||
offset="0"
|
||||
style="stop-color:#729fcf;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3866"
|
||||
offset="1"
|
||||
style="stop-color:#204a87;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3814">
|
||||
<stop
|
||||
id="stop3816"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3818"
|
||||
offset="1"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3878">
|
||||
<stop
|
||||
id="stop3880"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;" />
|
||||
<stop
|
||||
id="stop3882"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3870">
|
||||
<stop
|
||||
id="stop3872"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;" />
|
||||
<stop
|
||||
id="stop3874"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3858">
|
||||
<stop
|
||||
id="stop3868"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;" />
|
||||
<stop
|
||||
id="stop3862"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
id="stop3841"
|
||||
offset="0"
|
||||
style="stop-color:#01d6d6;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3843"
|
||||
offset="1"
|
||||
style="stop-color:#01d6d6;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.83341111,0,0,0.86929423,6.5373399,6.8175926)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="64.894638"
|
||||
x2="64.94799"
|
||||
y1="0.43078607"
|
||||
x1="0.1544303"
|
||||
id="linearGradient3844-0"
|
||||
xlink:href="#linearGradient3838-3" />
|
||||
<linearGradient
|
||||
id="linearGradient3838-3">
|
||||
<stop
|
||||
id="stop3840-1"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3842-2"
|
||||
offset="1"
|
||||
style="stop-color:#dde0dd;stop-opacity:0.09302326" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.56579776,1.5556263,-1.400577,0.53125337,40.033725,-22.341495)"
|
||||
r="26.352778"
|
||||
fy="24.73864"
|
||||
fx="20.945665"
|
||||
cy="24.73864"
|
||||
cx="20.945665"
|
||||
id="radialGradient3820"
|
||||
xlink:href="#linearGradient3814" />
|
||||
<radialGradient
|
||||
gradientTransform="matrix(1.0572796,-0.99508664,0.9062161,0.96285465,-49.688012,40.348834)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="16.079005"
|
||||
fy="44.709038"
|
||||
fx="44.616356"
|
||||
cy="44.709038"
|
||||
cx="44.616356"
|
||||
id="radialGradient3868"
|
||||
xlink:href="#linearGradient3862" />
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.5518208,0,0,0.55482649,4.4577306,27.600091)"
|
||||
xlink:href="#linearGradient3765"
|
||||
id="linearGradient3771"
|
||||
x1="35"
|
||||
y1="51"
|
||||
x2="31"
|
||||
y2="18"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3765">
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3767" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3769" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient919"
|
||||
id="linearGradient921"
|
||||
x1="156.11201"
|
||||
y1="112.10596"
|
||||
x2="143.52336"
|
||||
y2="85.579796"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<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>Std_SelectVisibleObjects</dc:title>
|
||||
<dc:date>2020/12/25</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>eye</rdf:li>
|
||||
<rdf:li>arrow</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
id="g929"
|
||||
transform="translate(0.56099874,0.30599931)">
|
||||
<g
|
||||
style="stroke-width:3.03469;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g902"
|
||||
transform="matrix(0.65904671,0,0,0.65904671,0.63701529,-4.5904668)">
|
||||
<path
|
||||
style="fill:url(#radialGradient3820);fill-opacity:1;stroke:#2e3436;stroke-width:3.03469;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.0000003,31.948961 C 17.326599,59.762669 45.655264,60.220691 61.000004,32.096046 46.408481,4.2278536 18.362981,3.7588352 3.0000003,31.948961 Z"
|
||||
id="path3016" />
|
||||
<circle
|
||||
style="fill:url(#radialGradient3868);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:3.03469;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path3808"
|
||||
cx="32"
|
||||
cy="32"
|
||||
r="15" />
|
||||
<circle
|
||||
style="fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:3.03469;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path3810"
|
||||
cx="32"
|
||||
cy="32"
|
||||
r="7" />
|
||||
<path
|
||||
style="fill:none;stroke:#888a85;stroke-width:3.03469;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.0000005,31.953823 C 18.338557,57.118611 44.713521,57.533012 59.000001,32.086902 45.41479,6.8728219 19.303465,6.4484702 5.0000005,31.953823 Z"
|
||||
id="path3016-7" />
|
||||
<circle
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.03469;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path3808-0"
|
||||
cx="32"
|
||||
cy="32"
|
||||
r="13" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.60952727,0,0,0.50029644,-49.907082,-1.6810936)"
|
||||
id="g3060-2"
|
||||
style="stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
style="fill:#204a87;stroke:none"
|
||||
d="M 181.76846,74.564006 V 110.8957 l -17.89251,14.53268 v -36.3317 z"
|
||||
id="path3150-7-8" />
|
||||
<path
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 163.87595,121.79521 17.89251,-14.53268"
|
||||
id="path3930-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 178.78637,114.52887 V 78.197173"
|
||||
id="path3932-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 181.76846,78.197173 -17.89251,14.53268"
|
||||
id="path3934-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 166.85803,85.463513 V 121.79521"
|
||||
id="path3936-5" />
|
||||
<path
|
||||
style="fill:url(#linearGradient921);fill-opacity:1;stroke:none;stroke-width:3.50043;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 163.87595,125.42838 140.01927,110.8957 V 74.564003 l 23.85668,14.532677 z"
|
||||
id="path3152-1-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 160.89386,89.096683 V 121.79521"
|
||||
id="path3938-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 140.01927,107.26253 23.85668,14.53268"
|
||||
id="path3940-4" />
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 143.00136,110.8957 V 78.197173"
|
||||
id="path3942-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#0b1521;stroke-width:3.29157;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="M 181.76846,74.564003 V 110.8957 l -17.89251,14.53268 V 89.096683 Z"
|
||||
id="path3150-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 163.87595,92.729853 140.01927,78.197173"
|
||||
id="path3944-9" />
|
||||
<path
|
||||
style="fill:none;stroke:#0b1521;stroke-width:3.29157;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="M 163.87595,125.42838 140.01927,110.8957 V 74.564003 l 23.85668,14.53268 z"
|
||||
id="path3152-9" />
|
||||
<path
|
||||
style="fill:#729fcf;stroke:#0b1521;stroke-width:3.29157;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 181.76846,74.564003 -17.89251,14.53268 -23.85668,-14.53268 17.89251,-14.53268 23.85668,14.53268"
|
||||
id="path3156-2" />
|
||||
</g>
|
||||
<g
|
||||
id="g887"
|
||||
transform="matrix(1.0662904,0,0,1.060514,-4.7762666,-1.8574072)">
|
||||
<path
|
||||
style="fill:url(#linearGradient3771);fill-opacity:1;stroke:#2e3436;stroke-width:1.76123;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 8.320476,54.786589 4.414566,4.438612 11.036417,-11.09653 3.310925,6.657918 8.829133,-23.302713 -23.176475,8.877224 6.621851,3.328959 z"
|
||||
id="path3761" />
|
||||
<path
|
||||
style="fill:none;stroke:#888a85;stroke-width:1.32092;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 9.8756073,54.786589 21.213017,43.336988 15.494147,40.512417 34.005227,33.40055 26.931887,52.012457 24.122618,46.262437 12.735042,57.661599 Z"
|
||||
id="path3763" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,233 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg3188"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title866">Std_SetAppearance</title>
|
||||
<defs
|
||||
id="defs3190">
|
||||
<linearGradient
|
||||
id="linearGradient3895">
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3897" />
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3899" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3354">
|
||||
<stop
|
||||
style="stop-color:#2157c7;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3356" />
|
||||
<stop
|
||||
style="stop-color:#6daaff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3358" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3354"
|
||||
id="linearGradient3599"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.0083598,0,0,0.712664,-29.601181,398.25477)"
|
||||
x1="2392.2313"
|
||||
y1="1162.2943"
|
||||
x2="2638.95"
|
||||
y2="1162.2943" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3354-6"
|
||||
id="linearGradient2996-3"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.15768287,0,0,0.15089213,-357.22613,-145.08225)"
|
||||
x1="2392.2312"
|
||||
y1="1162.2943"
|
||||
x2="2638.95"
|
||||
y2="1162.2943" />
|
||||
<linearGradient
|
||||
id="linearGradient3354-6">
|
||||
<stop
|
||||
style="stop-color:#2157c7;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3356-0" />
|
||||
<stop
|
||||
style="stop-color:#6daaff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3358-6" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
id="layer1">
|
||||
<rect
|
||||
style="display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.08138;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect2364"
|
||||
width="28"
|
||||
height="58"
|
||||
x="3"
|
||||
y="3" />
|
||||
<rect
|
||||
style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#172a04;stroke-width:2;stroke-linejoin:round;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect3341"
|
||||
width="20"
|
||||
height="8.0000019"
|
||||
x="7"
|
||||
y="49" />
|
||||
<rect
|
||||
style="display:inline;overflow:visible;visibility:visible;fill:#73d216;stroke:#8ae234;stroke-width:2;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect3341-3"
|
||||
width="16"
|
||||
height="3.9999986"
|
||||
x="9"
|
||||
y="51" />
|
||||
<rect
|
||||
style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#0b1521;stroke-width:2;stroke-linejoin:round;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect3341-9"
|
||||
width="20"
|
||||
height="8.0000019"
|
||||
x="7"
|
||||
y="35" />
|
||||
<rect
|
||||
style="display:inline;overflow:visible;visibility:visible;fill:#3465a4;stroke:#729fcf;stroke-width:2;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect3341-3-1"
|
||||
width="16"
|
||||
height="3.9999986"
|
||||
x="9"
|
||||
y="37" />
|
||||
<rect
|
||||
style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#302b00;stroke-width:2;stroke-linejoin:round;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect3341-2"
|
||||
width="20"
|
||||
height="8.0000019"
|
||||
x="7"
|
||||
y="21" />
|
||||
<rect
|
||||
style="display:inline;overflow:visible;visibility:visible;fill:#edd400;stroke:#fce94f;stroke-width:2;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect3341-3-7"
|
||||
width="16"
|
||||
height="3.9999986"
|
||||
x="9"
|
||||
y="23" />
|
||||
<rect
|
||||
style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#280000;stroke-width:2;stroke-linejoin:round;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect3341-0"
|
||||
width="20"
|
||||
height="8.0000019"
|
||||
x="7"
|
||||
y="7" />
|
||||
<rect
|
||||
style="display:inline;overflow:visible;visibility:visible;fill:#cc0000;stroke:#ef2929;stroke-width:2;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect3341-3-9"
|
||||
width="16"
|
||||
height="3.9999986"
|
||||
x="9"
|
||||
y="9" />
|
||||
<g
|
||||
style="stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g3060"
|
||||
transform="matrix(0.55090896,0,0,0.45218287,-39.418502,3.7972689)">
|
||||
<path
|
||||
id="path3150-7"
|
||||
d="M 181.76846,74.564006 V 110.8957 l -17.89251,14.53268 v -36.3317 z"
|
||||
style="fill:#204a87;stroke:none" />
|
||||
<path
|
||||
id="path3930"
|
||||
d="m 163.87595,121.79521 17.89251,-14.53268"
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3932"
|
||||
d="M 178.78637,114.52887 V 78.197173"
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3934"
|
||||
d="m 181.76846,78.197173 -17.89251,14.53268"
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3936"
|
||||
d="M 166.85803,85.463513 V 121.79521"
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3152-1"
|
||||
d="M 163.87595,125.42838 140.01927,110.8957 V 74.564003 l 23.85668,14.532677 z"
|
||||
style="fill:#3465a4;stroke:none" />
|
||||
<path
|
||||
id="path3938"
|
||||
d="M 160.89386,89.096683 V 121.79521"
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3940"
|
||||
d="m 140.01927,107.26253 23.85668,14.53268"
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3942"
|
||||
d="M 143.00136,110.8957 V 78.197173"
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3150"
|
||||
d="M 181.76846,74.564003 V 110.8957 l -17.89251,14.53268 V 89.096683 Z"
|
||||
style="fill:none;stroke:#0b1521;stroke-width:3.29157;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3944"
|
||||
d="M 163.87595,92.729853 140.01927,78.197173"
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3152"
|
||||
d="M 163.87595,125.42838 140.01927,110.8957 V 74.564003 l 23.85668,14.53268 z"
|
||||
style="fill:none;stroke:#0b1521;stroke-width:3.29157;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3156"
|
||||
d="m 181.76846,74.564003 -17.89251,14.53268 -23.85668,-14.53268 17.89251,-14.53268 23.85668,14.53268"
|
||||
style="fill:#729fcf;stroke:#0b1521;stroke-width:3.29157;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<metadata
|
||||
id="metadata3231">
|
||||
<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>Std_SetAppearance</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="" />
|
||||
<dc:date>2020/12/20</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier></dc:identifier>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:description></dc:description>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.6 KiB |
@@ -0,0 +1,554 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.1"
|
||||
id="svg3057"
|
||||
height="64px"
|
||||
width="64px">
|
||||
<title
|
||||
id="title861">Std_ShowObjects</title>
|
||||
<defs
|
||||
id="defs3059">
|
||||
<linearGradient
|
||||
id="linearGradient919">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop915" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop917" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3862">
|
||||
<stop
|
||||
id="stop3864"
|
||||
offset="0"
|
||||
style="stop-color:#729fcf;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3866"
|
||||
offset="1"
|
||||
style="stop-color:#204a87;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3814">
|
||||
<stop
|
||||
id="stop3816"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3818"
|
||||
offset="1"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3878">
|
||||
<stop
|
||||
id="stop3880"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;" />
|
||||
<stop
|
||||
id="stop3882"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3870">
|
||||
<stop
|
||||
id="stop3872"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;" />
|
||||
<stop
|
||||
id="stop3874"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3858">
|
||||
<stop
|
||||
id="stop3868"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;" />
|
||||
<stop
|
||||
id="stop3862"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
id="stop3841"
|
||||
offset="0"
|
||||
style="stop-color:#01d6d6;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3843"
|
||||
offset="1"
|
||||
style="stop-color:#01d6d6;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="matrix(0.83341111,0,0,0.86929423,6.5373399,6.8175926)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="64.894638"
|
||||
x2="64.94799"
|
||||
y1="0.43078607"
|
||||
x1="0.1544303"
|
||||
id="linearGradient3844-0"
|
||||
xlink:href="#linearGradient3838-3" />
|
||||
<linearGradient
|
||||
id="linearGradient3838-3">
|
||||
<stop
|
||||
id="stop3840-1"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3842-2"
|
||||
offset="1"
|
||||
style="stop-color:#dde0dd;stop-opacity:0.09302326" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.56579776,1.5556263,-1.400577,0.53125337,40.033725,-22.341495)"
|
||||
r="26.352778"
|
||||
fy="24.73864"
|
||||
fx="20.945665"
|
||||
cy="24.73864"
|
||||
cx="20.945665"
|
||||
id="radialGradient3820"
|
||||
xlink:href="#linearGradient3814" />
|
||||
<radialGradient
|
||||
gradientTransform="matrix(1.0572796,-0.99508664,0.9062161,0.96285465,-49.688012,40.348834)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="16.079005"
|
||||
fy="44.709038"
|
||||
fx="44.616356"
|
||||
cy="44.709038"
|
||||
cx="44.616356"
|
||||
id="radialGradient3868"
|
||||
xlink:href="#linearGradient3862" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient919"
|
||||
id="linearGradient921"
|
||||
x1="156.11201"
|
||||
y1="112.10596"
|
||||
x2="143.52336"
|
||||
y2="85.579796"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
y2="609.50507"
|
||||
x2="302.85715"
|
||||
y1="366.64789"
|
||||
x1="302.85715"
|
||||
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient5027"
|
||||
xlink:href="#linearGradient5048" />
|
||||
<linearGradient
|
||||
id="linearGradient5048">
|
||||
<stop
|
||||
id="stop5050"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop5056" />
|
||||
<stop
|
||||
id="stop5052"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="117.14286"
|
||||
fy="486.64789"
|
||||
fx="605.71429"
|
||||
cy="486.64789"
|
||||
cx="605.71429"
|
||||
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient5029"
|
||||
xlink:href="#linearGradient5060" />
|
||||
<linearGradient
|
||||
id="linearGradient5060">
|
||||
<stop
|
||||
id="stop5062"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop5064"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="117.14286"
|
||||
fy="486.64789"
|
||||
fx="605.71429"
|
||||
cy="486.64789"
|
||||
cx="605.71429"
|
||||
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient5031"
|
||||
xlink:href="#linearGradient5060" />
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient259"
|
||||
id="radialGradient15658"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.960493,0,0,1.041132,7.9999997,5.9999995)"
|
||||
cx="33.966679"
|
||||
cy="35.736916"
|
||||
fx="33.966679"
|
||||
fy="35.736916"
|
||||
r="86.70845" />
|
||||
<linearGradient
|
||||
id="linearGradient259">
|
||||
<stop
|
||||
id="stop260"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#fafafa;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop261"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#bbbbbb;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient269"
|
||||
id="radialGradient15656"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.968273,0,0,1.032767,11.353553,6.6464465)"
|
||||
cx="8.824419"
|
||||
cy="3.7561285"
|
||||
fx="8.824419"
|
||||
fy="3.7561285"
|
||||
r="37.751713" />
|
||||
<linearGradient
|
||||
id="linearGradient269">
|
||||
<stop
|
||||
id="stop270"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#a3a3a3;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop271"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#4c4c4c;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient15662"
|
||||
id="radialGradient15668"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.968273,0,0,1.032767,11.353553,6.6464465)"
|
||||
cx="8.1435566"
|
||||
cy="7.2678967"
|
||||
fx="8.1435566"
|
||||
fy="7.2678967"
|
||||
r="38.158695" />
|
||||
<linearGradient
|
||||
id="linearGradient15662">
|
||||
<stop
|
||||
id="stop15664"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop15666"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#f8f8f8;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="5.256"
|
||||
fy="114.5684"
|
||||
fx="20.892099"
|
||||
cy="114.5684"
|
||||
cx="20.892099"
|
||||
gradientTransform="matrix(0.229703,0,0,0.229703,4.613529,3.979808)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient2283"
|
||||
xlink:href="#aigrd2" />
|
||||
<radialGradient
|
||||
id="aigrd2"
|
||||
cx="20.892099"
|
||||
cy="114.5684"
|
||||
r="5.256"
|
||||
fx="20.892099"
|
||||
fy="114.5684"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#F0F0F0"
|
||||
id="stop15566" />
|
||||
<stop
|
||||
offset="1.0000000"
|
||||
style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
|
||||
id="stop15568" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
r="5.257"
|
||||
fy="64.567902"
|
||||
fx="20.892099"
|
||||
cy="64.567902"
|
||||
cx="20.892099"
|
||||
gradientTransform="matrix(0.229703,0,0,0.229703,4.613529,3.979808)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient2285"
|
||||
xlink:href="#aigrd3" />
|
||||
<radialGradient
|
||||
id="aigrd3"
|
||||
cx="20.892099"
|
||||
cy="64.567902"
|
||||
r="5.257"
|
||||
fx="20.892099"
|
||||
fy="64.567902"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#F0F0F0"
|
||||
id="stop15573" />
|
||||
<stop
|
||||
offset="1.0000000"
|
||||
style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
|
||||
id="stop15575" />
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<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>Std_ShowObjects</dc:title>
|
||||
<dc:date>2020/12/25</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>eye</rdf:li>
|
||||
<rdf:li>cube</rdf:li>
|
||||
<rdf:li>page</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
id="g1188"
|
||||
transform="matrix(1.3085841,0,0,1.3085841,-9.8885318,-9.0044046)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g5022"
|
||||
transform="matrix(0.02165152,0,0,0.01485743,51.0076,48.68539)">
|
||||
<rect
|
||||
y="-150.69685"
|
||||
x="-1559.2523"
|
||||
height="478.35718"
|
||||
width="1339.6335"
|
||||
id="rect4173"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.402062;fill:url(#linearGradient5027);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
||||
<path
|
||||
id="path5058"
|
||||
d="m -219.61876,-150.68038 c 0,0 0,478.33079 0,478.33079 142.874166,0.90045 345.40022,-107.16966 345.40014,-239.196175 0,-132.026537 -159.436816,-239.134595 -345.40014,-239.134615 z"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.402062;fill:url(#radialGradient5029);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.402062;fill:url(#radialGradient5031);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
||||
d="m -1559.2523,-150.68038 c 0,0 0,478.33079 0,478.33079 -142.8742,0.90045 -345.4002,-107.16966 -345.4002,-239.196175 0,-132.026537 159.4368,-239.134595 345.4002,-239.134615 z"
|
||||
id="path5018" />
|
||||
</g>
|
||||
<rect
|
||||
ry="1.1490486"
|
||||
y="9.6464453"
|
||||
x="14.603553"
|
||||
height="40.920494"
|
||||
width="34.875"
|
||||
id="rect15391"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#radialGradient15658);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15656);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
||||
<rect
|
||||
rx="0.14904857"
|
||||
ry="0.14904857"
|
||||
y="10.583945"
|
||||
x="15.666054"
|
||||
height="38.946384"
|
||||
width="32.775887"
|
||||
id="rect15660"
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15668);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g2270"
|
||||
transform="translate(8.6464467,5.9620101)">
|
||||
<g
|
||||
transform="matrix(0.229703,0,0,0.229703,4.967081,4.244972)"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-miterlimit:4"
|
||||
id="g1440">
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
fy="114.5684"
|
||||
fx="20.892099"
|
||||
r="5.256"
|
||||
cy="114.5684"
|
||||
cx="20.892099"
|
||||
id="radialGradient1442">
|
||||
<stop
|
||||
id="stop1444"
|
||||
style="stop-color:#F0F0F0"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop1446"
|
||||
style="stop-color:#474747"
|
||||
offset="1" />
|
||||
</radialGradient>
|
||||
<path
|
||||
id="path1448"
|
||||
d="m 23.428,113.07 c 0,1.973 -1.6,3.572 -3.573,3.572 -1.974,0 -3.573,-1.6 -3.573,-3.572 0,-1.974 1.6,-3.573 3.573,-3.573 1.973,0 3.573,1.6 3.573,3.573 z"
|
||||
style="stroke:none" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
fy="64.567902"
|
||||
fx="20.892099"
|
||||
r="5.257"
|
||||
cy="64.567902"
|
||||
cx="20.892099"
|
||||
id="radialGradient1450">
|
||||
<stop
|
||||
id="stop1452"
|
||||
style="stop-color:#F0F0F0"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop1454"
|
||||
style="stop-color:#474747"
|
||||
offset="1" />
|
||||
</radialGradient>
|
||||
<path
|
||||
id="path1456"
|
||||
d="m 23.428,63.07 c 0,1.973 -1.6,3.573 -3.573,3.573 -1.974,0 -3.573,-1.6 -3.573,-3.573 0,-1.974 1.6,-3.573 3.573,-3.573 1.973,0 3.573,1.6 3.573,3.573 z"
|
||||
style="stroke:none" />
|
||||
</g>
|
||||
<path
|
||||
id="path15570"
|
||||
d="m 9.9950109,29.952326 c 0,0.453204 -0.3675248,0.820499 -0.8207288,0.820499 -0.4534338,0 -0.8207289,-0.367524 -0.8207289,-0.820499 0,-0.453434 0.3675248,-0.820729 0.8207289,-0.820729 0.453204,0 0.8207288,0.367525 0.8207288,0.820729 z"
|
||||
style="fill:url(#radialGradient2283);fill-rule:nonzero;stroke:none;stroke-miterlimit:4" />
|
||||
<path
|
||||
id="path15577"
|
||||
d="m 9.9950109,18.467176 c 0,0.453204 -0.3675248,0.820729 -0.8207288,0.820729 -0.4534338,0 -0.8207289,-0.367525 -0.8207289,-0.820729 0,-0.453434 0.3675248,-0.820729 0.8207289,-0.820729 0.453204,0 0.8207288,0.367525 0.8207288,0.820729 z"
|
||||
style="fill:url(#radialGradient2285);fill-rule:nonzero;stroke:none;stroke-miterlimit:4" />
|
||||
</g>
|
||||
<path
|
||||
id="path15672"
|
||||
d="M 19.505723,11.494276 V 49.400869"
|
||||
style="display:inline;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.988553;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.0175438" />
|
||||
<path
|
||||
id="path15674"
|
||||
d="M 20.5,11.020515 V 49.038228"
|
||||
style="display:inline;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.204678" />
|
||||
</g>
|
||||
<g
|
||||
id="g929"
|
||||
transform="translate(0.56099874,0.30599931)">
|
||||
<g
|
||||
style="stroke-width:3.03469;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g902"
|
||||
transform="matrix(0.65904671,0,0,0.65904671,0.63701529,-4.5904668)">
|
||||
<path
|
||||
style="fill:url(#radialGradient3820);fill-opacity:1;stroke:#2e3436;stroke-width:3.03469;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.0000003,31.948961 C 17.326599,59.762669 45.655264,60.220691 61.000004,32.096046 46.408481,4.2278536 18.362981,3.7588352 3.0000003,31.948961 Z"
|
||||
id="path3016" />
|
||||
<circle
|
||||
style="fill:url(#radialGradient3868);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:3.03469;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path3808"
|
||||
cx="32"
|
||||
cy="32"
|
||||
r="15" />
|
||||
<circle
|
||||
style="fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:3.03469;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path3810"
|
||||
cx="32"
|
||||
cy="32"
|
||||
r="7" />
|
||||
<path
|
||||
style="fill:none;stroke:#888a85;stroke-width:3.03469;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.0000005,31.953823 C 18.338557,57.118611 44.713521,57.533012 59.000001,32.086902 45.41479,6.8728219 19.303465,6.4484702 5.0000005,31.953823 Z"
|
||||
id="path3016-7" />
|
||||
<circle
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.03469;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path3808-0"
|
||||
cx="32"
|
||||
cy="32"
|
||||
r="13" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.60952727,0,0,0.50029644,-49.907082,-1.6810936)"
|
||||
id="g3060-2"
|
||||
style="stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
style="fill:#204a87;stroke:none"
|
||||
d="M 181.76846,74.564006 V 110.8957 l -17.89251,14.53268 v -36.3317 z"
|
||||
id="path3150-7-8" />
|
||||
<path
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 163.87595,121.79521 17.89251,-14.53268"
|
||||
id="path3930-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 178.78637,114.52887 V 78.197173"
|
||||
id="path3932-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 181.76846,78.197173 -17.89251,14.53268"
|
||||
id="path3934-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#3465a4;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 166.85803,85.463513 V 121.79521"
|
||||
id="path3936-5" />
|
||||
<path
|
||||
style="fill:url(#linearGradient921);fill-opacity:1;stroke:none;stroke-width:3.50043;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 163.87595,125.42838 140.01927,110.8957 V 74.564003 l 23.85668,14.532677 z"
|
||||
id="path3152-1-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 160.89386,89.096683 V 121.79521"
|
||||
id="path3938-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 140.01927,107.26253 23.85668,14.53268"
|
||||
id="path3940-4" />
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 143.00136,110.8957 V 78.197173"
|
||||
id="path3942-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#0b1521;stroke-width:3.29157;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="M 181.76846,74.564003 V 110.8957 l -17.89251,14.53268 V 89.096683 Z"
|
||||
id="path3150-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.29157;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 163.87595,92.729853 140.01927,78.197173"
|
||||
id="path3944-9" />
|
||||
<path
|
||||
style="fill:none;stroke:#0b1521;stroke-width:3.29157;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="M 163.87595,125.42838 140.01927,110.8957 V 74.564003 l 23.85668,14.53268 z"
|
||||
id="path3152-9" />
|
||||
<path
|
||||
style="fill:#729fcf;stroke:#0b1521;stroke-width:3.29157;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 181.76846,74.564003 -17.89251,14.53268 -23.85668,-14.53268 17.89251,-14.53268 23.85668,14.53268"
|
||||
id="path3156-2" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,223 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg3057"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title861">Std_ShowSelection</title>
|
||||
<defs
|
||||
id="defs3059">
|
||||
<linearGradient
|
||||
id="linearGradient3862">
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3864" />
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3866" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3814">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3816" />
|
||||
<stop
|
||||
style="stop-color:#d3d7cf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3818" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3878">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop3880" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="1"
|
||||
id="stop3882" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3870">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;"
|
||||
offset="0"
|
||||
id="stop3872" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3874" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3858">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;"
|
||||
offset="0"
|
||||
id="stop3868" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3862" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
style="stop-color:#01d6d6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3841" />
|
||||
<stop
|
||||
style="stop-color:#01d6d6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3843" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3838-3"
|
||||
id="linearGradient3844-0"
|
||||
x1="0.1544303"
|
||||
y1="0.43078607"
|
||||
x2="64.94799"
|
||||
y2="64.894638"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.83341111,0,0,0.86929423,6.5373399,6.8175926)" />
|
||||
<linearGradient
|
||||
id="linearGradient3838-3">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3840-1" />
|
||||
<stop
|
||||
style="stop-color:#dde0dd;stop-opacity:0.09302326"
|
||||
offset="1"
|
||||
id="stop3842-2" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3814"
|
||||
id="radialGradient3820"
|
||||
cx="20.945665"
|
||||
cy="24.73864"
|
||||
fx="20.945665"
|
||||
fy="24.73864"
|
||||
r="26.352778"
|
||||
gradientTransform="matrix(0.56579776,1.5556263,-1.400577,0.53125337,40.033725,-22.341495)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3862"
|
||||
id="radialGradient3868"
|
||||
cx="44.616356"
|
||||
cy="44.709038"
|
||||
fx="44.616356"
|
||||
fy="44.709038"
|
||||
r="16.079005"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.0572796,-0.99508664,0.9062161,0.96285465,-49.688012,40.348834)" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="18"
|
||||
x2="31"
|
||||
y1="51"
|
||||
x1="35"
|
||||
id="linearGradient3771"
|
||||
xlink:href="#linearGradient3765"
|
||||
gradientTransform="matrix(0.5518208,0,0,0.55482649,4.4577306,27.600091)" />
|
||||
<linearGradient
|
||||
id="linearGradient3765">
|
||||
<stop
|
||||
id="stop3767"
|
||||
offset="0"
|
||||
style="stop-color:#555753;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop3769"
|
||||
offset="1"
|
||||
style="stop-color:#888a85;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<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>Std_ShowSelection</dc:title>
|
||||
<dc:date>2020/12/25</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>eye</rdf:li>
|
||||
<rdf:li>arrow</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
id="g902"
|
||||
transform="translate(0,-8)">
|
||||
<path
|
||||
style="fill:url(#radialGradient3820);fill-opacity:1;stroke:#2e3436;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 3.0000003,31.948961 C 17.326599,59.762669 45.655264,60.220691 61.000004,32.096046 46.408481,4.2278536 18.362981,3.7588352 3.0000003,31.948961 Z"
|
||||
id="path3016" />
|
||||
<circle
|
||||
style="fill:url(#radialGradient3868);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:2"
|
||||
id="path3808"
|
||||
cx="32"
|
||||
cy="32"
|
||||
r="15" />
|
||||
<circle
|
||||
style="fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:2"
|
||||
id="path3810"
|
||||
cx="32"
|
||||
cy="32"
|
||||
r="7" />
|
||||
<path
|
||||
style="fill:none;stroke:#888a85;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.0000005,31.953823 C 18.338557,57.118611 44.713521,57.533012 59.000001,32.086902 45.41479,6.8728219 19.303465,6.4484702 5.0000005,31.953823 Z"
|
||||
id="path3016-7" />
|
||||
<circle
|
||||
style="fill:none;stroke:#729fcf;stroke-width:2"
|
||||
id="path3808-0"
|
||||
cx="32"
|
||||
cy="32"
|
||||
r="13" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.162122,0,0,1.1558264,-6.7132409,-7.586234)"
|
||||
id="g887">
|
||||
<path
|
||||
id="path3761"
|
||||
d="m 8.320476,54.786589 4.414566,4.438612 11.036417,-11.09653 3.310925,6.657918 8.829133,-23.302713 -23.176475,8.877224 6.621851,3.328959 z"
|
||||
style="fill:url(#linearGradient3771);fill-opacity:1;stroke:#2e3436;stroke-width:1.76123;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3763"
|
||||
d="M 9.8756073,54.786589 21.213017,43.336988 15.494147,40.512417 34.005227,33.40055 26.931887,52.012457 24.122618,46.262437 12.735042,57.661599 Z"
|
||||
style="fill:none;stroke:#888a85;stroke-width:1.32092;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.1 KiB |
@@ -0,0 +1,153 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.1"
|
||||
id="svg6248"
|
||||
height="64px"
|
||||
width="64px">
|
||||
<title
|
||||
id="title856">Std_TextureMapping</title>
|
||||
<defs
|
||||
id="defs6250">
|
||||
<linearGradient
|
||||
id="linearGradient3253">
|
||||
<stop
|
||||
id="stop3255"
|
||||
offset="0"
|
||||
style="stop-color:#89d5f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3257"
|
||||
offset="1"
|
||||
style="stop-color:#00899e;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6816">
|
||||
<stop
|
||||
id="stop6818"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6820"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6781">
|
||||
<stop
|
||||
id="stop6783"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6785"
|
||||
offset="1"
|
||||
style="stop-color:#3465a4;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.1581633,0,0,0.6558985,-7.29237,16.126077)"
|
||||
r="25.198714"
|
||||
fy="51.929391"
|
||||
fx="33.369828"
|
||||
cy="51.929391"
|
||||
cx="33.369828"
|
||||
id="radialGradient6822"
|
||||
xlink:href="#linearGradient6816" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9724373,-0.105657,5.0523169e-2,0.4650009,-0.3519546,9.5854384)"
|
||||
r="27.986705"
|
||||
fy="17.013988"
|
||||
fx="18.417862"
|
||||
cy="17.013988"
|
||||
cx="18.417862"
|
||||
id="radialGradient3259"
|
||||
xlink:href="#linearGradient3253" />
|
||||
<radialGradient
|
||||
r="27.986705"
|
||||
fy="17.013988"
|
||||
fx="18.417862"
|
||||
cy="17.013988"
|
||||
cx="18.417862"
|
||||
gradientTransform="matrix(0.9724373,-0.105657,0.05052317,0.4650009,-0.3519546,9.5854384)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3270"
|
||||
xlink:href="#linearGradient3253" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata6253">
|
||||
<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>Std_TextureMapping</dc:title>
|
||||
<dc:date>2020/12/17</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:description />
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(-1,0,0,0.99363058,4,0.0382165)"
|
||||
id="g3913-7" />
|
||||
<rect
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.86437;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect848"
|
||||
width="42"
|
||||
height="56"
|
||||
x="11"
|
||||
y="4" />
|
||||
<rect
|
||||
style="fill:none;fill-rule:evenodd;stroke:#cc0000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect890"
|
||||
width="40"
|
||||
height="53.97327"
|
||||
x="12"
|
||||
y="5.0267296" />
|
||||
<rect
|
||||
style="fill:#cc0000;fill-rule:evenodd;stroke:#cc0000;stroke-width:3.96136;stroke-linecap:round;stroke-linejoin:miter"
|
||||
id="rect850"
|
||||
width="17"
|
||||
height="24"
|
||||
x="13"
|
||||
y="6" />
|
||||
<rect
|
||||
y="34"
|
||||
x="34"
|
||||
height="24"
|
||||
width="17"
|
||||
id="rect850-1"
|
||||
style="fill:#cc0000;fill-rule:evenodd;stroke:#cc0000;stroke-width:3.96136;stroke-linecap:round;stroke-linejoin:miter" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.4 KiB |
@@ -0,0 +1,146 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2985"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title849">Std_ToggleClipPlane</title>
|
||||
<defs
|
||||
id="defs2987">
|
||||
<linearGradient
|
||||
id="linearGradient3764">
|
||||
<stop
|
||||
style="stop-color:#06989a;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3766" />
|
||||
<stop
|
||||
style="stop-color:#34e0e2;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3768" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3778">
|
||||
<stop
|
||||
style="stop-color:#06989a;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3780" />
|
||||
<stop
|
||||
style="stop-color:#34e0e2;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3782" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3778"
|
||||
id="linearGradient3784"
|
||||
x1="31.905455"
|
||||
y1="47.934547"
|
||||
x2="20.734545"
|
||||
y2="7.9054546"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3764"
|
||||
id="linearGradient3770"
|
||||
x1="34"
|
||||
y1="60"
|
||||
x2="32"
|
||||
y2="6"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3764-6"
|
||||
id="linearGradient3770-3"
|
||||
x1="34"
|
||||
y1="60"
|
||||
x2="32"
|
||||
y2="6"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3764-6">
|
||||
<stop
|
||||
style="stop-color:#c4a000;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3766-7" />
|
||||
<stop
|
||||
style="stop-color:#fce94f;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3768-5" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata2990">
|
||||
<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>Std_ToggleClipPlane</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:title>Arch_SectionPlane</dc:title>
|
||||
<dc:date>2020-12-17</dc:date>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier />
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<cc:license>https://www.gnu.org/copyleft/lesser.html</cc:license>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Based on Agryson's work</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<path
|
||||
style="fill:url(#linearGradient3770);fill-opacity:1;stroke:#042a2a;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 31,61 h 4 V 4 h -4 z"
|
||||
id="path2994" />
|
||||
<circle
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient3784);fill-opacity:1;fill-rule:nonzero;stroke:#042a2a;stroke-width:1.86182;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="path2993"
|
||||
transform="matrix(1.0742187,0,0,1.0742187,1.7265638,-1.4921872)"
|
||||
cx="28.181818"
|
||||
cy="27.454546"
|
||||
r="23.272728" />
|
||||
<circle
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#34e0e2;stroke-width:2.02372;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="path2993-3"
|
||||
transform="matrix(0.98828121,0,0,0.98828121,4.1484387,0.86718805)"
|
||||
cx="28.181818"
|
||||
cy="27.454546"
|
||||
r="23.272728" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#042a2a;fill-opacity:1;fill-rule:nonzero;stroke:#042a2a;stroke-width:1.82686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="path2997"
|
||||
d="m 11.783744,34.785983 0,-35.39014963 30.648768,17.69507463 z"
|
||||
transform="matrix(0.84832121,0,0,1.4128225,21.0036,4.8535806)" />
|
||||
<g
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.778px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#042a2a;fill-opacity:1;stroke:none"
|
||||
id="text3767">
|
||||
<path
|
||||
d="M 27.128129,36 24.756995,29.567069 H 15.301914 L 12.916053,36 H 10 l 8.468336,-22 h 3.195876 L 30,36 H 27.128129 M 21.251841,19.980128 c -0.157105,-0.416355 -0.309289,-0.83793 -0.456554,-1.264727 -0.137468,-0.426763 -0.260197,-0.811905 -0.368188,-1.155429 -0.108007,-0.353896 -0.201287,-0.645356 -0.279824,-0.874379 -0.06873,-0.239394 -0.108018,-0.385123 -0.11782,-0.43719 -0.01964,0.05207 -0.06382,0.197796 -0.132548,0.43719 -0.06875,0.239433 -0.162013,0.536096 -0.279823,0.889992 -0.108008,0.353934 -0.23565,0.744281 -0.382916,1.171043 -0.137467,0.426797 -0.279832,0.848373 -0.427098,1.264728 l -2.650958,7.229241 h 7.761414 l -2.665685,-7.260469"
|
||||
id="path2990"
|
||||
style="fill:#042a2a;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.8 KiB |
@@ -0,0 +1,150 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg3000"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title863">Std_ToggleNavigation</title>
|
||||
<defs
|
||||
id="defs3002">
|
||||
<linearGradient
|
||||
id="linearGradient3393">
|
||||
<stop
|
||||
style="stop-color:#06989a;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3395" />
|
||||
<stop
|
||||
style="stop-color:#34e0e2;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3397" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3393"
|
||||
id="linearGradient3399"
|
||||
x1="1699.6969"
|
||||
y1="1840.5964"
|
||||
x2="2044.969"
|
||||
y2="1629.2852"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.25534521,-0.95296128,0.96517316,0.25861737,-283.46374,3042.7301)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3393-7"
|
||||
id="linearGradient3399-1"
|
||||
x1="1669.7314"
|
||||
y1="1726.0585"
|
||||
x2="2067.1702"
|
||||
y2="1726.0585"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.98657811,0,0,0.99922078,20.129251,-2.6811697)" />
|
||||
<linearGradient
|
||||
id="linearGradient3393-7">
|
||||
<stop
|
||||
style="stop-color:#003ddd;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3395-4" />
|
||||
<stop
|
||||
style="stop-color:#639ef0;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3397-0" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3806"
|
||||
id="linearGradient3012"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-6.7448605,1.6807825,-1.7046474,-6.8406287,2050.6498,1897.1039)"
|
||||
x1="42.755482"
|
||||
y1="44.981819"
|
||||
x2="40.373039"
|
||||
y2="19.265453" />
|
||||
<linearGradient
|
||||
id="linearGradient3806">
|
||||
<stop
|
||||
style="stop-color:#34e0e2;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3808" />
|
||||
<stop
|
||||
style="stop-color:#06989a;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3810" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
id="g3405"
|
||||
transform="matrix(0.1369365,0,0,0.1369365,-222.21754,-203.36512)">
|
||||
<g
|
||||
id="g845"
|
||||
transform="rotate(60,1857.7825,1712.6959)">
|
||||
<path
|
||||
style="display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient3399);fill-opacity:1;fill-rule:evenodd;stroke:#042a2a;stroke-width:14.6053;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 1880.5373,1902.9135 c 106.1484,-2.3589 189.8111,-89.4894 186.7502,-194.4908 -3.0611,-105.0013 -91.6921,-188.303 -197.8404,-185.9442 -55.9403,1.2433 -105.6257,26.0285 -139.6708,64.565 -3.5749,0.6134 55.4935,44.1756 55.4935,44.1756 22.1039,-24.0141 53.73,-39.3793 89.2346,-40.1684 69.1228,-1.536 126.8308,52.7017 128.824,121.0778 1.9931,68.3762 -52.4788,125.1377 -121.6017,126.6738 -19.7778,0.4394 -38.6039,-3.7029 -55.475,-11.4237 l -31.3948,57.7752 c 26.0336,11.9963 55.1182,18.4389 85.6804,17.7597 z"
|
||||
id="path2396" />
|
||||
<path
|
||||
style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#34e0e2;stroke-width:14.6053;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 1885.0707,1887.6865 c 78.8923,-1.5361 138.9163,-54.9141 161.631,-130.1829 32.4053,-107.38 -55.6977,-196.5384 -121.2835,-214.3605 -82.1688,-22.3283 -143.0328,13.9353 -176.6519,44.1474 l 34.9363,26.3413 c 48.9255,-39.4093 87.6337,-43.7301 132.6063,-32.3857 52.2393,13.1774 118.2783,78.5389 98.4143,164.5079 -17.2644,74.7179 -82.9486,105.1278 -134.9353,106.5777 -17.3999,2.1436 -33.9339,-2.2822 -47.106,-6.2036 l -17.5742,32.2101 c 20.5378,6.6037 46.0171,9.8144 69.963,9.3483 z"
|
||||
id="path2396-9" />
|
||||
<path
|
||||
id="path3343"
|
||||
d="m 1780.0348,1858.0991 -48.445,-79.2683 129.8702,-32.1384 -15.945,-66.5353 -129.864,31.7262 4.1865,-90.2537 -135.1728,159.1019 z"
|
||||
style="fill:url(#linearGradient3012);fill-opacity:1;fill-rule:evenodd;stroke:#042a2a;stroke-width:14.6053;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="path3343-2"
|
||||
d="m 1746.6502,1828.9145 -35.8887,-57.8065 134.1381,-34.2002 -10.6194,-40.0654 -131.4171,30.129 2.7243,-69.6957 -96.6391,116.9739 z"
|
||||
style="fill:none;stroke:#34e0e2;stroke-width:14.6053;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.8;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<metadata
|
||||
id="metadata5324">
|
||||
<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>Std_ToggleNavigation</dc:title>
|
||||
<cc:license
|
||||
rdf:resource="https://www.gnu.org/licenses/lgpl-3.0.en.html" />
|
||||
<dc:date>2020/12/17</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier />
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>based on Alexander Gryson, wmayer's work</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<dc:description />
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>esc</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<dc:title>arrow-ccw</dc:title>
|
||||
<cc:license>https://www.gnu.org/copyleft/lesser.html</cc:license>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.3 KiB |
@@ -0,0 +1,477 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg3057"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title861">Std_ToggleObjects</title>
|
||||
<defs
|
||||
id="defs3059">
|
||||
<linearGradient
|
||||
id="linearGradient3862">
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3864" />
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3866" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3814">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3816" />
|
||||
<stop
|
||||
style="stop-color:#d3d7cf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3818" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3878">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop3880" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="1"
|
||||
id="stop3882" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3870">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;"
|
||||
offset="0"
|
||||
id="stop3872" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3874" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3858">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;"
|
||||
offset="0"
|
||||
id="stop3868" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3862" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
style="stop-color:#01d6d6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3841" />
|
||||
<stop
|
||||
style="stop-color:#01d6d6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3843" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3838-3"
|
||||
id="linearGradient3844-0"
|
||||
x1="0.1544303"
|
||||
y1="0.43078607"
|
||||
x2="64.94799"
|
||||
y2="64.894638"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.83341111,0,0,0.86929423,6.5373399,6.8175926)" />
|
||||
<linearGradient
|
||||
id="linearGradient3838-3">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3840-1" />
|
||||
<stop
|
||||
style="stop-color:#dde0dd;stop-opacity:0.09302326"
|
||||
offset="1"
|
||||
id="stop3842-2" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3814"
|
||||
id="radialGradient3820"
|
||||
cx="20.945665"
|
||||
cy="24.73864"
|
||||
fx="20.945665"
|
||||
fy="24.73864"
|
||||
r="26.352778"
|
||||
gradientTransform="matrix(0.56579776,1.5556263,-1.400577,0.53125337,40.033725,-22.341495)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3862"
|
||||
id="radialGradient3868"
|
||||
cx="44.616356"
|
||||
cy="44.709038"
|
||||
fx="44.616356"
|
||||
fy="44.709038"
|
||||
r="16.079005"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.0572796,-0.99508664,0.9062161,0.96285465,-49.688012,40.348834)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient5048"
|
||||
id="linearGradient5027"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
|
||||
x1="302.85715"
|
||||
y1="366.64789"
|
||||
x2="302.85715"
|
||||
y2="609.50507" />
|
||||
<linearGradient
|
||||
id="linearGradient5048">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop5050" />
|
||||
<stop
|
||||
id="stop5056"
|
||||
offset="0.5"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5052" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient5060"
|
||||
id="radialGradient5029"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
|
||||
cx="605.71429"
|
||||
cy="486.64789"
|
||||
fx="605.71429"
|
||||
fy="486.64789"
|
||||
r="117.14286" />
|
||||
<linearGradient
|
||||
id="linearGradient5060">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5062" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5064" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient5060"
|
||||
id="radialGradient5031"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
|
||||
cx="605.71429"
|
||||
cy="486.64789"
|
||||
fx="605.71429"
|
||||
fy="486.64789"
|
||||
r="117.14286" />
|
||||
<radialGradient
|
||||
r="86.70845"
|
||||
fy="35.736916"
|
||||
fx="33.966679"
|
||||
cy="35.736916"
|
||||
cx="33.966679"
|
||||
gradientTransform="matrix(0.960493,0,0,1.041132,7.9999997,5.9999995)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient15658"
|
||||
xlink:href="#linearGradient259" />
|
||||
<linearGradient
|
||||
id="linearGradient259">
|
||||
<stop
|
||||
style="stop-color:#fafafa;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop260" />
|
||||
<stop
|
||||
style="stop-color:#bbbbbb;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop261" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="37.751713"
|
||||
fy="3.7561285"
|
||||
fx="8.824419"
|
||||
cy="3.7561285"
|
||||
cx="8.824419"
|
||||
gradientTransform="matrix(0.968273,0,0,1.032767,11.353553,6.6464465)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient15656"
|
||||
xlink:href="#linearGradient269" />
|
||||
<linearGradient
|
||||
id="linearGradient269">
|
||||
<stop
|
||||
style="stop-color:#a3a3a3;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop270" />
|
||||
<stop
|
||||
style="stop-color:#4c4c4c;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop271" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
r="38.158695"
|
||||
fy="7.2678967"
|
||||
fx="8.1435566"
|
||||
cy="7.2678967"
|
||||
cx="8.1435566"
|
||||
gradientTransform="matrix(0.968273,0,0,1.032767,11.353553,6.6464465)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient15668"
|
||||
xlink:href="#linearGradient15662" />
|
||||
<linearGradient
|
||||
id="linearGradient15662">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop15664" />
|
||||
<stop
|
||||
style="stop-color:#f8f8f8;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop15666" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#aigrd2"
|
||||
id="radialGradient2283"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.229703,0,0,0.229703,4.613529,3.979808)"
|
||||
cx="20.892099"
|
||||
cy="114.5684"
|
||||
fx="20.892099"
|
||||
fy="114.5684"
|
||||
r="5.256" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
fy="114.5684"
|
||||
fx="20.892099"
|
||||
r="5.256"
|
||||
cy="114.5684"
|
||||
cx="20.892099"
|
||||
id="aigrd2">
|
||||
<stop
|
||||
id="stop15566"
|
||||
style="stop-color:#F0F0F0"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop15568"
|
||||
style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
|
||||
offset="1.0000000" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
xlink:href="#aigrd3"
|
||||
id="radialGradient2285"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.229703,0,0,0.229703,4.613529,3.979808)"
|
||||
cx="20.892099"
|
||||
cy="64.567902"
|
||||
fx="20.892099"
|
||||
fy="64.567902"
|
||||
r="5.257" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
fy="64.567902"
|
||||
fx="20.892099"
|
||||
r="5.257"
|
||||
cy="64.567902"
|
||||
cx="20.892099"
|
||||
id="aigrd3">
|
||||
<stop
|
||||
id="stop15573"
|
||||
style="stop-color:#F0F0F0"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop15575"
|
||||
style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
|
||||
offset="1.0000000" />
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<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>Std_ToggleObjects</dc:title>
|
||||
<dc:date>2020/12/25</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>eye</rdf:li>
|
||||
<rdf:li>page</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(1.3085841,0,0,1.3085841,-9.8885318,-9.0044046)"
|
||||
id="g1188">
|
||||
<g
|
||||
transform="matrix(0.02165152,0,0,0.01485743,51.0076,48.68539)"
|
||||
id="g5022"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.402062;fill:url(#linearGradient5027);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
||||
id="rect4173"
|
||||
width="1339.6335"
|
||||
height="478.35718"
|
||||
x="-1559.2523"
|
||||
y="-150.69685" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.402062;fill:url(#radialGradient5029);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
||||
d="m -219.61876,-150.68038 c 0,0 0,478.33079 0,478.33079 142.874166,0.90045 345.40022,-107.16966 345.40014,-239.196175 0,-132.026537 -159.436816,-239.134595 -345.40014,-239.134615 z"
|
||||
id="path5058" />
|
||||
<path
|
||||
id="path5018"
|
||||
d="m -1559.2523,-150.68038 c 0,0 0,478.33079 0,478.33079 -142.8742,0.90045 -345.4002,-107.16966 -345.4002,-239.196175 0,-132.026537 159.4368,-239.134595 345.4002,-239.134615 z"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.402062;fill:url(#radialGradient5031);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
||||
</g>
|
||||
<rect
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#radialGradient15658);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15656);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
||||
id="rect15391"
|
||||
width="34.875"
|
||||
height="40.920494"
|
||||
x="14.603553"
|
||||
y="9.6464453"
|
||||
ry="1.1490486" />
|
||||
<rect
|
||||
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient15668);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
||||
id="rect15660"
|
||||
width="32.775887"
|
||||
height="38.946384"
|
||||
x="15.666054"
|
||||
y="10.583945"
|
||||
ry="0.14904857"
|
||||
rx="0.14904857" />
|
||||
<g
|
||||
transform="translate(8.6464467,5.9620101)"
|
||||
id="g2270"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g1440"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-miterlimit:4"
|
||||
transform="matrix(0.229703,0,0,0.229703,4.967081,4.244972)">
|
||||
<radialGradient
|
||||
id="radialGradient1442"
|
||||
cx="20.892099"
|
||||
cy="114.5684"
|
||||
r="5.256"
|
||||
fx="20.892099"
|
||||
fy="114.5684"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#F0F0F0"
|
||||
id="stop1444" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#474747"
|
||||
id="stop1446" />
|
||||
</radialGradient>
|
||||
<path
|
||||
style="stroke:none"
|
||||
d="m 23.428,113.07 c 0,1.973 -1.6,3.572 -3.573,3.572 -1.974,0 -3.573,-1.6 -3.573,-3.572 0,-1.974 1.6,-3.573 3.573,-3.573 1.973,0 3.573,1.6 3.573,3.573 z"
|
||||
id="path1448" />
|
||||
<radialGradient
|
||||
id="radialGradient1450"
|
||||
cx="20.892099"
|
||||
cy="64.567902"
|
||||
r="5.257"
|
||||
fx="20.892099"
|
||||
fy="64.567902"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#F0F0F0"
|
||||
id="stop1452" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#474747"
|
||||
id="stop1454" />
|
||||
</radialGradient>
|
||||
<path
|
||||
style="stroke:none"
|
||||
d="m 23.428,63.07 c 0,1.973 -1.6,3.573 -3.573,3.573 -1.974,0 -3.573,-1.6 -3.573,-3.573 0,-1.974 1.6,-3.573 3.573,-3.573 1.973,0 3.573,1.6 3.573,3.573 z"
|
||||
id="path1456" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#radialGradient2283);fill-rule:nonzero;stroke:none;stroke-miterlimit:4"
|
||||
d="m 9.9950109,29.952326 c 0,0.453204 -0.3675248,0.820499 -0.8207288,0.820499 -0.4534338,0 -0.8207289,-0.367524 -0.8207289,-0.820499 0,-0.453434 0.3675248,-0.820729 0.8207289,-0.820729 0.453204,0 0.8207288,0.367525 0.8207288,0.820729 z"
|
||||
id="path15570" />
|
||||
<path
|
||||
style="fill:url(#radialGradient2285);fill-rule:nonzero;stroke:none;stroke-miterlimit:4"
|
||||
d="m 9.9950109,18.467176 c 0,0.453204 -0.3675248,0.820729 -0.8207288,0.820729 -0.4534338,0 -0.8207289,-0.367525 -0.8207289,-0.820729 0,-0.453434 0.3675248,-0.820729 0.8207289,-0.820729 0.453204,0 0.8207288,0.367525 0.8207288,0.820729 z"
|
||||
id="path15577" />
|
||||
</g>
|
||||
<path
|
||||
style="display:inline;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.988553;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.0175438"
|
||||
d="M 19.505723,11.494276 V 49.400869"
|
||||
id="path15672" />
|
||||
<path
|
||||
style="display:inline;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.204678"
|
||||
d="M 20.5,11.020515 V 49.038228"
|
||||
id="path15674" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0.56099874,0.30599931)"
|
||||
id="g929">
|
||||
<g
|
||||
transform="matrix(0.65904671,0,0,0.65904671,0.63701529,-4.5904668)"
|
||||
id="g902"
|
||||
style="stroke-width:3.03469;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
id="path3016"
|
||||
d="M 3.0000003,31.948961 C 17.326599,59.762669 45.655264,60.220691 61.000004,32.096046 46.408481,4.2278536 18.362981,3.7588352 3.0000003,31.948961 Z"
|
||||
style="fill:url(#radialGradient3820);fill-opacity:1;stroke:#2e3436;stroke-width:3.03469;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
r="15"
|
||||
cy="32"
|
||||
cx="32"
|
||||
id="path3808"
|
||||
style="fill:url(#radialGradient3868);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:3.03469;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<circle
|
||||
r="7"
|
||||
cy="32"
|
||||
cx="32"
|
||||
id="path3810"
|
||||
style="fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:3.03469;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
id="path3016-7"
|
||||
d="M 5.0000005,31.953823 C 18.338557,57.118611 44.713521,57.533012 59.000001,32.086902 45.41479,6.8728219 19.303465,6.4484702 5.0000005,31.953823 Z"
|
||||
style="fill:none;stroke:#888a85;stroke-width:3.03469;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
r="13"
|
||||
cy="32"
|
||||
cx="32"
|
||||
id="path3808-0"
|
||||
style="fill:none;stroke:#729fcf;stroke-width:3.03469;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1,172 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg3057"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title861">Std_ToggleVisibility</title>
|
||||
<defs
|
||||
id="defs3059">
|
||||
<linearGradient
|
||||
id="linearGradient3862">
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3864" />
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3866" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3814">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3816" />
|
||||
<stop
|
||||
style="stop-color:#d3d7cf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3818" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3878">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop3880" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="1"
|
||||
id="stop3882" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3870">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;"
|
||||
offset="0"
|
||||
id="stop3872" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3874" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3858">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.19607843;"
|
||||
offset="0"
|
||||
id="stop3868" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3862" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3839">
|
||||
<stop
|
||||
style="stop-color:#01d6d6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3841" />
|
||||
<stop
|
||||
style="stop-color:#01d6d6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3843" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient3838-3"
|
||||
id="linearGradient3844-0"
|
||||
x1="0.1544303"
|
||||
y1="0.43078607"
|
||||
x2="64.94799"
|
||||
y2="64.894638"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.83341111,0,0,0.86929423,6.5373399,6.8175926)" />
|
||||
<linearGradient
|
||||
id="linearGradient3838-3">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3840-1" />
|
||||
<stop
|
||||
style="stop-color:#dde0dd;stop-opacity:0.09302326"
|
||||
offset="1"
|
||||
id="stop3842-2" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3814"
|
||||
id="radialGradient3820"
|
||||
cx="20.945665"
|
||||
cy="24.73864"
|
||||
fx="20.945665"
|
||||
fy="24.73864"
|
||||
r="26.352778"
|
||||
gradientTransform="matrix(0.49689881,1.3736343,-1.2300244,0.46910229,40.296276,-13.659687)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3862"
|
||||
id="radialGradient3868"
|
||||
cx="44.616356"
|
||||
cy="44.709038"
|
||||
fx="44.616356"
|
||||
fy="44.709038"
|
||||
r="16.079005"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.0625002,-1.0000002,0.91069082,0.96760906,-43.504641,46.064532)" />
|
||||
</defs>
|
||||
<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>Std_ToggleVisibility</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
id="g3851"
|
||||
transform="matrix(1.1386579,0,0,1.1324894,-5.849948,-6.8720445)">
|
||||
<path
|
||||
style="fill:url(#radialGradient3820);fill-opacity:1;stroke:#2e3436;stroke-width:1.76123;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 7.7722627,34.279354 C 20.354267,58.83915 45.233263,59.243588 58.709426,34.409232 45.894758,9.8013263 21.264446,9.3871781 7.7722627,34.279354 Z"
|
||||
id="path3016" />
|
||||
<circle
|
||||
style="fill:url(#radialGradient3868);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:2.00988"
|
||||
id="path3808"
|
||||
transform="matrix(0.87391169,0,0,0.87867175,-0.48055252,1.2209273)"
|
||||
cx="38.586731"
|
||||
cy="37.674473"
|
||||
r="15.074067" />
|
||||
<circle
|
||||
style="fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:2.22435"
|
||||
id="path3810"
|
||||
transform="matrix(0.78964818,0,0,0.79394928,7.0423882,8.1349206)"
|
||||
cx="33.177376"
|
||||
cy="32.986366"
|
||||
r="7.7852244" />
|
||||
<path
|
||||
style="fill:none;stroke:#888a85;stroke-width:1.76123;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 9.5287167,34.283648 C 21.242996,56.504419 44.406199,56.870339 56.95297,34.401158 45.022072,12.136861 22.090404,11.762154 9.5287167,34.283648 Z"
|
||||
id="path3016-7" />
|
||||
<circle
|
||||
style="fill:none;stroke:#729fcf;stroke-width:2.31909"
|
||||
id="path3808-0"
|
||||
transform="matrix(0.75739013,0,0,0.76151552,4.0156334,5.6347265)"
|
||||
cx="38.586731"
|
||||
cy="37.674473"
|
||||
r="15.074067" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.5 KiB |
@@ -0,0 +1,142 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.1"
|
||||
id="svg6248"
|
||||
height="64px"
|
||||
width="64px">
|
||||
<title
|
||||
id="title856">Std_ViewDimetric</title>
|
||||
<defs
|
||||
id="defs6250">
|
||||
<linearGradient
|
||||
id="linearGradient3253">
|
||||
<stop
|
||||
id="stop3255"
|
||||
offset="0"
|
||||
style="stop-color:#89d5f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3257"
|
||||
offset="1"
|
||||
style="stop-color:#00899e;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6816">
|
||||
<stop
|
||||
id="stop6818"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6820"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6781">
|
||||
<stop
|
||||
id="stop6783"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6785"
|
||||
offset="1"
|
||||
style="stop-color:#3465a4;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.1581633,0,0,0.6558985,-7.29237,16.126077)"
|
||||
r="25.198714"
|
||||
fy="51.929391"
|
||||
fx="33.369828"
|
||||
cy="51.929391"
|
||||
cx="33.369828"
|
||||
id="radialGradient6822"
|
||||
xlink:href="#linearGradient6816" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9724373,-0.105657,5.0523169e-2,0.4650009,-0.3519546,9.5854384)"
|
||||
r="27.986705"
|
||||
fy="17.013988"
|
||||
fx="18.417862"
|
||||
cy="17.013988"
|
||||
cx="18.417862"
|
||||
id="radialGradient3259"
|
||||
xlink:href="#linearGradient3253" />
|
||||
<radialGradient
|
||||
r="27.986705"
|
||||
fy="17.013988"
|
||||
fx="18.417862"
|
||||
cy="17.013988"
|
||||
cx="18.417862"
|
||||
gradientTransform="matrix(0.9724373,-0.105657,0.05052317,0.4650009,-0.3519546,9.5854384)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3270"
|
||||
xlink:href="#linearGradient3253" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata6253">
|
||||
<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>Std_ViewDimetric</dc:title>
|
||||
<dc:date>2020/12/10</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:description />
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(-1,0,0,0.99363058,4,0.0382165)"
|
||||
id="g3913-7" />
|
||||
<path
|
||||
id="path858"
|
||||
d="M 5,17 32,5 59,17 V 47 L 32,59 5,47 Z"
|
||||
style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#34e0e2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5,17 32,5 59,17 V 47 L 32,59 5,47 Z"
|
||||
id="path858-8" />
|
||||
<g
|
||||
style="font-size:45.4849px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#34e0e2;stroke:#042a2a;stroke-width:2.274;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="text877"
|
||||
aria-label="D">
|
||||
<path
|
||||
id="path850"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.3333px;font-family:Cambria;-inkscape-font-specification:Cambria;stroke-width:2.274;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 21.928259,44.379818 V 43.48659 q 0.838541,-0.21875 1.203124,-0.419271 0.364583,-0.200521 0.565104,-0.510416 0.20052,-0.309896 0.291666,-0.893229 0.09115,-0.583332 0.09115,-1.841144 V 24.054314 q 0,-1.27604 -0.09115,-1.841144 -0.09115,-0.583333 -0.309896,-0.893228 -0.20052,-0.309896 -0.546874,-0.492187 -0.346354,-0.200521 -1.203124,-0.4375 v -0.893228 h 7.984368 q 3.44531,0 5.632808,0.765624 2.205727,0.747395 3.718747,2.223956 1.513019,1.476562 2.260414,3.682289 0.747396,2.187498 0.747396,5.231766 0,3.080727 -0.710937,5.432287 -0.692708,2.333332 -2.041665,3.919268 -1.166666,1.385415 -2.861977,2.278644 -1.403645,0.729166 -3.244789,1.039061 -1.841144,0.309896 -4.885412,0.309896 z m 5.559891,-1.695311 q 0.729166,0.07292 2.15104,0.07292 1.531249,0 2.734373,-0.255209 1.203124,-0.255208 2.187498,-0.802082 0.984374,-0.546875 1.768227,-1.51302 0.783854,-0.984374 1.276041,-2.242185 0.492187,-1.276041 0.710937,-2.825519 0.236979,-1.549478 0.236979,-3.390622 0,-3.700518 -1.07552,-6.070307 -1.057291,-2.388019 -3.00781,-3.481768 -1.93229,-1.093749 -4.630204,-1.093749 -1.239583,0 -2.351561,0.07292 z" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.6 KiB |
@@ -0,0 +1,133 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.1"
|
||||
id="svg6248"
|
||||
height="64px"
|
||||
width="64px">
|
||||
<title
|
||||
id="title856">Std_ViewHome</title>
|
||||
<defs
|
||||
id="defs6250">
|
||||
<linearGradient
|
||||
id="linearGradient3253">
|
||||
<stop
|
||||
id="stop3255"
|
||||
offset="0"
|
||||
style="stop-color:#89d5f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3257"
|
||||
offset="1"
|
||||
style="stop-color:#00899e;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6816">
|
||||
<stop
|
||||
id="stop6818"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6820"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6781">
|
||||
<stop
|
||||
id="stop6783"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6785"
|
||||
offset="1"
|
||||
style="stop-color:#3465a4;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.1581633,0,0,0.6558985,-7.29237,16.126077)"
|
||||
r="25.198714"
|
||||
fy="51.929391"
|
||||
fx="33.369828"
|
||||
cy="51.929391"
|
||||
cx="33.369828"
|
||||
id="radialGradient6822"
|
||||
xlink:href="#linearGradient6816" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9724373,-0.105657,5.0523169e-2,0.4650009,-0.3519546,9.5854384)"
|
||||
r="27.986705"
|
||||
fy="17.013988"
|
||||
fx="18.417862"
|
||||
cy="17.013988"
|
||||
cx="18.417862"
|
||||
id="radialGradient3259"
|
||||
xlink:href="#linearGradient3253" />
|
||||
<radialGradient
|
||||
r="27.986705"
|
||||
fy="17.013988"
|
||||
fx="18.417862"
|
||||
cy="17.013988"
|
||||
cx="18.417862"
|
||||
gradientTransform="matrix(0.9724373,-0.105657,0.05052317,0.4650009,-0.3519546,9.5854384)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3270"
|
||||
xlink:href="#linearGradient3253" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata6253">
|
||||
<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>Std_ViewHome</dc:title>
|
||||
<dc:date>2020/12/15</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:description />
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(-1,0,0,0.99363058,4,0.0382165)"
|
||||
id="g3913-7" />
|
||||
<path
|
||||
id="path858"
|
||||
d="M 40,29 V 54 H 59 V 17 L 32,5 5,17 V 54 H 24 V 29 Z"
|
||||
style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#34e0e2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 40,54 H 59 V 17 L 32,5 5,17 V 54 H 24 V 29 h 16 z"
|
||||
id="path858-8" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1,172 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.1"
|
||||
id="svg6248"
|
||||
height="64px"
|
||||
width="64px">
|
||||
<title
|
||||
id="title856">Std_ViewIvIssueCamPos</title>
|
||||
<defs
|
||||
id="defs6250">
|
||||
<linearGradient
|
||||
id="linearGradient1152">
|
||||
<stop
|
||||
style="stop-color:#06989a;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1148" />
|
||||
<stop
|
||||
style="stop-color:#34e0e2;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop1150" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3253">
|
||||
<stop
|
||||
id="stop3255"
|
||||
offset="0"
|
||||
style="stop-color:#89d5f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3257"
|
||||
offset="1"
|
||||
style="stop-color:#00899e;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6816">
|
||||
<stop
|
||||
id="stop6818"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6820"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6781">
|
||||
<stop
|
||||
id="stop6783"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6785"
|
||||
offset="1"
|
||||
style="stop-color:#3465a4;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.1581633,0,0,0.6558985,-7.29237,16.126077)"
|
||||
r="25.198714"
|
||||
fy="51.929391"
|
||||
fx="33.369828"
|
||||
cy="51.929391"
|
||||
cx="33.369828"
|
||||
id="radialGradient6822"
|
||||
xlink:href="#linearGradient6816" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9724373,-0.105657,5.0523169e-2,0.4650009,-0.3519546,9.5854384)"
|
||||
r="27.986705"
|
||||
fy="17.013988"
|
||||
fx="18.417862"
|
||||
cy="17.013988"
|
||||
cx="18.417862"
|
||||
id="radialGradient3259"
|
||||
xlink:href="#linearGradient3253" />
|
||||
<radialGradient
|
||||
r="27.986705"
|
||||
fy="17.013988"
|
||||
fx="18.417862"
|
||||
cy="17.013988"
|
||||
cx="18.417862"
|
||||
gradientTransform="matrix(0.9724373,-0.105657,0.05052317,0.4650009,-0.3519546,9.5854384)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3270"
|
||||
xlink:href="#linearGradient3253" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient1152"
|
||||
id="linearGradient1154"
|
||||
x1="39"
|
||||
y1="46"
|
||||
x2="11"
|
||||
y2="12"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata6253">
|
||||
<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>Std_ViewIvIssueCamPos</dc:title>
|
||||
<dc:date>2020/12/10</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:description />
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(-1,0,0,0.99363058,4,0.0382165)"
|
||||
id="g3913-7" />
|
||||
<path
|
||||
id="path850"
|
||||
d="M 5,55 V 9 H 46 V 25 L 61,16 V 48 L 46,39 v 16 z"
|
||||
style="fill:url(#linearGradient1154);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#34e0e2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 44,36.806206 V 53 H 7 V 11 l 37,-0.0048 v 15.708674"
|
||||
id="path850-5" />
|
||||
<path
|
||||
id="path850-5-6"
|
||||
d="m 44.997299,26.942664 15,-9.128564 v 28.210499 l -15,-9.25713"
|
||||
style="fill:none;stroke:#34e0e2;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#042a2a;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.999997,55 V 9 H 46 V 25 L 61,16 V 48 L 46,39 v 16 z"
|
||||
id="path850-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#042a2a;stroke-width:4.33844;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 11,22.118413 19.4,32 11,41.881586"
|
||||
id="path1195" />
|
||||
<path
|
||||
id="path1195-0"
|
||||
d="m 21.981818,22.118413 8.4,9.881587 -8.4,9.881586"
|
||||
style="fill:none;stroke:#042a2a;stroke-width:4.33844;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="path1195-6"
|
||||
d="M 32.6,22.118413 41,32 32.6,41.881586"
|
||||
style="fill:none;stroke:#042a2a;stroke-width:4.33844;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.7 KiB |
@@ -0,0 +1,254 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2980"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title1117">Std_ViewIvStereoInterleavedColumns</title>
|
||||
<defs
|
||||
id="defs2982">
|
||||
<linearGradient
|
||||
id="linearGradient952">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop948" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop950" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient944">
|
||||
<stop
|
||||
style="stop-color:#a40000;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop940" />
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop942" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient1078">
|
||||
<stop
|
||||
id="stop1074"
|
||||
offset="0"
|
||||
style="stop-color:#2e3436;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop1076"
|
||||
offset="1"
|
||||
style="stop-color:#babdb6;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3794">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3796" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3798" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3864">
|
||||
<stop
|
||||
id="stop3866"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3868"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="translate(0,-4)"
|
||||
xlink:href="#linearGradient3767"
|
||||
id="linearGradient3773"
|
||||
x1="22.116516"
|
||||
y1="55.717518"
|
||||
x2="17.328547"
|
||||
y2="21.31134"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3767">
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3769" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3771" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="translate(0,-4)"
|
||||
xlink:href="#linearGradient3777"
|
||||
id="linearGradient3783"
|
||||
x1="53.896763"
|
||||
y1="51.179787"
|
||||
x2="47.502235"
|
||||
y2="21.83742"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3777">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3779" />
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3781" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3794"
|
||||
id="radialGradient3800"
|
||||
cx="1"
|
||||
cy="45"
|
||||
fx="1"
|
||||
fy="45"
|
||||
r="41"
|
||||
gradientTransform="matrix(0.93348213,-2.2905276e-8,0,0.28687573,0.06651751,32.090592)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="24"
|
||||
x2="7"
|
||||
y1="43"
|
||||
x1="56"
|
||||
id="linearGradient1080"
|
||||
xlink:href="#linearGradient1078"
|
||||
gradientTransform="translate(0,-4)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient944"
|
||||
id="linearGradient946"
|
||||
x1="24.323317"
|
||||
y1="38.115891"
|
||||
x2="9.806756"
|
||||
y2="27.753984"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-4)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient952"
|
||||
id="linearGradient954"
|
||||
x1="51.042877"
|
||||
y1="39.422012"
|
||||
x2="35.269917"
|
||||
y2="27.405685"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-4)" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata2985">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:title>Std_ViewIvStereoInterleavedColumns</dc:title>
|
||||
<dc:date>2020/12/20</dc:date>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier></dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<cc:license>https://www.gnu.org/copyleft/lesser.html</cc:license>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
id="path1020"
|
||||
d="M 3,16 H 61 V 46 H 42 C 35.259065,30.714814 27.983716,31.963913 22,46 H 3 Z"
|
||||
style="fill:url(#linearGradient1080);fill-opacity:1;stroke:#555753;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient946);fill-opacity:1;stroke:#280000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 31.401313,21.859905 H 8.1273987 V 38.360987 H 23.397057 l 6.834934,-7.827763 z"
|
||||
id="path921" />
|
||||
<path
|
||||
id="path921-8"
|
||||
d="M 32.632737,21.859905 H 55.906651 V 38.360987 H 40.636993 l -6.834934,-6.652253 z"
|
||||
style="fill:url(#linearGradient954);fill-opacity:1;stroke:#0b1521;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#babdb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 32.017025,33.189006 V 17.857777"
|
||||
id="path919" />
|
||||
<path
|
||||
style="fill:none;stroke:#babdb6;stroke-width:1.808;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.051724,17.655172 H 59 V 44 L 43.235996,43.938429 C 36.666589,28.519738 26.039445,30.454028 20.661358,44.030786 L 5.051724,44 Z"
|
||||
id="path1020-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#0b1521;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 35.004082,21.643537 0.06531,10.144218 c 3.212544,1.029984 5.005244,3.076287 7.22721,6.160544"
|
||||
id="path956" />
|
||||
<path
|
||||
id="path956-0"
|
||||
d="M 29.15557,21.542552 29.09026,31.68677 c -3.36274,1.130115 -5.441474,3.316313 -7.466666,6.269387"
|
||||
style="fill:none;stroke:#280000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1068"
|
||||
width="4.1252704"
|
||||
height="3.8789856"
|
||||
x="10.528675"
|
||||
y="24.322754"
|
||||
ry="0.43099841" />
|
||||
<rect
|
||||
ry="0.43099841"
|
||||
y="24.476677"
|
||||
x="37.527649"
|
||||
height="3.8789856"
|
||||
width="4.1252704"
|
||||
id="rect1068-5"
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="path1119-9"
|
||||
d="M 30.840343,58.827548 V 5.0143181"
|
||||
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 30.840343,58.827548 V 5.0143181"
|
||||
id="path1119-5-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 58.970335,58.78566 V 4.9724299"
|
||||
id="path1119-9-3" />
|
||||
<path
|
||||
id="path1119-5-5-4"
|
||||
d="M 58.970335,58.78566 V 4.9724299"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.0138194,58.799875 V 4.9866457"
|
||||
id="path1119-9-8" />
|
||||
<path
|
||||
id="path1119-5-5-9"
|
||||
d="M 5.0138194,58.799875 V 4.9866457"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.9 KiB |
@@ -0,0 +1,254 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2980"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title1117">Std_ViewIvStereoInterleavedRows</title>
|
||||
<defs
|
||||
id="defs2982">
|
||||
<linearGradient
|
||||
id="linearGradient952">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop948" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop950" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient944">
|
||||
<stop
|
||||
style="stop-color:#a40000;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop940" />
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop942" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient1078">
|
||||
<stop
|
||||
id="stop1074"
|
||||
offset="0"
|
||||
style="stop-color:#2e3436;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop1076"
|
||||
offset="1"
|
||||
style="stop-color:#babdb6;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3794">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3796" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3798" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3864">
|
||||
<stop
|
||||
id="stop3866"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3868"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="translate(0,-4)"
|
||||
xlink:href="#linearGradient3767"
|
||||
id="linearGradient3773"
|
||||
x1="22.116516"
|
||||
y1="55.717518"
|
||||
x2="17.328547"
|
||||
y2="21.31134"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3767">
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3769" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3771" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="translate(0,-4)"
|
||||
xlink:href="#linearGradient3777"
|
||||
id="linearGradient3783"
|
||||
x1="53.896763"
|
||||
y1="51.179787"
|
||||
x2="47.502235"
|
||||
y2="21.83742"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3777">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3779" />
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3781" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3794"
|
||||
id="radialGradient3800"
|
||||
cx="1"
|
||||
cy="45"
|
||||
fx="1"
|
||||
fy="45"
|
||||
r="41"
|
||||
gradientTransform="matrix(0.93348213,-2.2905276e-8,0,0.28687573,0.06651751,32.090592)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="24"
|
||||
x2="7"
|
||||
y1="43"
|
||||
x1="56"
|
||||
id="linearGradient1080"
|
||||
xlink:href="#linearGradient1078"
|
||||
gradientTransform="translate(0,-4)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient944"
|
||||
id="linearGradient946"
|
||||
x1="24.323317"
|
||||
y1="38.115891"
|
||||
x2="9.806756"
|
||||
y2="27.753984"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-4)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient952"
|
||||
id="linearGradient954"
|
||||
x1="51.042877"
|
||||
y1="39.422012"
|
||||
x2="35.269917"
|
||||
y2="27.405685"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-4)" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata2985">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:title>Std_ViewIvStereoInterleavedRows</dc:title>
|
||||
<dc:date>2020/12/20</dc:date>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier></dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<cc:license>https://www.gnu.org/copyleft/lesser.html</cc:license>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
id="path1020"
|
||||
d="M 3,16 H 61 V 46 H 42 C 35.259065,30.714814 27.983716,31.963913 22,46 H 3 Z"
|
||||
style="fill:url(#linearGradient1080);fill-opacity:1;stroke:#555753;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient946);fill-opacity:1;stroke:#280000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 31.401313,21.859905 H 8.1273987 V 38.360987 H 23.397057 l 6.834934,-7.827763 z"
|
||||
id="path921" />
|
||||
<path
|
||||
id="path921-8"
|
||||
d="M 32.632737,21.859905 H 55.906651 V 38.360987 H 40.636993 l -6.834934,-6.652253 z"
|
||||
style="fill:url(#linearGradient954);fill-opacity:1;stroke:#0b1521;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#babdb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 32.017025,33.189006 V 17.857777"
|
||||
id="path919" />
|
||||
<path
|
||||
style="fill:none;stroke:#babdb6;stroke-width:1.808;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.051724,17.655172 H 59 V 44 L 43.235996,43.938429 C 36.666589,28.519738 26.039445,30.454028 20.661358,44.030786 L 5.051724,44 Z"
|
||||
id="path1020-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#0b1521;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 35.004082,21.643537 0.06531,10.144218 c 3.212544,1.029984 5.005244,3.076287 7.22721,6.160544"
|
||||
id="path956" />
|
||||
<path
|
||||
id="path956-0"
|
||||
d="M 29.15557,21.542552 29.09026,31.68677 c -3.36274,1.130115 -5.441474,3.316313 -7.466666,6.269387"
|
||||
style="fill:none;stroke:#280000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1068"
|
||||
width="4.1252704"
|
||||
height="3.8789856"
|
||||
x="10.528675"
|
||||
y="24.322754"
|
||||
ry="0.43099841" />
|
||||
<rect
|
||||
ry="0.43099841"
|
||||
y="24.476677"
|
||||
x="37.527649"
|
||||
height="3.8789856"
|
||||
width="4.1252704"
|
||||
id="rect1068-5"
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.0488386,6.1571202 H 58.862069"
|
||||
id="path1119" />
|
||||
<path
|
||||
id="path1119-5"
|
||||
d="m 5.048839,6.1571202 h 53.81323"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="path1119-9"
|
||||
d="M 4.9804392,56.703342 H 58.793669"
|
||||
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 4.9804392,56.703342 H 58.793669"
|
||||
id="path1119-5-5" />
|
||||
<path
|
||||
id="path1119-6"
|
||||
d="M 5.0026606,30.400781 H 58.81589"
|
||||
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.002661,30.400781 H 58.81589"
|
||||
id="path1119-5-1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.9 KiB |
@@ -0,0 +1,218 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2980"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title1117">Std_ViewIvStereoOff</title>
|
||||
<defs
|
||||
id="defs2982">
|
||||
<linearGradient
|
||||
id="linearGradient944">
|
||||
<stop
|
||||
style="stop-color:#a40000;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop940" />
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop942" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient1078">
|
||||
<stop
|
||||
id="stop1074"
|
||||
offset="0"
|
||||
style="stop-color:#2e3436;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop1076"
|
||||
offset="1"
|
||||
style="stop-color:#babdb6;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3794">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3796" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3798" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3864">
|
||||
<stop
|
||||
id="stop3866"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3868"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="translate(0,-4)"
|
||||
xlink:href="#linearGradient3767"
|
||||
id="linearGradient3773"
|
||||
x1="22.116516"
|
||||
y1="55.717518"
|
||||
x2="17.328547"
|
||||
y2="21.31134"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3767">
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3769" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3771" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="translate(0,-4)"
|
||||
xlink:href="#linearGradient3777"
|
||||
id="linearGradient3783"
|
||||
x1="53.896763"
|
||||
y1="51.179787"
|
||||
x2="47.502235"
|
||||
y2="21.83742"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3777">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3779" />
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3781" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3794"
|
||||
id="radialGradient3800"
|
||||
cx="1"
|
||||
cy="45"
|
||||
fx="1"
|
||||
fy="45"
|
||||
r="41"
|
||||
gradientTransform="matrix(0.93348213,-2.2905276e-8,0,0.28687573,0.06651751,32.090592)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="24"
|
||||
x2="7"
|
||||
y1="43"
|
||||
x1="56"
|
||||
id="linearGradient1080"
|
||||
xlink:href="#linearGradient1078"
|
||||
gradientTransform="translate(0,-4)" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="17"
|
||||
x2="15"
|
||||
y1="47"
|
||||
x1="29"
|
||||
id="linearGradient3799"
|
||||
xlink:href="#linearGradient944"
|
||||
gradientTransform="translate(-6.0020978,-11.974588)" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata2985">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:title>Std_ViewIvStereoOff</dc:title>
|
||||
<dc:date>2020/12/20</dc:date>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier></dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<cc:license>https://www.gnu.org/copyleft/lesser.html</cc:license>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
id="path1020"
|
||||
d="M 3,16 H 61 V 46 H 42 C 35.259065,30.714814 27.983716,31.963913 22,46 H 3 Z"
|
||||
style="fill:url(#linearGradient1080);fill-opacity:1;stroke:#555753;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:#2e3436;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 31.401313,21.859905 H 8.1273987 V 38.360987 H 23.397057 l 6.834934,-7.827763 z"
|
||||
id="path921" />
|
||||
<path
|
||||
id="path921-8"
|
||||
d="M 32.632737,21.859905 H 55.906651 V 38.360987 H 40.636993 l -6.834934,-6.652253 z"
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:#2e3436;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#babdb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 32.017025,33.189006 V 17.857777"
|
||||
id="path919" />
|
||||
<path
|
||||
style="fill:none;stroke:#babdb6;stroke-width:1.808;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.051724,17.655172 H 59 V 44 L 43.235996,43.938429 C 36.666589,28.519738 26.039445,30.454028 20.661358,44.030786 L 5.051724,44 Z"
|
||||
id="path1020-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#2e3436;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 35.004082,21.643537 0.06531,10.144218 c 3.212544,1.029984 5.005244,3.076287 7.22721,6.160544"
|
||||
id="path956" />
|
||||
<path
|
||||
id="path956-0"
|
||||
d="M 29.15557,21.542552 29.09026,31.68677 c -3.36274,1.130115 -5.441474,3.316313 -7.466666,6.269387"
|
||||
style="fill:none;stroke:#2e3436;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1068"
|
||||
width="4.1252704"
|
||||
height="3.8789856"
|
||||
x="10.528675"
|
||||
y="24.322754"
|
||||
ry="0.43099841" />
|
||||
<rect
|
||||
ry="0.43099841"
|
||||
y="24.476677"
|
||||
x="37.527649"
|
||||
height="3.8789856"
|
||||
width="4.1252704"
|
||||
id="rect1068-5"
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="rect3761"
|
||||
d="m 8.9979027,3.0254115 -6.0000001,6 10.0000004,10.0000005 -10.0000004,10 6.0000001,6 10.0000003,-10 10,10 6,-6 -10,-10 10,-10.0000005 -6,-6 -10,10.0000005 z"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient3799);fill-opacity:1;fill-rule:evenodd;stroke:#280000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
<path
|
||||
id="rect3761-3"
|
||||
d="m 8.9979027,6.0254115 -3,3 10.0000003,10.0000005 -10.0000003,10 3,3 10.0000003,-10 10,10 3,-3 -10,-10 10,-10.0000005 -3,-3 -10,10.0000005 z"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ef2929;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.9 KiB |
@@ -0,0 +1,262 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2980"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title1117">Std_ViewIvStereoQuadBuff</title>
|
||||
<defs
|
||||
id="defs2982">
|
||||
<linearGradient
|
||||
id="linearGradient952">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop948" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop950" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient944">
|
||||
<stop
|
||||
style="stop-color:#a40000;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop940" />
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop942" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient1078">
|
||||
<stop
|
||||
id="stop1074"
|
||||
offset="0"
|
||||
style="stop-color:#2e3436;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop1076"
|
||||
offset="1"
|
||||
style="stop-color:#babdb6;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3794">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3796" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3798" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3864">
|
||||
<stop
|
||||
id="stop3866"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3868"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="translate(0,-4)"
|
||||
xlink:href="#linearGradient3767"
|
||||
id="linearGradient3773"
|
||||
x1="22.116516"
|
||||
y1="55.717518"
|
||||
x2="17.328547"
|
||||
y2="21.31134"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3767">
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3769" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3771" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="translate(0,-4)"
|
||||
xlink:href="#linearGradient3777"
|
||||
id="linearGradient3783"
|
||||
x1="53.896763"
|
||||
y1="51.179787"
|
||||
x2="47.502235"
|
||||
y2="21.83742"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3777">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3779" />
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3781" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3794"
|
||||
id="radialGradient3800"
|
||||
cx="1"
|
||||
cy="45"
|
||||
fx="1"
|
||||
fy="45"
|
||||
r="41"
|
||||
gradientTransform="matrix(0.93348213,-2.2905276e-8,0,0.28687573,0.06651751,32.090592)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="24"
|
||||
x2="7"
|
||||
y1="43"
|
||||
x1="56"
|
||||
id="linearGradient1080"
|
||||
xlink:href="#linearGradient1078"
|
||||
gradientTransform="translate(0,4)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient944"
|
||||
id="linearGradient946"
|
||||
x1="24.323317"
|
||||
y1="38.115891"
|
||||
x2="9.806756"
|
||||
y2="27.753984"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,4)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient952"
|
||||
id="linearGradient954"
|
||||
x1="51.042877"
|
||||
y1="39.422012"
|
||||
x2="35.269917"
|
||||
y2="27.405685"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,4)" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata2985">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:title>Std_ViewIvStereoQuadBuff</dc:title>
|
||||
<dc:date>2020/12/20</dc:date>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier></dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<cc:license>https://www.gnu.org/copyleft/lesser.html</cc:license>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
id="path1024"
|
||||
d="M 5,25 19,10 c 3,-3 6.886274,-0.7693802 6,4"
|
||||
style="fill:none;stroke:#555753;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 59,25 45,10 C 42,7 38.113726,9.2306198 39,14"
|
||||
id="path1024-4" />
|
||||
<path
|
||||
id="path1020"
|
||||
d="M 3,24 H 61 V 54 H 42 C 35.259065,38.714814 27.983716,39.963913 22,54 H 3 Z"
|
||||
style="fill:url(#linearGradient1080);fill-opacity:1;stroke:#555753;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient946);fill-opacity:1;stroke:#280000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 31.401313,29.859905 H 8.1273987 V 46.360987 H 23.397057 l 6.834934,-7.827763 z"
|
||||
id="path921" />
|
||||
<path
|
||||
style="fill:none;stroke:#babdb6;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5,25 19,10 c 3,-3 6.886274,-0.7693802 6,4"
|
||||
id="path1024-6" />
|
||||
<path
|
||||
id="path1024-6-3"
|
||||
d="M 59,25 45,10 C 42,7 38.113726,9.2306198 39,14"
|
||||
style="fill:none;stroke:#babdb6;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:#babdb6"
|
||||
d="M 18.656075,11.573258 6.095549,24.99578 l 7.6964,0.123143 z"
|
||||
id="path897" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 19.504761,12.185034 15.15102,24.201361"
|
||||
id="path899" />
|
||||
<path
|
||||
id="path897-0"
|
||||
d="m 45.102561,11.388544 12.560526,13.422522 -7.6964,0.123143 z"
|
||||
style="fill:#babdb6" />
|
||||
<path
|
||||
id="path899-2"
|
||||
d="m 44.253875,12.00032 4.353741,12.016327"
|
||||
style="fill:none;stroke:#555753;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="path921-8"
|
||||
d="M 32.632737,29.859905 H 55.906651 V 46.360987 H 40.636993 l -6.834934,-6.652253 z"
|
||||
style="fill:url(#linearGradient954);fill-opacity:1;stroke:#0b1521;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#babdb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 32.017025,41.189006 V 25.857777"
|
||||
id="path919" />
|
||||
<path
|
||||
style="fill:none;stroke:#babdb6;stroke-width:1.808;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.051724,25.655172 H 59 V 52 L 43.235996,51.938429 C 36.666589,36.519738 26.039445,38.454028 20.661358,52.030786 L 5.051724,52 Z"
|
||||
id="path1020-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#0b1521;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 35.004082,29.643537 0.06531,10.144218 c 3.212544,1.029984 5.005244,3.076287 7.22721,6.160544"
|
||||
id="path956" />
|
||||
<path
|
||||
id="path956-0"
|
||||
d="M 29.15557,29.542552 29.09026,39.68677 c -3.36274,1.130115 -5.441474,3.316313 -7.466666,6.269387"
|
||||
style="fill:none;stroke:#280000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1068"
|
||||
width="4.1252704"
|
||||
height="3.8789856"
|
||||
x="10.528675"
|
||||
y="32.322754"
|
||||
ry="0.43099841" />
|
||||
<rect
|
||||
ry="0.43099841"
|
||||
y="32.476677"
|
||||
x="37.527649"
|
||||
height="3.8789856"
|
||||
width="4.1252704"
|
||||
id="rect1068-5"
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.2 KiB |
@@ -0,0 +1,230 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2980"
|
||||
version="1.1">
|
||||
<title
|
||||
id="title1117">Std_ViewIvStereoRedGreen</title>
|
||||
<defs
|
||||
id="defs2982">
|
||||
<linearGradient
|
||||
id="linearGradient952">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop948" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop950" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient944">
|
||||
<stop
|
||||
style="stop-color:#a40000;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop940" />
|
||||
<stop
|
||||
style="stop-color:#ef2929;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop942" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient1078">
|
||||
<stop
|
||||
id="stop1074"
|
||||
offset="0"
|
||||
style="stop-color:#2e3436;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop1076"
|
||||
offset="1"
|
||||
style="stop-color:#babdb6;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3794">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3796" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3798" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3864">
|
||||
<stop
|
||||
id="stop3866"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3868"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="translate(0,-4)"
|
||||
xlink:href="#linearGradient3767"
|
||||
id="linearGradient3773"
|
||||
x1="22.116516"
|
||||
y1="55.717518"
|
||||
x2="17.328547"
|
||||
y2="21.31134"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3767">
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3769" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3771" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="translate(0,-4)"
|
||||
xlink:href="#linearGradient3777"
|
||||
id="linearGradient3783"
|
||||
x1="53.896763"
|
||||
y1="51.179787"
|
||||
x2="47.502235"
|
||||
y2="21.83742"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient3777">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3779" />
|
||||
<stop
|
||||
style="stop-color:#3465a4;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3781" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
xlink:href="#linearGradient3794"
|
||||
id="radialGradient3800"
|
||||
cx="1"
|
||||
cy="45"
|
||||
fx="1"
|
||||
fy="45"
|
||||
r="41"
|
||||
gradientTransform="matrix(0.93348213,-2.2905276e-8,0,0.28687573,0.06651751,32.090592)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="24"
|
||||
x2="7"
|
||||
y1="43"
|
||||
x1="56"
|
||||
id="linearGradient1080"
|
||||
xlink:href="#linearGradient1078"
|
||||
gradientTransform="translate(0,-4)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient944"
|
||||
id="linearGradient946"
|
||||
x1="24.323317"
|
||||
y1="38.115891"
|
||||
x2="9.806756"
|
||||
y2="27.753984"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-4)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient952"
|
||||
id="linearGradient954"
|
||||
x1="51.042877"
|
||||
y1="39.422012"
|
||||
x2="35.269917"
|
||||
y2="27.405685"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-4)" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata2985">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:title>Std_ViewIvStereoRedGreen</dc:title>
|
||||
<dc:date>2020/12/20</dc:date>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier></dc:identifier>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<cc:license>https://www.gnu.org/copyleft/lesser.html</cc:license>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
id="path1020"
|
||||
d="M 3,16 H 61 V 46 H 42 C 35.259065,30.714814 27.983716,31.963913 22,46 H 3 Z"
|
||||
style="fill:url(#linearGradient1080);fill-opacity:1;stroke:#555753;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:url(#linearGradient946);fill-opacity:1;stroke:#280000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="M 31.401313,21.859905 H 8.1273987 V 38.360987 H 23.397057 l 6.834934,-7.827763 z"
|
||||
id="path921" />
|
||||
<path
|
||||
id="path921-8"
|
||||
d="M 32.632737,21.859905 H 55.906651 V 38.360987 H 40.636993 l -6.834934,-6.652253 z"
|
||||
style="fill:url(#linearGradient954);fill-opacity:1;stroke:#0b1521;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#babdb6;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 32.017025,33.189006 V 17.857777"
|
||||
id="path919" />
|
||||
<path
|
||||
style="fill:none;stroke:#babdb6;stroke-width:1.808;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.051724,17.655172 H 59 V 44 L 43.235996,43.938429 C 36.666589,28.519738 26.039445,30.454028 20.661358,44.030786 L 5.051724,44 Z"
|
||||
id="path1020-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#0b1521;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 35.004082,21.643537 0.06531,10.144218 c 3.212544,1.029984 5.005244,3.076287 7.22721,6.160544"
|
||||
id="path956" />
|
||||
<path
|
||||
id="path956-0"
|
||||
d="M 29.15557,21.542552 29.09026,31.68677 c -3.36274,1.130115 -5.441474,3.316313 -7.466666,6.269387"
|
||||
style="fill:none;stroke:#280000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1068"
|
||||
width="4.1252704"
|
||||
height="3.8789856"
|
||||
x="10.528675"
|
||||
y="24.322754"
|
||||
ry="0.43099841" />
|
||||
<rect
|
||||
ry="0.43099841"
|
||||
y="24.476677"
|
||||
x="37.527649"
|
||||
height="3.8789856"
|
||||
width="4.1252704"
|
||||
id="rect1068-5"
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.5 KiB |
@@ -0,0 +1,142 @@
|
||||
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.1"
|
||||
id="svg6248"
|
||||
height="64px"
|
||||
width="64px">
|
||||
<title
|
||||
id="title856">Std_ViewTrimetric</title>
|
||||
<defs
|
||||
id="defs6250">
|
||||
<linearGradient
|
||||
id="linearGradient3253">
|
||||
<stop
|
||||
id="stop3255"
|
||||
offset="0"
|
||||
style="stop-color:#89d5f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3257"
|
||||
offset="1"
|
||||
style="stop-color:#00899e;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6816">
|
||||
<stop
|
||||
id="stop6818"
|
||||
offset="0"
|
||||
style="stop-color:#000000;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6820"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6781">
|
||||
<stop
|
||||
id="stop6783"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop6785"
|
||||
offset="1"
|
||||
style="stop-color:#3465a4;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.1581633,0,0,0.6558985,-7.29237,16.126077)"
|
||||
r="25.198714"
|
||||
fy="51.929391"
|
||||
fx="33.369828"
|
||||
cy="51.929391"
|
||||
cx="33.369828"
|
||||
id="radialGradient6822"
|
||||
xlink:href="#linearGradient6816" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9724373,-0.105657,5.0523169e-2,0.4650009,-0.3519546,9.5854384)"
|
||||
r="27.986705"
|
||||
fy="17.013988"
|
||||
fx="18.417862"
|
||||
cy="17.013988"
|
||||
cx="18.417862"
|
||||
id="radialGradient3259"
|
||||
xlink:href="#linearGradient3253" />
|
||||
<radialGradient
|
||||
r="27.986705"
|
||||
fy="17.013988"
|
||||
fx="18.417862"
|
||||
cy="17.013988"
|
||||
cx="18.417862"
|
||||
gradientTransform="matrix(0.9724373,-0.105657,0.05052317,0.4650009,-0.3519546,9.5854384)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="radialGradient3270"
|
||||
xlink:href="#linearGradient3253" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata6253">
|
||||
<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>Std_ViewTrimetric</dc:title>
|
||||
<dc:date>2020/12/10</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>[bitacovir]</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD LGPL2+</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>FreeCAD</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:relation>http://www.freecadweb.org/wiki/index.php?title=Artwork</dc:relation>
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:description />
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(-1,0,0,0.99363058,4,0.0382165)"
|
||||
id="g3913-7" />
|
||||
<path
|
||||
id="path858"
|
||||
d="M 5,17 32,5 59,17 V 47 L 32,59 5,47 Z"
|
||||
style="fill:none;stroke:#042a2a;stroke-width:6;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#34e0e2;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5,17 32,5 59,17 V 47 L 32,59 5,47 Z"
|
||||
id="path858-8" />
|
||||
<g
|
||||
style="font-size:37.3333px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#34e0e2;stroke:#042a2a;stroke-width:2.274;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="text877"
|
||||
aria-label="T">
|
||||
<path
|
||||
id="path850"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:37.3333px;font-family:Cambria;-inkscape-font-specification:Cambria;stroke-width:2.274;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 22.229531,19.882719 h 19.723942 v 6.343745 h -1.786457 q -0.401041,-1.567707 -0.802083,-2.479165 -0.382812,-0.911457 -0.820312,-1.385415 -0.437499,-0.473958 -0.947915,-0.674479 -0.492187,-0.20052 -1.494791,-0.20052 h -2.315102 v 18.66665 q 0,1.07552 0.109375,1.713541 0.127604,0.63802 0.364583,1.020832 0.255208,0.364583 0.674479,0.583333 0.41927,0.20052 1.312498,0.401041 v 0.893229 h -8.330722 v -0.893229 q 0.546875,-0.127604 0.966145,-0.273437 0.419271,-0.145833 0.674479,-0.346354 0.273437,-0.21875 0.4375,-0.546875 0.182291,-0.328124 0.273437,-0.893228 0.109375,-0.565104 0.109375,-1.658853 v -18.66665 h -2.296873 q -0.85677,0 -1.421874,0.164062 -0.546875,0.164062 -1.020833,0.692708 -0.473957,0.510416 -0.874999,1.476561 -0.382812,0.947916 -0.729166,2.406248 h -1.804686 z" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.3 KiB |
@@ -141,6 +141,7 @@
|
||||
<file>DrawStyleHiddenLine.svg</file>
|
||||
<file>DrawStyleNoShading.svg</file>
|
||||
<file>user.svg</file>
|
||||
<file>Std_AxisCross.svg</file>
|
||||
<file>Std_CoordinateSystem.svg</file>
|
||||
<file>Std_CoordinateSystem_alt.svg</file>
|
||||
<file>Std_Placement.svg</file>
|
||||
@@ -155,13 +156,25 @@
|
||||
<file>Std_CloseActiveWindow.svg</file>
|
||||
<file>Std_CloseAllWindows.svg</file>
|
||||
<file>Std_Export.svg</file>
|
||||
<file>Std_HideObjects.svg</file>
|
||||
<file>Std_HideSelection.svg</file>
|
||||
<file>Std_Import.svg</file>
|
||||
<file>Std_MergeProjects.svg</file>
|
||||
<file>Std_PrintPdf.svg</file>
|
||||
<file>Std_RandomColor.svg</file>
|
||||
<file>Std_RecentFiles.svg</file>
|
||||
<file>Std_Revert.svg</file>
|
||||
<file>Std_SaveAll.svg</file>
|
||||
<file>Std_SaveCopy.svg</file>
|
||||
<file>Std_SelectVisibleObjects.svg</file>
|
||||
<file>Std_SetAppearance.svg</file>
|
||||
<file>Std_ShowObjects.svg</file>
|
||||
<file>Std_ShowSelection.svg</file>
|
||||
<file>Std_TextureMapping.svg</file>
|
||||
<file>Std_ToggleClipPlane.svg</file>
|
||||
<file>Std_ToggleNavigation.svg</file>
|
||||
<file>Std_ToggleObjects.svg</file>
|
||||
<file>Std_ToggleVisibility.svg</file>
|
||||
<file>Std_Tool1.svg</file>
|
||||
<file>Std_Tool2.svg</file>
|
||||
<file>Std_Tool3.svg</file>
|
||||
@@ -174,6 +187,15 @@
|
||||
<file>Std_Tool10.svg</file>
|
||||
<file>Std_Tool11.svg</file>
|
||||
<file>Std_Tool12.svg</file>
|
||||
<file>Std_ViewDimetric.svg</file>
|
||||
<file>Std_ViewHome.svg</file>
|
||||
<file>Std_ViewIvIssueCamPos.svg</file>
|
||||
<file>Std_ViewIvStereoInterleavedColumns.svg</file>
|
||||
<file>Std_ViewIvStereoInterleavedRows.svg</file>
|
||||
<file>Std_ViewIvStereoOff.svg</file>
|
||||
<file>Std_ViewIvStereoQuadBuff.svg</file>
|
||||
<file>Std_ViewIvStereoRedGreen.svg</file>
|
||||
<file>Std_ViewTrimetric.svg</file>
|
||||
<file>Std_WindowCascade.svg</file>
|
||||
<file>Std_WindowNext.svg</file>
|
||||
<file>Std_WindowPrev.svg</file>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2503,6 +2571,16 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3347,10 +3425,6 @@ Mouse tilting is not disabled by this setting.</source>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation type="unfinished"></translation>
|
||||
@@ -3399,6 +3473,22 @@ Mouse tilting is not disabled by this setting.</source>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8723,6 +8813,21 @@ Document: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8768,6 +8873,21 @@ Document: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Wysig</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation type="unfinished">Import</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Vee uit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation type="unfinished">Make link group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation type="unfinished">Make link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation type="unfinished">Make sub-link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation type="unfinished">Import links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation type="unfinished">Import all links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation>Belyn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Plasing</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation>Omskep</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Meet afstand</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2554,6 +2622,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3416,10 +3496,6 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation type="unfinished">Rotations in 3D will use current cursor position as center for rotation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation type="unfinished">Rotate at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation type="unfinished">Isometric</translation>
|
||||
@@ -3468,6 +3544,22 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation type="unfinished">Default camera orientation when creating a new document or selecting the home view</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8822,6 +8914,21 @@ Document: </translation>
|
||||
<translation>Agteraansig</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standaardaansig</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8867,6 +8974,21 @@ Document: </translation>
|
||||
<translation type="unfinished">Rotate the view by 90° clockwise</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standaardaansig</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>تعديل</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>استيراد</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>حذف</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation type="unfinished">Make link group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation type="unfinished">Make link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation type="unfinished">Make sub-link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation type="unfinished">Import links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation type="unfinished">Import all links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation type="unfinished">Align</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>الموضع</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation type="unfinished">Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>قياس المسافة</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2555,6 +2623,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3417,17 +3497,13 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation type="unfinished">Rotations in 3D will use current cursor position as center for rotation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation type="unfinished">Rotate at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation type="unfinished">Isometric</translation>
|
||||
<translation>متساوي القياس</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Dimetric</source>
|
||||
<translation type="unfinished">Dimetric</translation>
|
||||
<translation>ثنائي الأبعاد</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Trimetric</source>
|
||||
@@ -3469,6 +3545,22 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation type="unfinished">Default camera orientation when creating a new document or selecting the home view</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8580,7 +8672,7 @@ Document: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Dimetric</source>
|
||||
<translation type="unfinished">Dimetric</translation>
|
||||
<translation>ثنائي الأبعاد</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Set to dimetric view</source>
|
||||
@@ -8700,7 +8792,7 @@ Document: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation type="unfinished">Isometric</translation>
|
||||
<translation>متساوي القياس</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Set to isometric view</source>
|
||||
@@ -8827,6 +8919,21 @@ Document: </translation>
|
||||
<translation type="unfinished">Set to rear view</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation type="unfinished">Standard-View</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8872,6 +8979,21 @@ Document: </translation>
|
||||
<translation type="unfinished">Rotate the view by 90° clockwise</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation type="unfinished">Standard-View</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
@@ -9415,7 +9537,7 @@ Do you still want to proceed?</translation>
|
||||
<name>ViewIsometricCmd</name>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation type="unfinished">Isometric</translation>
|
||||
<translation>متساوي القياس</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Set NaviCube to Isometric mode</source>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Edita</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Importa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Elimina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation>Crea un grup d'enllaç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation>Crea un enllaç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation>Crea un subenllaç</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation>Importa enllaços</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation>Importa tots els enllaços</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation type="unfinished">Align</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Posició</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation>Transformar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Mesura la distància</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2544,6 +2612,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3401,10 +3481,6 @@ Mouse tilting is not disabled by this setting.</source>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation>Les rotacions en 3D utilitzaran la posició actual del cursor com a centre de rotació</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation>Rotació centrada en el cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Isomètrica</translation>
|
||||
@@ -3453,6 +3529,22 @@ Mouse tilting is not disabled by this setting.</source>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation type="unfinished">Default camera orientation when creating a new document or selecting the home view</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8793,6 +8885,21 @@ Document: </translation>
|
||||
<translation>Estableix la vista posterior</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Vista estàndard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8838,6 +8945,21 @@ Document: </translation>
|
||||
<translation>Gireu la vista 90° en sentit horari</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Vista estàndard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Upravit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Import</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Odstranit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation type="unfinished">Make link group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation type="unfinished">Make link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation type="unfinished">Make sub-link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation type="unfinished">Import links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation type="unfinished">Import all links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation>Zarovnat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Umístění</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation>Transformace</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Změřit vzdálenost</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -186,11 +254,11 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>&Clear</source>
|
||||
<translation type="unfinished">&Clear</translation>
|
||||
<translation>&Vymazat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Revert to last calculated value (as constant)</source>
|
||||
<translation type="unfinished">Revert to last calculated value (as constant)</translation>
|
||||
<translation>Vrátit se k poslední vypočtené hodnotě (jako konstanta)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -425,7 +493,7 @@ while doing a left or right click and move the mouse up or down</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Collection</source>
|
||||
<translation type="unfinished">Collection</translation>
|
||||
<translation>Kolekce</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -440,11 +508,11 @@ while doing a left or right click and move the mouse up or down</source>
|
||||
</message>
|
||||
<message>
|
||||
<source> "</source>
|
||||
<translation type="unfinished"> "</translation>
|
||||
<translation> "</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>"</source>
|
||||
<translation type="unfinished">"</translation>
|
||||
<translation>"</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -609,7 +677,7 @@ while doing a left or right click and move the mouse up or down</source>
|
||||
<name>Gui::Dialog::DlgAddProperty</name>
|
||||
<message>
|
||||
<source>Add property</source>
|
||||
<translation type="unfinished">Add property</translation>
|
||||
<translation>Přidat vlastnost</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Type</source>
|
||||
@@ -625,7 +693,7 @@ while doing a left or right click and move the mouse up or down</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Verbose description of the new property.</source>
|
||||
<translation type="unfinished">Verbose description of the new property.</translation>
|
||||
<translation>Podrobný popis nové vlastnosti.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Documentation</source>
|
||||
@@ -637,15 +705,15 @@ In this case the prefix will be automatically trimmed when shown in the property
|
||||
However, the property is still used in a script with the full name, like 'obj.Group_Name'.
|
||||
|
||||
If this is not ticked, then the property must be uniquely named, and it is accessed like 'obj.Name'.</source>
|
||||
<translation type="unfinished">Prefix the property name with the group name in the form 'Group_Name' to avoid conflicts with an existing property.
|
||||
In this case the prefix will be automatically trimmed when shown in the property editor.
|
||||
However, the property is still used in a script with the full name, like 'obj.Group_Name'.
|
||||
<translation>Začněte název vlastnosti jménem skupiny ve formě 'Skupina_Nazev', aby se předešlo konfliktům s existující vlastností.
|
||||
Název skupiny bude automaticky oříznut při zobrazení v editoru vlastností.
|
||||
Vlastnost se však stále používá ve skriptu s úplným jménem jako 'obj.Skupina_Nazev'.
|
||||
|
||||
If this is not ticked, then the property must be uniquely named, and it is accessed like 'obj.Name'.</translation>
|
||||
Pokud toto není zaškrtnuto, musí být vlastnost pojmenována jedinečně a bude přístupná jako 'obj.Nazev'.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Prefix group name</source>
|
||||
<translation type="unfinished">Prefix group name</translation>
|
||||
<translation>Začněte název jménem skupiny</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -1034,7 +1102,7 @@ If this is not ticked, then the property must be uniquely named, and it is acces
|
||||
</message>
|
||||
<message>
|
||||
<source>%1 module not loaded</source>
|
||||
<translation type="unfinished">%1 module not loaded</translation>
|
||||
<translation>Modul %1 nebyl načten</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -1296,39 +1364,39 @@ If this is not ticked, then the property must be uniquely named, and it is acces
|
||||
</message>
|
||||
<message>
|
||||
<source>Code lines will be numbered </source>
|
||||
<translation type="unfinished">Code lines will be numbered </translation>
|
||||
<translation>Řádky kódu budou očíslovány </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Pressing <Tab> will insert amount of defined indent size</source>
|
||||
<translation type="unfinished">Pressing <Tab> will insert amount of defined indent size</translation>
|
||||
<translation>Stisknutí <Tab> vloží množství definovaného odsazení</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Tabulator raster (how many spaces)</source>
|
||||
<translation type="unfinished">Tabulator raster (how many spaces)</translation>
|
||||
<translation>Velikost tabulátoru (počet mezer)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>How many spaces will be inserted when pressing <Tab></source>
|
||||
<translation type="unfinished">How many spaces will be inserted when pressing <Tab></translation>
|
||||
<translation>Kolik mezer bude vloženo při stisknutí <Tab></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Pressing <Tab> will insert a tabulator with defined tab size</source>
|
||||
<translation type="unfinished">Pressing <Tab> will insert a tabulator with defined tab size</translation>
|
||||
<translation>Stisknutí <Tab> vloží odrážku definované velikosti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Display items</source>
|
||||
<translation type="unfinished">Display items</translation>
|
||||
<translation>Zobrazit položky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Font size to be used for selected code type</source>
|
||||
<translation type="unfinished">Font size to be used for selected code type</translation>
|
||||
<translation>Velikost fontu použitá pro vybraný typ kódu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Color and font settings will be applied to selected type</source>
|
||||
<translation type="unfinished">Color and font settings will be applied to selected type</translation>
|
||||
<translation>Nastavení barev a fontu bude použito na vybraný typ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Font family to be used for selected code type</source>
|
||||
<translation type="unfinished">Font family to be used for selected code type</translation>
|
||||
<translation>Rodina písma, která se použije pro vybraný typ kódu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Color:</source>
|
||||
@@ -1391,31 +1459,31 @@ If this is not ticked, then the property must be uniquely named, and it is acces
|
||||
</message>
|
||||
<message>
|
||||
<source>Language of the application's user interface</source>
|
||||
<translation type="unfinished">Language of the application's user interface</translation>
|
||||
<translation>Jazyk uživatelského rozhraní aplikace</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>How many files should be listed in recent files list</source>
|
||||
<translation type="unfinished">How many files should be listed in recent files list</translation>
|
||||
<translation>Kolik souborů by mělo být uvedeno v seznamu nedávných souborů</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Background of the main window will consist of tiles of a special image.
|
||||
See the FreeCAD Wiki for details about the image.</source>
|
||||
<translation type="unfinished">Background of the main window will consist of tiles of a special image.
|
||||
See the FreeCAD Wiki for details about the image.</translation>
|
||||
<translation>Pozadí hlavního okna se bude skládat z dlaždic speciálního obrázku.
|
||||
Podrobnosti o naleznete ve FreeCAD Wiki.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Style sheet how user interface will look like</source>
|
||||
<translation type="unfinished">Style sheet how user interface will look like</translation>
|
||||
<translation>Style sheet vzhledu uživatelské rozhraní</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Choose your preference for toolbar icon size. You can adjust
|
||||
this according to your screen size or personal taste</source>
|
||||
<translation type="unfinished">Choose your preference for toolbar icon size. You can adjust
|
||||
this according to your screen size or personal taste</translation>
|
||||
<translation>Vyberte si preferovanou velikost ikon v panelu nástrojů. Můžete ji upravit
|
||||
podle velikosti obrazovky nebo osobní preference</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Tree view mode:</source>
|
||||
<translation type="unfinished">Tree view mode:</translation>
|
||||
<translation>Režim zobrazení ve stromu:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Customize how tree view is shown in the panel (restart required).
|
||||
@@ -1423,31 +1491,31 @@ this according to your screen size or personal taste</translation>
|
||||
'ComboView': combine tree view and property view into one panel.
|
||||
'TreeView and PropertyView': split tree view and property view into separate panel.
|
||||
'Both': keep all three panels, and you can have two sets of tree view and property view.</source>
|
||||
<translation type="unfinished">Customize how tree view is shown in the panel (restart required).
|
||||
<translation>Přizpůsobte si, jak je v panelu zobrazeno zobrazení stromu (vyžaduje restart).
|
||||
|
||||
'ComboView': combine tree view and property view into one panel.
|
||||
'TreeView and PropertyView': split tree view and property view into separate panel.
|
||||
'Both': keep all three panels, and you can have two sets of tree view and property view.</translation>
|
||||
'ComboView': kombinovat zobrazení stromu a zobrazení vlastností v jednom panelu.
|
||||
'TreeView and PropertyView': rozdělit zobrazení ve stromě a zobrazení vlastností do samostatného panelu.
|
||||
'Both': zachovat všechny tři panely, můžete mít dvě sady zobrazení stromu a zobrazení vlastnosti.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>A Splash screen is a small loading window that is shown
|
||||
when FreeCAD is launching. If this option is checked, FreeCAD will
|
||||
display the splash screen</source>
|
||||
<translation type="unfinished">A Splash screen is a small loading window that is shown
|
||||
when FreeCAD is launching. If this option is checked, FreeCAD will
|
||||
display the splash screen</translation>
|
||||
<translation>Splash screen je malé načítací okno, které se zobrazí
|
||||
při spouštění FreeCADu. Je-li tato volba zaškrtnuta,
|
||||
FreeCAD toto okno zobrazí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Choose which workbench will be activated and shown
|
||||
after FreeCAD launches</source>
|
||||
<translation type="unfinished">Choose which workbench will be activated and shown
|
||||
after FreeCAD launches</translation>
|
||||
<translation>Vyberte, které pracovní prostředí bude aktivováno a zobrazeno
|
||||
po spuštění FreeCADu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Words will be wrapped when they exceed available
|
||||
horizontal space in Python console</source>
|
||||
<translation type="unfinished">Words will be wrapped when they exceed available
|
||||
horizontal space in Python console</translation>
|
||||
<translation>Slova budou zalomena, pokud přesáhnou dostupné
|
||||
místo v konzoli Pythonu</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -1482,11 +1550,11 @@ horizontal space in Python console</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>TreeView and PropertyView</source>
|
||||
<translation type="unfinished">TreeView and PropertyView</translation>
|
||||
<translation>TreeView a PropertyView</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Both</source>
|
||||
<translation type="unfinished">Both</translation>
|
||||
<translation>Obě</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -1563,7 +1631,7 @@ horizontal space in Python console</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Toolbar</source>
|
||||
<translation type="unfinished">Toolbar</translation>
|
||||
<translation>Panel nástrojů</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -1648,20 +1716,20 @@ Možná je chyba v přístupových právech k souboru?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Do not show again</source>
|
||||
<translation type="unfinished">Do not show again</translation>
|
||||
<translation>Znovu nezobrazovat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Guided Walkthrough</source>
|
||||
<translation type="unfinished">Guided Walkthrough</translation>
|
||||
<translation>Komentovaná prohlídka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This will guide you in setting up this macro in a custom global toolbar. Instructions will be in red text inside the dialog.
|
||||
|
||||
Note: your changes will be applied when you next switch workbenches
|
||||
</source>
|
||||
<translation type="unfinished">This will guide you in setting up this macro in a custom global toolbar. Instructions will be in red text inside the dialog.
|
||||
<translation>Tento průvodce vás provede nastavením tohoto makra na vaší globální nástrojovou lištu. Instrukce budou v dialogovém okně v červeně.
|
||||
|
||||
Note: your changes will be applied when you next switch workbenches
|
||||
Poznámka: změny budou aplikovány při dalším přepnutí pracovních prostředí (workbench)
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -1670,7 +1738,7 @@ Note: your changes will be applied when you next switch workbenches
|
||||
</message>
|
||||
<message>
|
||||
<source>Walkthrough instructions: Fill in missing fields (optional) then click Add, then Close</source>
|
||||
<translation type="unfinished">Walkthrough instructions: Fill in missing fields (optional) then click Add, then Close</translation>
|
||||
<translation>Instrukce průvodce: Vyplňte chybějící pole (volitelné) a klikněte na tlačítko Přidat, poté Zavřít</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Walkthrough, dialog 1 of 1</source>
|
||||
@@ -1682,11 +1750,11 @@ Note: your changes will be applied when you next switch workbenches
|
||||
</message>
|
||||
<message>
|
||||
<source>Walkthrough instructions: Click right arrow button (->), then Close.</source>
|
||||
<translation type="unfinished">Walkthrough instructions: Click right arrow button (->), then Close.</translation>
|
||||
<translation>Instrukce průvodce: Klikněte na tlačítko šipky doprava (->), a potom Zavřít.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Walkthrough instructions: Click New, then right arrow (->) button, then Close.</source>
|
||||
<translation type="unfinished">Walkthrough instructions: Click New, then right arrow (->) button, then Close.</translation>
|
||||
<translation>Instrukce průvodce: Klikněte na Nový, potom na pravou šipku (->) a potom Zavřít.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -1850,15 +1918,15 @@ Specify another directory, please.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Quick search</source>
|
||||
<translation type="unfinished">Quick search</translation>
|
||||
<translation>Rychlé hledání</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Type in a group name to find it</source>
|
||||
<translation type="unfinished">Type in a group name to find it</translation>
|
||||
<translation>Zadejte název skupiny pro její nalezení</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search Group</source>
|
||||
<translation type="unfinished">Search Group</translation>
|
||||
<translation>Vyhledat skupinu</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -1940,7 +2008,7 @@ Specify another directory, please.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Search Group</source>
|
||||
<translation type="unfinished">Search Group</translation>
|
||||
<translation>Vyhledat skupinu</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -2037,7 +2105,7 @@ Specify another directory, please.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Program version:</source>
|
||||
<translation type="unfinished">Program version:</translation>
|
||||
<translation>Verze programu:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -2111,11 +2179,11 @@ Specify another directory, please.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Filter by type</source>
|
||||
<translation type="unfinished">Filter by type</translation>
|
||||
<translation>Filtrovat podle typu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sync sub-object selection</source>
|
||||
<translation type="unfinished">Sync sub-object selection</translation>
|
||||
<translation>Synchronizovat výběr sub-objektu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Reset</source>
|
||||
@@ -2127,7 +2195,7 @@ Specify another directory, please.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>If enabled, then 3D view selection will be synchronized with full object hierarchy.</source>
|
||||
<translation type="unfinished">If enabled, then 3D view selection will be synchronized with full object hierarchy.</translation>
|
||||
<translation>Je-li povoleno, výběr 3D zobrazení bude synchronizován s celou hierarchií objektu.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -2190,91 +2258,91 @@ Specify another directory, please.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Log messages will be recorded</source>
|
||||
<translation type="unfinished">Log messages will be recorded</translation>
|
||||
<translation>Logovací zprávy budou zaznamenány</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Warnings will be recorded</source>
|
||||
<translation type="unfinished">Warnings will be recorded</translation>
|
||||
<translation>Upozornění budou zaznamenána</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error messages will be recorded</source>
|
||||
<translation type="unfinished">Error messages will be recorded</translation>
|
||||
<translation>Chybové zprávy budou zaznamenány</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>When an error has occurred, the Report View dialog becomes visible
|
||||
on-screen while displaying the error</source>
|
||||
<translation type="unfinished">When an error has occurred, the Report View dialog becomes visible
|
||||
on-screen while displaying the error</translation>
|
||||
<translation>Když dojde k chybě, zobrazí se dialogové okno reportu
|
||||
při zobrazení chyby</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show report view on error</source>
|
||||
<translation type="unfinished">Show report view on error</translation>
|
||||
<translation>Zobrazit report při chybě</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>When a warning has occurred, the Report View dialog becomes visible
|
||||
on-screen while displaying the warning</source>
|
||||
<translation type="unfinished">When a warning has occurred, the Report View dialog becomes visible
|
||||
on-screen while displaying the warning</translation>
|
||||
<translation>Když dojde k varování, zobrazí se dialogové okno reportu
|
||||
při zobrazení varování</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show report view on warning</source>
|
||||
<translation type="unfinished">Show report view on warning</translation>
|
||||
<translation>Zobrazit report při varování</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>When a normal message has occurred, the Report View dialog becomes visible
|
||||
on-screen while displaying the message</source>
|
||||
<translation type="unfinished">When a normal message has occurred, the Report View dialog becomes visible
|
||||
on-screen while displaying the message</translation>
|
||||
<translation>Když se objeví normální zpráva, zobrazí se dialogové okno reportu
|
||||
při zobrazení této zprávy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show report view on normal message</source>
|
||||
<translation type="unfinished">Show report view on normal message</translation>
|
||||
<translation>Zobrazit report při normální zprávě</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>When a log message has occurred, the Report View dialog becomes visible
|
||||
on-screen while displaying the log message</source>
|
||||
<translation type="unfinished">When a log message has occurred, the Report View dialog becomes visible
|
||||
on-screen while displaying the log message</translation>
|
||||
<translation>Když se objeví logovací zpráva, zobrazí se dialogové okno reportu
|
||||
při zobrazení této zprávy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show report view on log message</source>
|
||||
<translation type="unfinished">Show report view on log message</translation>
|
||||
<translation>Zobrazit report při logovací zprávě</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Font color for normal messages in Report view panel</source>
|
||||
<translation type="unfinished">Font color for normal messages in Report view panel</translation>
|
||||
<translation>Barva písma pro normální zprávy v panelu Report</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Font color for log messages in Report view panel</source>
|
||||
<translation type="unfinished">Font color for log messages in Report view panel</translation>
|
||||
<translation>Barva písma pro logovací zprávy v panelu Report</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Font color for warning messages in Report view panel</source>
|
||||
<translation type="unfinished">Font color for warning messages in Report view panel</translation>
|
||||
<translation>Barva písma pro zprávy varování v panelu Report</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Font color for error messages in Report view panel</source>
|
||||
<translation type="unfinished">Font color for error messages in Report view panel</translation>
|
||||
<translation>Barva písma pro chybové zprávy v panelu Report</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Internal Python output will be redirected
|
||||
from Python console to Report view panel</source>
|
||||
<translation type="unfinished">Internal Python output will be redirected
|
||||
from Python console to Report view panel</translation>
|
||||
<translation>Interní výstup Pythonu bude přesměrován
|
||||
z Python konzole do panelu Report</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Internal Python error messages will be redirected
|
||||
from Python console to Report view panel</source>
|
||||
<translation type="unfinished">Internal Python error messages will be redirected
|
||||
from Python console to Report view panel</translation>
|
||||
<translation>Interní chybové hlášky Pythonu budou přesměrovány
|
||||
z Python konzole do panelu Report</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Include a timecode for each report</source>
|
||||
<translation type="unfinished">Include a timecode for each report</translation>
|
||||
<translation>Zahrnout časovou známku pro každou zprávu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Include a timecode for each entry</source>
|
||||
<translation type="unfinished">Include a timecode for each entry</translation>
|
||||
<translation>Zahrnout časovou známku pro každou zprávu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Normal messages will be recorded</source>
|
||||
@@ -2389,22 +2457,22 @@ from Python console to Report view panel</translation>
|
||||
<message>
|
||||
<source>Main coordinate system will always be shown in
|
||||
lower right corner within opened files</source>
|
||||
<translation type="unfinished">Main coordinate system will always be shown in
|
||||
lower right corner within opened files</translation>
|
||||
<translation>Hlavní souřadnicový systém bude vždy zobrazen v
|
||||
pravém dolním rohu v otevřených souborech</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Time needed for last operation and resulting frame rate
|
||||
will be shown at the lower left corner in opened files</source>
|
||||
<translation type="unfinished">Time needed for last operation and resulting frame rate
|
||||
will be shown at the lower left corner in opened files</translation>
|
||||
<translation>Čas potřebný pro poslední operaci a výsledný frame rate
|
||||
bude zobrazena v levém dolním rohu v otevřených souborech</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>If checked, application will remember which workbench is active for each tab of the viewport</source>
|
||||
<translation type="unfinished">If checked, application will remember which workbench is active for each tab of the viewport</translation>
|
||||
<translation>Je-li zaškrtnuto, aplikace si pamatuje, které pracovní prostředí je aktivní pro každou kartu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remember active workbench by tab</source>
|
||||
<translation type="unfinished">Remember active workbench by tab</translation>
|
||||
<translation>Pamatovat si aktivní pracovní prostředí záložky</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rendering</source>
|
||||
@@ -2490,7 +2558,7 @@ but slower response to any scene changes.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Size of vertices in the Sketcher workbench</source>
|
||||
<translation type="unfinished">Size of vertices in the Sketcher workbench</translation>
|
||||
<translation>Velikost vrcholů v pracovním prostředí náčrtu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Eye to eye distance for stereo modes</source>
|
||||
@@ -2510,15 +2578,15 @@ bounding box size of the 3D object that is currently displayed. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Backlight color</source>
|
||||
<translation type="unfinished">Backlight color</translation>
|
||||
<translation>Barva podsvícení</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Intensity</source>
|
||||
<translation type="unfinished">Intensity</translation>
|
||||
<translation>Intenzita</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Intensity of the backlight</source>
|
||||
<translation type="unfinished">Intensity of the backlight</translation>
|
||||
<translation>Intenzita podsvícení</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Objects will be projected in orthographic projection</source>
|
||||
@@ -2550,6 +2618,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -2869,11 +2949,11 @@ get date suffix according to the specified format</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Date format</source>
|
||||
<translation type="unfinished">Date format</translation>
|
||||
<translation>Formát data</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Allow objects to have same label/name</source>
|
||||
<translation type="unfinished">Allow objects to have same label/name</translation>
|
||||
<translation>Povolit objektům mít stejný štítek/název</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enable partial loading of external linked documents.
|
||||
@@ -3411,10 +3491,6 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation type="unfinished">Rotations in 3D will use current cursor position as center for rotation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation type="unfinished">Rotate at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Izometrie</translation>
|
||||
@@ -3463,6 +3539,22 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation type="unfinished">Default camera orientation when creating a new document or selecting the home view</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -3759,15 +3851,15 @@ The preference system is the one set in the general preferences.</translation>
|
||||
<name>Gui::Dialog::DlgWorkbenches</name>
|
||||
<message>
|
||||
<source>Workbenches</source>
|
||||
<translation>Pracovní stoly</translation>
|
||||
<translation>Pracovní prostředí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enabled workbenches</source>
|
||||
<translation>Povolené workenche</translation>
|
||||
<translation>Povolená pracovní prostředí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Disabled workbenches</source>
|
||||
<translation>Vyřazené workbenche</translation>
|
||||
<translation>Zakázaná pracovní prostředí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Move down</source>
|
||||
@@ -3783,7 +3875,7 @@ The preference system is the one set in the general preferences.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><html><head/><body><p><span style=" font-weight:600;">Remove the selected workbench from enabled workbenches</span></p></body></html></source>
|
||||
<translation><html><head/><body><p><span style=" font-weight:600;">Odstranit vybrané workbenche z povolených workenchů</span></p></body></html></translation>
|
||||
<translation><html><head/><body><p><span style=" font-weight:600;">Odstranit vybraná pracovní prostředí z povolených</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Move right</source>
|
||||
@@ -3791,11 +3883,11 @@ The preference system is the one set in the general preferences.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><html><head/><body><p><span style=" font-weight:600;">Move the selected workbench to enabled workbenches.</span></p></body></html></source>
|
||||
<translation><html><head/><body><p><span style=" font-weight:600;">Přesunout vybrané workbenche mezi povolené workbenche.</span></p></body></html></translation>
|
||||
<translation><html><head/><body><p><span style=" font-weight:600;">Přesunout vybraná pracovní prostředí mezi povolená.</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sort enabled workbenches</source>
|
||||
<translation>Třídit povolené workbenche</translation>
|
||||
<translation>Třídit povolená pracovní prostředí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Move up</source>
|
||||
@@ -3807,7 +3899,7 @@ The preference system is the one set in the general preferences.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add all to enabled workbenches</source>
|
||||
<translation>Přidat všechny mezi povolené workbenche</translation>
|
||||
<translation>Přidat všechny mezi povolená pracovní prostředí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><p>Sort enabled workbenches</p></source>
|
||||
@@ -3815,7 +3907,7 @@ The preference system is the one set in the general preferences.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><html><head/><body><p><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Note:</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> The changes become active the next time you start the application</span></p></body></html></source>
|
||||
<translation type="unfinished"><html><head/><body><p><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Note:</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> The changes become active the next time you start the application</span></p></body></html></translation>
|
||||
<translation><html><head/><body><p><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:600;">Pozn.:</span><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;"> Změna bude aktivní po příštím startu FreeCADu</span></p></body></html></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -5222,7 +5314,7 @@ V pravém pohledu jsou %2 body vybrány.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add property</source>
|
||||
<translation type="unfinished">Add property</translation>
|
||||
<translation>Přidat vlastnost</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove property</source>
|
||||
@@ -5996,7 +6088,7 @@ Do you want to specify another directory?</source>
|
||||
<name>Gui::WorkbenchGroup</name>
|
||||
<message>
|
||||
<source>Select the '%1' workbench</source>
|
||||
<translation>Vyberte workbench '%1'</translation>
|
||||
<translation>Vyberte '%1' pracovní prostředí</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -6194,7 +6286,7 @@ Do you want to specify another directory?</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Workbench failure</source>
|
||||
<translation>Selhání Workbench</translation>
|
||||
<translation>Selhání v pracovním prostředí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>%1</source>
|
||||
@@ -6222,11 +6314,11 @@ Do you want to specify another directory?</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cannot load workbench</source>
|
||||
<translation>Nelze načíst workbench</translation>
|
||||
<translation>Nelze načíst pracovní prostředí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>A general error occurred while loading the workbench</source>
|
||||
<translation>Došlo k obecné chybě při načítání workbench</translation>
|
||||
<translation>Došlo k obecné chybě při načítání pracovního prostředí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save views...</source>
|
||||
@@ -6657,7 +6749,7 @@ underscore, and must not start with a digit.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add property</source>
|
||||
<translation type="unfinished">Add property</translation>
|
||||
<translation>Přidat vlastnost</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Failed to add property to '%1': %2</source>
|
||||
@@ -8816,6 +8908,21 @@ Document: </translation>
|
||||
<translation>Nastavte na zadní pohled</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standardní pohledy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8861,6 +8968,21 @@ Document: </translation>
|
||||
<translation type="unfinished">Rotate the view by 90° clockwise</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standardní pohledy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
@@ -8955,11 +9077,11 @@ Document: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Workbench</source>
|
||||
<translation>Workbench</translation>
|
||||
<translation>Pracovní prostředí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Switch between workbenches</source>
|
||||
<translation>Přepnout mezi workbench</translation>
|
||||
<translation>Přepnout mezi pracovními prostředími</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -9448,11 +9570,11 @@ Do you still want to proceed?</translation>
|
||||
<name>Workbench</name>
|
||||
<message>
|
||||
<source>&File</source>
|
||||
<translation>Soubor</translation>
|
||||
<translation>&Soubor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Edit</source>
|
||||
<translation>Upravit</translation>
|
||||
<translation>&Upravit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Standard views</source>
|
||||
@@ -9460,11 +9582,11 @@ Do you still want to proceed?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Stereo</source>
|
||||
<translation>Stereo</translation>
|
||||
<translation>&Stereo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Zoom</source>
|
||||
<translation>Přiblížení</translation>
|
||||
<translation>&Přiblížení</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Visibility</source>
|
||||
@@ -9476,7 +9598,7 @@ Do you still want to proceed?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Tools</source>
|
||||
<translation>& Nástroje</translation>
|
||||
<translation>&Nástroje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Macro</source>
|
||||
@@ -9484,11 +9606,11 @@ Do you still want to proceed?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Windows</source>
|
||||
<translation>& Okna</translation>
|
||||
<translation>&Okna</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&On-line help</source>
|
||||
<translation>& On-line Nápověda</translation>
|
||||
<translation>&On-line Nápověda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Help</source>
|
||||
|
||||
@@ -95,7 +95,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Test console output</source>
|
||||
<translation>Testen der Konsolenausgabe</translation>
|
||||
<translation>Konsolenausgabe testen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Bearbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Importieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Löschen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation>Verknüpfungsgruppe erstellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation>Verknüpfung erstellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation>Unterverknüpfung erstellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation>Verknüpfungen importieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation>Alle Verknüpfungen importieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation>Ausrichtung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Placement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation>Transformieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Abstand messen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -1312,7 +1380,7 @@ Wenn dies nicht ausgewählt ist, muss die Eigenschaft eindeutig benannt sein und
|
||||
</message>
|
||||
<message>
|
||||
<source>Pressing <Tab> will insert a tabulator with defined tab size</source>
|
||||
<translation><Tab> -Taste fügt den definierten Tabellenabstand ein</translation>
|
||||
<translation>Durch Drücken von <Tab> wird ein Tabulator eingefügt, dessen Breite unter Tabulator-Breite definiert ist</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Display items</source>
|
||||
@@ -1438,8 +1506,7 @@ display the splash screen</source>
|
||||
<message>
|
||||
<source>Choose which workbench will be activated and shown
|
||||
after FreeCAD launches</source>
|
||||
<translation>Auswahl welche Werkbank aktiviert und angezeigt wird
|
||||
nach dem FreeCAD Start</translation>
|
||||
<translation>Auswahl des Arbeitsbereichs, der nach dem FreeCAD Start aktiviert und angezeigt werden soll</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Words will be wrapped when they exceed available
|
||||
@@ -2202,7 +2269,7 @@ Wählen Sie bitte ein anderes Verzeichnis aus.</translation>
|
||||
<message>
|
||||
<source>When an error has occurred, the Report View dialog becomes visible
|
||||
on-screen while displaying the error</source>
|
||||
<translation>Bei Fehlfunktion wird der Fehler-Bericht angezeigt</translation>
|
||||
<translation>Wenn ein Fehler auftritt, wird der Berichts-Dialog mit dem Fehler angezeigt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show report view on error</source>
|
||||
@@ -2237,7 +2304,7 @@ on-screen while displaying the log message</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Font color for normal messages in Report view panel</source>
|
||||
<translation>Schriftfarbe für normale Nachrichten in der Berichtsansicht</translation>
|
||||
<translation>Schriftfarbe für Protokoll Nachrichten in der Berichtsansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Font color for log messages in Report view panel</source>
|
||||
@@ -2538,6 +2605,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
<translation>Bereich für das Auswählen von Elementen in der 3D-Ansicht.
|
||||
Größere Werte erleichtern das Selektieren von Dingen, können aber die Auswahl kleiner Merkmale unmöglich machen. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3400,10 +3479,6 @@ Das Neigen der Maus wird durch diese Einstellung nicht deaktiviert.</translation
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation>Drehen in 3D wird die aktuelle Cursorposition als Drehmittelpunkt verwenden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation>Drehen am Cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Isometrisch</translation>
|
||||
@@ -3452,6 +3527,22 @@ Das Neigen der Maus wird durch diese Einstellung nicht deaktiviert.</translation
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation>Standard-Kameraorientierung für neue Dokumente oder bei Auswahl der Home-Ansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8807,6 +8898,21 @@ Dokument: </translation>
|
||||
<translation>Hinteransicht</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standardansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8852,6 +8958,21 @@ Dokument: </translation>
|
||||
<translation>Ansicht um 90° im Uhrzeigersinn drehen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standardansicht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Επεξεργασία</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Εισάγετε</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Διαγραφή</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation type="unfinished">Make link group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation type="unfinished">Make link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation type="unfinished">Make sub-link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation type="unfinished">Import links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation type="unfinished">Import all links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation type="unfinished">Align</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Τοποθέτηση</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation type="unfinished">Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Μετρήστε απόσταση</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2554,6 +2622,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3416,10 +3496,6 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation type="unfinished">Rotations in 3D will use current cursor position as center for rotation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation type="unfinished">Rotate at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Ισομετρική</translation>
|
||||
@@ -3468,6 +3544,22 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation type="unfinished">Default camera orientation when creating a new document or selecting the home view</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8826,6 +8918,21 @@ Document: </translation>
|
||||
<translation>Ορισμός οπίσθιας προβολής</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Καθιερωμένη Προβολή</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8871,6 +8978,21 @@ Document: </translation>
|
||||
<translation type="unfinished">Rotate the view by 90° clockwise</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Καθιερωμένη Προβολή</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Editar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Importar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Borrar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation>Hacer vínculo de grupo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation>Crear vínculo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation>Crear sub-vínculo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation>Importar vínculo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation>Importar todos los vínculos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation>Alinear</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Ubicación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation>Transformar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Medir distancia</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2549,6 +2617,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
<translation>Área para elegir elementos en la vista 3D.
|
||||
Valor más grande facilita la selección de cosas, pero puede hacer que las características pequeñas sean imposibles de seleccionar. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3408,10 +3488,6 @@ Mouse tilting is not disabled by this setting.</source>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation>Las rotaciones en 3D usarán la posición actual del cursor como centro de rotación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation>Girar el cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Isométrico</translation>
|
||||
@@ -3460,6 +3536,22 @@ Mouse tilting is not disabled by this setting.</source>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation>Orientación de cámara por defecto al crear un nuevo documento o seleccionar la vista de inicio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8812,6 +8904,21 @@ Documento: </translation>
|
||||
<translation>Establecer vista posterior</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Vista estándar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8857,6 +8964,21 @@ Documento: </translation>
|
||||
<translation>Girar la vista a 90° en sentido horario</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Vista estándar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Editatu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Inportatu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Ezabatu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation>Sortu esteka taldea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation>Sortu esteka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation>Sortu azpiesteka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation>Inportatu estekak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation>Inportatu esteka guztiak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation>Lerrokatu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Kokapena</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation>Transformatu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Neurtu distantzia</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2554,6 +2622,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
Balio handiagoak elementuak aukeratzea errazten du, baina elementu txikiak hautatzea oztopatu dezake.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3417,10 +3497,6 @@ Ezarpen honek ez du desgaitzen sagu bidezko inklinazioa.</translation>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation>3D moduko biraketek kurtsorearen uneko posizioa erabiliko dute biraketarako erdigune gisa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation>Biratu kurtsorean</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Isometrikoa</translation>
|
||||
@@ -3469,6 +3545,22 @@ Ezarpen honek ez du desgaitzen sagu bidezko inklinazioa.</translation>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation>Kameraren orientazio lehenetsia dokumentu bat sortzean edo bista nagusia hautatzean</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8827,6 +8919,21 @@ Bide-izena: </translation>
|
||||
<translation>Ikusi atzetik</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Bista estandarra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8872,6 +8979,21 @@ Bide-izena: </translation>
|
||||
<translation>Biratu bista 90° erlojuaren noranzkoan</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Bista estandarra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Muokkaa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Tuonti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Poista</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation type="unfinished">Make link group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation type="unfinished">Make link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation type="unfinished">Make sub-link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation type="unfinished">Import links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation type="unfinished">Import all links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation>Tasaa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Sijainti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation>muunna</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Mittaa etäisyys</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2555,6 +2623,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3416,10 +3496,6 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation type="unfinished">Rotations in 3D will use current cursor position as center for rotation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation type="unfinished">Rotate at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Isometrinen</translation>
|
||||
@@ -3468,6 +3544,22 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation type="unfinished">Default camera orientation when creating a new document or selecting the home view</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8821,6 +8913,21 @@ Document: </translation>
|
||||
<translation>Aseta Taustakamera</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standardi-Näkymä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8866,6 +8973,21 @@ Document: </translation>
|
||||
<translation type="unfinished">Rotate the view by 90° clockwise</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standardi-Näkymä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>I-edit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Angkat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Burahin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation type="unfinished">Make link group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation type="unfinished">Make link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation type="unfinished">Make sub-link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation type="unfinished">Import links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation type="unfinished">Import all links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation type="unfinished">Align</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Pagkakalagay</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation type="unfinished">Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Sukatin ang agwat</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2553,6 +2621,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3415,10 +3495,6 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation type="unfinished">Rotations in 3D will use current cursor position as center for rotation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation type="unfinished">Rotate at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Isometric</translation>
|
||||
@@ -3467,6 +3543,22 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation type="unfinished">Default camera orientation when creating a new document or selecting the home view</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8824,6 +8916,21 @@ Document: </translation>
|
||||
<translation>I-set sa likurang view</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standard-View</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8869,6 +8976,21 @@ Document: </translation>
|
||||
<translation type="unfinished">Rotate the view by 90° clockwise</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standard-View</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Éditer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Importation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Supprimer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation>Créer un groupe lien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation>Créer un lien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation>Créer un sous-lien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation>Importer des liens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation>Importer tous les liens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation>Aligner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Placement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation>Transformer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Mesurer une distance</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2549,6 +2617,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
Une valeur plus grande facilite la sélection, mais peut rendre les petites fonctions difficiles, voire impossible à sélectionner.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3409,10 +3489,6 @@ Mouse tilting is not disabled by this setting.</source>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation>Les rotations en 3D utiliseront la position actuelle du curseur comme centre de rotation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation>Rotation 3D centrée sur curseur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Isométrique</translation>
|
||||
@@ -3461,6 +3537,22 @@ Mouse tilting is not disabled by this setting.</source>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation>Orientation par défaut de la caméra lors de la création d'un nouveau document ou de la sélection de la vue initiale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8811,6 +8903,21 @@ Document : </translation>
|
||||
<translation>Afficher la vue arrière</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Vue standard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8856,6 +8963,21 @@ Document : </translation>
|
||||
<translation>Tourner la vue de 90° sens horaire</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Vue standard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Editar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Importar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Desbotar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation type="unfinished">Make link group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation type="unfinished">Make link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation type="unfinished">Make sub-link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation type="unfinished">Import links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation type="unfinished">Import all links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation type="unfinished">Align</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Emprazamento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation>Transformar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Medir distancia</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2554,6 +2622,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3416,10 +3496,6 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation type="unfinished">Rotations in 3D will use current cursor position as center for rotation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation type="unfinished">Rotate at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Isométrica</translation>
|
||||
@@ -3468,6 +3544,22 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation type="unfinished">Default camera orientation when creating a new document or selecting the home view</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8825,6 +8917,21 @@ Document: </translation>
|
||||
<translation>Estabelece a vista traseira</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Vista estándar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8870,6 +8977,21 @@ Document: </translation>
|
||||
<translation type="unfinished">Rotate the view by 90° clockwise</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Vista estándar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Uredi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Uvoz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Izbriši</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation>Napravite grupu poveznice</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation>Napravi poveznicu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation>Napravite pod-vezu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation>Uvoz poveznica</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation>Uvoz svih poveznica</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation>Poravnati</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Položaj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation>Transformiraj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Mjerenje udaljenosti</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -440,11 +508,11 @@ while doing a left or right click and move the mouse up or down</source>
|
||||
</message>
|
||||
<message>
|
||||
<source> "</source>
|
||||
<translation type="unfinished"> "</translation>
|
||||
<translation> "</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>"</source>
|
||||
<translation type="unfinished">"</translation>
|
||||
<translation>"</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -1347,7 +1415,7 @@ Ako se to ne označi, osobina mora biti jedinstveno imenovana i njoj se pristupa
|
||||
</message>
|
||||
<message>
|
||||
<source>Enable splash screen at start up</source>
|
||||
<translation>Omogući štrcanje zaslon na start up</translation>
|
||||
<translation>Omogući pozdravni zaslon pri pokretanju programa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Auto load module after start up:</source>
|
||||
@@ -2132,7 +2200,9 @@ Specify another directory, please.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>If enabled, then 3D view selection will be synchronized with full object hierarchy.</source>
|
||||
<translation type="unfinished">If enabled, then 3D view selection will be synchronized with full object hierarchy.</translation>
|
||||
<translation>Ako je omogućeno, tada će se odabir 3D prikaza sinkronizirati s punom hijerarhijom objekta.
|
||||
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -2183,7 +2253,7 @@ Specify another directory, please.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Redirect internal Python errors to report view</source>
|
||||
<translation>Preusmjeravanje unutarnjih Python grešaka u prikaz pogrešaka</translation>
|
||||
<translation>Preusmjeravanje unutarnjih Python grešaka u prikazu pogrešaka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Redirect internal Python output to report view</source>
|
||||
@@ -2558,9 +2628,7 @@ otvaranja ili stvaranja datoteke
|
||||
</message>
|
||||
<message>
|
||||
<source>Show axis cross by default</source>
|
||||
<translation>Prikaz križa osi kao zadana postavka
|
||||
|
||||
</translation>
|
||||
<translation>Prikaz križa osi kao zadana postavka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Pick radius (px):</source>
|
||||
@@ -2570,9 +2638,22 @@ otvaranja ili stvaranja datoteke
|
||||
<source>Area for picking elements in 3D view.
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
</source>
|
||||
<translation type="unfinished">Area for picking elements in 3D view.
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
</translation>
|
||||
<translation>Prostor za odabir elemenata u 3D prikazu.
|
||||
Veća vrijednost olakšava odabir stvari, ali male značajke može učiniti nemogućim za odabir.
|
||||
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -3270,31 +3351,37 @@ Možete koristiti i obrazac: John Doe <[email protected]>
|
||||
</message>
|
||||
<message>
|
||||
<source>Recent macros menu</source>
|
||||
<translation type="unfinished">Recent macros menu</translation>
|
||||
<translation>Izbornik nedavnih makronaredbi
|
||||
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Size of recent macro list</source>
|
||||
<translation type="unfinished">Size of recent macro list</translation>
|
||||
<translation>Veličina nedavnog makro popisa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>How many macros should be listed in recent macros list</source>
|
||||
<translation type="unfinished">How many macros should be listed in recent macros list</translation>
|
||||
<translation>Koliko makronaredbi treba biti navedeno na nedavnom popisu makronaredbi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut count</source>
|
||||
<translation type="unfinished">Shortcut count</translation>
|
||||
<translation>Broj prečaca
|
||||
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>How many recent macros should have shortcuts</source>
|
||||
<translation type="unfinished">How many recent macros should have shortcuts</translation>
|
||||
<translation>Koliko nedavnih makronaredbi treba imati prečace</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Keyboard Modifiers</source>
|
||||
<translation type="unfinished">Keyboard Modifiers</translation>
|
||||
<translation>Modifikatori tipkovnice</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Keyboard modifiers, default = Ctrl+Shift+</source>
|
||||
<translation type="unfinished">Keyboard modifiers, default = Ctrl+Shift+</translation>
|
||||
<translation>Modifikatori tipkovnice, zadani = Ctrl + Shift +
|
||||
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -3445,10 +3532,6 @@ Naginjanje miša nije onemogućeno ovom postavkom.</translation>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation>Rotacije u 3D upotrebljavat će trenutni položaj pokazivača kao središte rotacije</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation>Rotacija kod pokazivača</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Izometrički</translation>
|
||||
@@ -3499,6 +3582,22 @@ Naginjanje miša nije onemogućeno ovom postavkom.</translation>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation>Zadana orijentacija kamere prilikom izrade novog dokumenta ili odabira zadanog početnog prikaza</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -3604,7 +3703,7 @@ Naginjanje miša nije onemogućeno ovom postavkom.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>FEM (mm, N, sec)</source>
|
||||
<translation type="unfinished">FEM (mm, N, sec)</translation>
|
||||
<translation>FEM (mm, N, sec)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -3830,7 +3929,7 @@ Sustav preferencija je onaj skup postavki koji se nalazi u općim preferencijam
|
||||
</message>
|
||||
<message>
|
||||
<source><html><head/><body><p><span style=" font-weight:600;">Move the selected workbench to enabled workbenches.</span></p></body></html></source>
|
||||
<translation><html><head/><body><p><span style=" font-weight:600;">Postavi odabranu radnu površinu u omogućene radne površine</span></p></body></html></translation>
|
||||
<translation><html><head/><body><p><span style=" font-weight:600;">Pomakni odabranu radnu površinu u omogućene radne površine</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Sort enabled workbenches</source>
|
||||
@@ -4680,7 +4779,7 @@ The 'Status' column shows whether the document could be recovered.</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Selection View</source>
|
||||
<translation>Prikaz odabira</translation>
|
||||
<translation>Pogled odabira</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The number of selected items</source>
|
||||
@@ -4769,14 +4868,14 @@ Do you want to save your changes?</source>
|
||||
<name>Gui::ExpressionLineEdit</name>
|
||||
<message>
|
||||
<source>Exact match</source>
|
||||
<translation type="unfinished">Exact match</translation>
|
||||
<translation>Točno podudaranje</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::ExpressionTextEdit</name>
|
||||
<message>
|
||||
<source>Exact match</source>
|
||||
<translation type="unfinished">Exact match</translation>
|
||||
<translation>Točno podudaranje</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -4851,7 +4950,7 @@ Do you want to save your changes?</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Pinch (place two fingers on the screen && drag them apart from || towards each other) OR scroll middle mouse button OR PgUp/PgDown on keyboard.</source>
|
||||
<translation>Pinch (stavi dva prsta na ekran i razdvoji /približi ih) ili pomjeraj točkić miša ili pritisni na PgUp/PgDown na tipkovnici.</translation>
|
||||
<translation>Pinch (stavi dva prsta na ekran i razdvoji /približi ih) ili pomakni točkić miša ili pritisni na PgUp/PgDown na tipkovnici.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -5418,7 +5517,9 @@ Do you want to exit without saving your data?</source>
|
||||
<name>Gui::RecentMacrosAction</name>
|
||||
<message>
|
||||
<source>Run macro %1 (Shift+click to edit) shortcut: %2</source>
|
||||
<translation type="unfinished">Run macro %1 (Shift+click to edit) shortcut: %2</translation>
|
||||
<translation>Pokreni prečac makronaredbe %1 (Shift + klik za uređivanje): %2
|
||||
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>File not found</source>
|
||||
@@ -5558,7 +5659,7 @@ Do you want to specify another directory?</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>Translation Increment:</source>
|
||||
<translation>Korak pomjeranja:</translation>
|
||||
<translation>Korak pomicanja:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation Increment:</source>
|
||||
@@ -6767,7 +6868,7 @@ Odaberite "Prekini" za prekid
|
||||
<source>Identical physical path detected. It may cause unwanted overwrite of existing document!
|
||||
|
||||
</source>
|
||||
<translation type="unfinished">Identical physical path detected. It may cause unwanted overwrite of existing document!
|
||||
<translation>Otkriven je identičan fizički put. To može prouzročiti neželjeno prepisivanje postojećeg dokumenta!
|
||||
|
||||
</translation>
|
||||
</message>
|
||||
@@ -6779,33 +6880,29 @@ Odaberite "Prekini" za prekid
|
||||
<source>
|
||||
|
||||
Please check report view for more...</source>
|
||||
<translation type="unfinished">
|
||||
|
||||
Please check report view for more...</translation>
|
||||
<translation>Molimo provjerite prikaz izvješća za više ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
|
||||
Pyhsical path: </source>
|
||||
<translation type="unfinished">
|
||||
|
||||
Pyhsical path: </translation>
|
||||
<translation>Fizički put:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
Document: </source>
|
||||
<translation type="unfinished">
|
||||
Document: </translation>
|
||||
<translation>Dokument: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>
|
||||
Path: </source>
|
||||
<translation type="unfinished">
|
||||
Path: </translation>
|
||||
<translation>Put:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Identical physical path</source>
|
||||
<translation type="unfinished">Identical physical path</translation>
|
||||
<translation>Identičan fizički put
|
||||
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -7381,7 +7478,7 @@ Document: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Freezes the current view position</source>
|
||||
<translation>Zamrznii trenutni prikaz položaja</translation>
|
||||
<translation>Zamrzni trenutni položaj Pogleda</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -7535,7 +7632,7 @@ Document: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create a sub-object or sub-element link</source>
|
||||
<translation>Stvorite pod-objekt ili pod-element poveznicu</translation>
|
||||
<translation>Stvorite pod-objekt ili pod-element poveznicu</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -8026,11 +8123,15 @@ Document: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Recent macros</source>
|
||||
<translation type="unfinished">Recent macros</translation>
|
||||
<translation>Nedavne makronaredbe
|
||||
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Recent macro list</source>
|
||||
<translation type="unfinished">Recent macro list</translation>
|
||||
<translation>Popis nedavnih makronaredbi
|
||||
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -8180,7 +8281,7 @@ Document: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show selection bounding box</source>
|
||||
<translation>Prikaži izbor Graničnog okvira</translation>
|
||||
<translation>Prikaži odabir Graničnog okvira</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -8281,7 +8382,7 @@ Document: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show selection</source>
|
||||
<translation>Prikaži izbor</translation>
|
||||
<translation>Prikaži odabir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show all selected objects</source>
|
||||
@@ -8341,7 +8442,7 @@ Document: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Tile</source>
|
||||
<translation>&Naslov</translation>
|
||||
<translation>&Rasporedi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Tile the windows</source>
|
||||
@@ -8367,7 +8468,7 @@ Document: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Clipping plane</source>
|
||||
<translation> ravni isječak</translation>
|
||||
<translation>Ravni isječak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Toggles clipping plane for active view</source>
|
||||
@@ -8871,6 +8972,21 @@ Document: </translation>
|
||||
<translation>Postavlja pogled sa stražnje strane</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standardni pogled</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8916,6 +9032,21 @@ Document: </translation>
|
||||
<translation>Zakrenite pogled za 90 ° u smjeru od kazaljke na satu</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standardni pogled</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Szerkesztés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Importálás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Törlés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation type="unfinished">Make link group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation type="unfinished">Make link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation type="unfinished">Make sub-link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation type="unfinished">Import links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation type="unfinished">Import all links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation>Igazítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Elhelyezés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation>Átalakítás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Távolság mérés</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2463,15 +2531,15 @@ Ennek elérésére 3 lehetőség áll rendelkezésre:
|
||||
</message>
|
||||
<message>
|
||||
<source>Centralized</source>
|
||||
<translation type="unfinished">Centralized</translation>
|
||||
<translation>Központosított</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>What kind of multisample anti-aliasing is used </source>
|
||||
<translation type="unfinished">What kind of multisample anti-aliasing is used </translation>
|
||||
<translation>Milyen több mintavételes élsimítást használ </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transparent objects:</source>
|
||||
<translation type="unfinished">Transparent objects:</translation>
|
||||
<translation>Átlátszó tárgyak:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Render types of transparent objects</source>
|
||||
@@ -2479,31 +2547,31 @@ Ennek elérésére 3 lehetőség áll rendelkezésre:
|
||||
</message>
|
||||
<message>
|
||||
<source>One pass</source>
|
||||
<translation type="unfinished">One pass</translation>
|
||||
<translation>Egy áthaladás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Backface pass</source>
|
||||
<translation type="unfinished">Backface pass</translation>
|
||||
<translation>Hátsó lap áthaladás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Size of vertices in the Sketcher workbench</source>
|
||||
<translation type="unfinished">Size of vertices in the Sketcher workbench</translation>
|
||||
<translation>Csúcspontok mérete a vázlatkészítő munkafelületen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Eye to eye distance for stereo modes</source>
|
||||
<translation type="unfinished">Eye to eye distance for stereo modes</translation>
|
||||
<translation>Szemtől szembeni távolság a sztereó módban</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Eye-to-eye distance used for stereo projections.
|
||||
The specified value is a factor that will be multiplied with the
|
||||
bounding box size of the 3D object that is currently displayed. </source>
|
||||
<translation type="unfinished">Eye-to-eye distance used for stereo projections.
|
||||
The specified value is a factor that will be multiplied with the
|
||||
bounding box size of the 3D object that is currently displayed. </translation>
|
||||
<translation>Szemtől-szembeni távolság sztereó kivetítésekhez.
|
||||
A megadott érték olyan tényező, amelyet megszoroz
|
||||
az aktuálisan megjelenített 3D objektum határolókeret mérettel. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Backlight is enabled with the defined color</source>
|
||||
<translation type="unfinished">Backlight is enabled with the defined color</translation>
|
||||
<translation>Háttérvilágítás engedélyezve van a meghatározott színnel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Backlight color</source>
|
||||
@@ -2519,21 +2587,21 @@ bounding box size of the 3D object that is currently displayed. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Objects will be projected in orthographic projection</source>
|
||||
<translation type="unfinished">Objects will be projected in orthographic projection</translation>
|
||||
<translation>Az objektumok függőleges vetületi vetítésben jelennek meg</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Objects will appear in a perspective projection</source>
|
||||
<translation type="unfinished">Objects will appear in a perspective projection</translation>
|
||||
<translation>Az objektumok távoli nézet vetítésben jelennek meg</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Axis cross will be shown by default at file
|
||||
opening or creation</source>
|
||||
<translation type="unfinished">Axis cross will be shown by default at file
|
||||
opening or creation</translation>
|
||||
<translation>A tengelykereszteződés alapértelmezés szerint megjelenik a fájl
|
||||
megnyitásakor vagy létrehozásakor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Show axis cross by default</source>
|
||||
<translation type="unfinished">Show axis cross by default</translation>
|
||||
<translation>Tengely kereszteződés mutatása alapértelmezetten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Pick radius (px):</source>
|
||||
@@ -2543,10 +2611,22 @@ opening or creation</translation>
|
||||
<source>Area for picking elements in 3D view.
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
</source>
|
||||
<translation type="unfinished">Area for picking elements in 3D view.
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
<translation>Elemek kiválasztásának területe 3D nézetben.
|
||||
Nagyobb érték megkönnyíti a kiválasztást, de lehetetlenné teheti a kis tulajdonságok kiválasztását.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -2799,25 +2879,25 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
</message>
|
||||
<message>
|
||||
<source>The application will create a new document when started</source>
|
||||
<translation type="unfinished">The application will create a new document when started</translation>
|
||||
<translation>Az alkalmazás új dokumentumot hoz létre, amikor elindul</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Compression level for FCStd files</source>
|
||||
<translation type="unfinished">Compression level for FCStd files</translation>
|
||||
<translation>Az FCStd-fájlok tömörítési szintje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>All changes in documents are stored so that they can be undone/redone</source>
|
||||
<translation type="unfinished">All changes in documents are stored so that they can be undone/redone</translation>
|
||||
<translation>A dokumentumok minden változása tárolva van, hogy visszalehessen vonni/ismételni lehessen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>How many Undo/Redo steps should be recorded</source>
|
||||
<translation type="unfinished">How many Undo/Redo steps should be recorded</translation>
|
||||
<translation>Hány visszavonási/ismétlési lépést rögzítsen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Allow user aborting document recomputation by pressing ESC.
|
||||
This feature may slightly increase recomputation time.</source>
|
||||
<translation type="unfinished">Allow user aborting document recomputation by pressing ESC.
|
||||
This feature may slightly increase recomputation time.</translation>
|
||||
<translation>Engedélyezze a dokumentum újbóli számításának megszakítását az ESC billentyű lenyomásával.
|
||||
Ez a funkció némileg növelheti az újraszámítás idejét.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Allow aborting recomputation</source>
|
||||
@@ -2826,16 +2906,16 @@ This feature may slightly increase recomputation time.</translation>
|
||||
<message>
|
||||
<source>If there is a recovery file available the application will
|
||||
automatically run a file recovery when it is started.</source>
|
||||
<translation type="unfinished">If there is a recovery file available the application will
|
||||
automatically run a file recovery when it is started.</translation>
|
||||
<translation>Ha van rendelkezésre álló helyreállítási fájl, az alkalmazás
|
||||
automatikusan futtatja a fájlhelyreállítást az indításkor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>How often a recovery file is written</source>
|
||||
<translation type="unfinished">How often a recovery file is written</translation>
|
||||
<translation>A helyreállítási fájl megírásának gyakorisága</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>A thumbnail will be stored when document is saved</source>
|
||||
<translation type="unfinished">A thumbnail will be stored when document is saved</translation>
|
||||
<translation>A dokumentum mentésekor a rendszer a miniatűrt tárolja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Size</source>
|
||||
@@ -2844,34 +2924,34 @@ automatically run a file recovery when it is started.</translation>
|
||||
<message>
|
||||
<source>Sets the size of the thumbnail that is stored in the document.
|
||||
Common sizes are 128, 256 and 512</source>
|
||||
<translation type="unfinished">Sets the size of the thumbnail that is stored in the document.
|
||||
Common sizes are 128, 256 and 512</translation>
|
||||
<translation>A dokumentumban tárolt bélyegkép méretét adja meg.
|
||||
Gyakori méretek: 128, 256 és 512</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The program logo will be added to the thumbnail</source>
|
||||
<translation type="unfinished">The program logo will be added to the thumbnail</translation>
|
||||
<translation>A program embléma hozzáadódik a miniatűrhöz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>How many backup files will be kept when saving document</source>
|
||||
<translation type="unfinished">How many backup files will be kept when saving document</translation>
|
||||
<translation>Hány biztonsági másolat lesz megőrizve a dokumentum mentésekor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Backup files will get extension '.FCbak' and file names
|
||||
get date suffix according to the specified format</source>
|
||||
<translation type="unfinished">Backup files will get extension '.FCbak' and file names
|
||||
get date suffix according to the specified format</translation>
|
||||
<translation>Biztonsági fájl másolatok a '. FCbak' kiterjesztést kapják és fájlnevek
|
||||
dátumutótagot a megadott formátumnak megfelelően</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use date and FCBak extension</source>
|
||||
<translation type="unfinished">Use date and FCBak extension</translation>
|
||||
<translation>Dátum és FCBak kiterjesztés használata</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Date format</source>
|
||||
<translation type="unfinished">Date format</translation>
|
||||
<translation>Dátum formátum</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Allow objects to have same label/name</source>
|
||||
<translation type="unfinished">Allow objects to have same label/name</translation>
|
||||
<translation>Objektumok azonos címkéjének/nevének engedélyezése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Enable partial loading of external linked documents.
|
||||
@@ -2879,11 +2959,11 @@ Then only referenced objects and their dependencies will be loaded
|
||||
when a linked document is auto-opened together with the main document.
|
||||
A partially loaded document cannot be edited. Double click the document
|
||||
icon in the tree view to fully reload it.</source>
|
||||
<translation type="unfinished">Enable partial loading of external linked documents.
|
||||
Then only referenced objects and their dependencies will be loaded
|
||||
when a linked document is auto-opened together with the main document.
|
||||
A partially loaded document cannot be edited. Double click the document
|
||||
icon in the tree view to fully reload it.</translation>
|
||||
<translation>Külső kapcsolt dokumentumok részleges betöltését engedélyezi.
|
||||
Csak a hivatkozott dokumentum és annak függőségei lesznek betöltve,
|
||||
ha a kapcsolt dokumentum automatikusan a fő dokumentummal együtt nyílik meg.
|
||||
Egy részlegesen betöltött dokumentum nem szerkeszthető. Teljes betöltéséhez
|
||||
kattintson a fa nézetben a dokumentum ikonra.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Disable partial loading of external linked objects</source>
|
||||
@@ -3147,23 +3227,23 @@ Használhatja az űrlapot is: Gipsz Jakab <[email protected]></translation>
|
||||
<name>Gui::Dialog::DlgSettingsImageImp</name>
|
||||
<message>
|
||||
<source>Offscreen (New)</source>
|
||||
<translation type="unfinished">Offscreen (New)</translation>
|
||||
<translation>Képernyőn kívül (Új)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Offscreen (Old)</source>
|
||||
<translation type="unfinished">Offscreen (Old)</translation>
|
||||
<translation>Képernyőn kívül (Régi)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Framebuffer (custom)</source>
|
||||
<translation type="unfinished">Framebuffer (custom)</translation>
|
||||
<translation>Keretpuffer (egyéni)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Framebuffer (as is)</source>
|
||||
<translation type="unfinished">Framebuffer (as is)</translation>
|
||||
<translation>Keretpuffer (ahogy van)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Pixel buffer</source>
|
||||
<translation type="unfinished">Pixel buffer</translation>
|
||||
<translation>Pixelpuffer</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -3238,27 +3318,27 @@ Használhatja az űrlapot is: Gipsz Jakab <[email protected]></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Recent macros menu</source>
|
||||
<translation type="unfinished">Recent macros menu</translation>
|
||||
<translation>Legutóbbi makrók menü</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Size of recent macro list</source>
|
||||
<translation type="unfinished">Size of recent macro list</translation>
|
||||
<translation>Legutóbbi makrók listájának mérete</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>How many macros should be listed in recent macros list</source>
|
||||
<translation type="unfinished">How many macros should be listed in recent macros list</translation>
|
||||
<translation>A legutóbbi makrók listájában szereplő makrók száma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Shortcut count</source>
|
||||
<translation type="unfinished">Shortcut count</translation>
|
||||
<translation>Billentyűparancs számláló</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>How many recent macros should have shortcuts</source>
|
||||
<translation type="unfinished">How many recent macros should have shortcuts</translation>
|
||||
<translation>Hány legutóbbi makrónak kell billentyűparancs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Keyboard Modifiers</source>
|
||||
<translation type="unfinished">Keyboard Modifiers</translation>
|
||||
<translation>Billentyűzet módosítók</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Keyboard modifiers, default = Ctrl+Shift+</source>
|
||||
@@ -3409,10 +3489,6 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation type="unfinished">Rotations in 3D will use current cursor position as center for rotation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation type="unfinished">Rotate at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Izometrikus</translation>
|
||||
@@ -3461,6 +3537,22 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation type="unfinished">Default camera orientation when creating a new document or selecting the home view</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8818,6 +8910,21 @@ Document: </translation>
|
||||
<translation>Hátulnézetre váltás</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standard-nézet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8863,6 +8970,21 @@ Document: </translation>
|
||||
<translation type="unfinished">Rotate the view by 90° clockwise</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Standard-nézet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Edit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Impor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Menghapus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation type="unfinished">Make link group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation type="unfinished">Make link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation type="unfinished">Make sub-link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation type="unfinished">Import links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation type="unfinished">Import all links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation type="unfinished">Align</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Penempatan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation type="unfinished">Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Ukur jarak</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2551,6 +2619,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
Larger value eases to pick things, but can make small features impossible to select.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3412,10 +3492,6 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation type="unfinished">Rotations in 3D will use current cursor position as center for rotation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation type="unfinished">Rotate at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Isometrik</translation>
|
||||
@@ -3464,6 +3540,22 @@ Mouse tilting is not disabled by this setting.</translation>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation type="unfinished">Default camera orientation when creating a new document or selecting the home view</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8803,6 +8895,21 @@ Document: </translation>
|
||||
<translation>Atur ke tampilan belakang</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Tampilan Standar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8848,6 +8955,21 @@ Document: </translation>
|
||||
<translation type="unfinished">Rotate the view by 90° clockwise</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Tampilan Standar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||
@@ -126,6 +126,74 @@
|
||||
<source>Edit</source>
|
||||
<translation>Modifica</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import</source>
|
||||
<translation>Importa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Delete</source>
|
||||
<translation>Elimina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Paste expressions</source>
|
||||
<translation type="unfinished">Paste expressions</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link group</source>
|
||||
<translation>Crea un gruppo di link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make link</source>
|
||||
<translation>Crea un link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make sub-link</source>
|
||||
<translation>Crea un link relativo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import links</source>
|
||||
<translation>Importa un link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import all links</source>
|
||||
<translation>Importa tutti i link</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert measurement</source>
|
||||
<translation type="unfinished">Insert measurement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Insert text document</source>
|
||||
<translation type="unfinished">Insert text document</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a part</source>
|
||||
<translation type="unfinished">Add a part</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add a group</source>
|
||||
<translation type="unfinished">Add a group</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Align</source>
|
||||
<translation>Allinea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Placement</source>
|
||||
<translation>Posizionamento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Transform</source>
|
||||
<translation>Trasforma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Link Transform</source>
|
||||
<translation type="unfinished">Link Transform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Measure distance</source>
|
||||
<translation>Misura la distanza</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DlgCustomizeSpNavSettings</name>
|
||||
@@ -2552,6 +2620,18 @@ Larger value eases to pick things, but can make small features impossible to sel
|
||||
Un valore maggiore facilita la selezione delle cose, ma può rendere impossibile la selezione di funzionalità piccole.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</source>
|
||||
<translation type="unfinished">This option is useful for troubleshooting graphics card and driver problems.
|
||||
|
||||
Changing this option requires a restart of the application.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use software OpenGL</source>
|
||||
<translation type="unfinished">Use software OpenGL</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettings3DViewImp</name>
|
||||
@@ -3414,10 +3494,6 @@ Questa impostazione non disabilitata l'inclinazione tramite mouse.</translation>
|
||||
<source>Rotations in 3D will use current cursor position as center for rotation</source>
|
||||
<translation>Le rotazioni in 3D utilizzeranno la posizione corrente del cursore come centro per la rotazione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotate at cursor</source>
|
||||
<translation>Rotazione al cursore</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Isometric</source>
|
||||
<translation>Isometrica</translation>
|
||||
@@ -3466,6 +3542,22 @@ Questa impostazione non disabilitata l'inclinazione tramite mouse.</translation>
|
||||
<source>Default camera orientation when creating a new document or selecting the home view</source>
|
||||
<translation>Orientamento predefinito della fotocamera quando si crea un nuovo documento o si seleziona la vista iniziale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rotation mode</source>
|
||||
<translation type="unfinished">Rotation mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Window center</source>
|
||||
<translation type="unfinished">Window center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Drag at cursor</source>
|
||||
<translation type="unfinished">Drag at cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Object center</source>
|
||||
<translation type="unfinished">Object center</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Gui::Dialog::DlgSettingsUnits</name>
|
||||
@@ -8821,6 +8913,21 @@ Documento: </translation>
|
||||
<translation>Imposta la vista da dietro</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRestoreCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Vista standard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera</source>
|
||||
<translation type="unfinished">Restore saved camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Restore saved camera settings</source>
|
||||
<translation type="unfinished">Restore saved camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewRight</name>
|
||||
<message>
|
||||
@@ -8866,6 +8973,21 @@ Documento: </translation>
|
||||
<translation>Ruota la vista in senso orario di 90°</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewSaveCamera</name>
|
||||
<message>
|
||||
<source>Standard-View</source>
|
||||
<translation>Vista standard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera</source>
|
||||
<translation type="unfinished">Save current camera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Save current camera settings</source>
|
||||
<translation type="unfinished">Save current camera settings</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>StdCmdViewTop</name>
|
||||
<message>
|
||||
|
||||