Merge branch 'refs/heads/tanderson-rev-partdimension'
|
@ -2215,6 +2215,62 @@ void StdCmdDemoMode::activated(int iMsg)
|
|||
dlg->show();
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
// Part_Measure_Clear_All
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD(CmdViewMeasureClearAll);
|
||||
|
||||
CmdViewMeasureClearAll::CmdViewMeasureClearAll()
|
||||
: Command("View_Measure_Clear_All")
|
||||
{
|
||||
sGroup = QT_TR_NOOP("Measure");
|
||||
sMenuText = QT_TR_NOOP("Clear All");
|
||||
sToolTipText = QT_TR_NOOP("Clear All");
|
||||
sWhatsThis = sToolTipText;
|
||||
sStatusTip = sToolTipText;
|
||||
sPixmap = "Part_Measure_Clear_All";
|
||||
}
|
||||
|
||||
void CmdViewMeasureClearAll::activated(int iMsg)
|
||||
{
|
||||
Gui::View3DInventor *view = dynamic_cast<Gui::View3DInventor*>(Gui::Application::Instance->
|
||||
activeDocument()->getActiveView());
|
||||
if (!view)
|
||||
return;
|
||||
Gui::View3DInventorViewer *viewer = view->getViewer();
|
||||
if (!viewer)
|
||||
return;
|
||||
viewer->eraseAllDimensions();
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
// Part_Measure_Toggle_All
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD(CmdViewMeasureToggleAll);
|
||||
|
||||
CmdViewMeasureToggleAll::CmdViewMeasureToggleAll()
|
||||
: Command("View_Measure_Toggle_All")
|
||||
{
|
||||
sGroup = QT_TR_NOOP("Measure");
|
||||
sMenuText = QT_TR_NOOP("Toggle All");
|
||||
sToolTipText = QT_TR_NOOP("Toggle All");
|
||||
sWhatsThis = sToolTipText;
|
||||
sStatusTip = sToolTipText;
|
||||
sPixmap = "Part_Measure_Toggle_All";
|
||||
}
|
||||
|
||||
void CmdViewMeasureToggleAll::activated(int iMsg)
|
||||
{
|
||||
ParameterGrp::handle group = App::GetApplication().GetUserParameter().
|
||||
GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("View");
|
||||
bool visibility = group->GetBool("DimensionsVisible", true);
|
||||
if (visibility)
|
||||
group->SetBool("DimensionsVisible", false);
|
||||
else
|
||||
group->SetBool("DimensionsVisible", true);
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
// Instantiation
|
||||
|
@ -2280,6 +2336,8 @@ void CreateViewStdCommands(void)
|
|||
rcCmdMgr.addCommand(new StdCmdDemoMode());
|
||||
rcCmdMgr.addCommand(new StdCmdToggleNavigation());
|
||||
rcCmdMgr.addCommand(new StdCmdAxisCross());
|
||||
rcCmdMgr.addCommand(new CmdViewMeasureClearAll());
|
||||
rcCmdMgr.addCommand(new CmdViewMeasureToggleAll());
|
||||
}
|
||||
|
||||
} // namespace Gui
|
||||
|
|
|
@ -152,6 +152,9 @@ View3DInventor::View3DInventor(Gui::Document* pcDocument, QWidget* parent, Qt::W
|
|||
OnChange(*hGrp,"OrbitStyle");
|
||||
OnChange(*hGrp,"Sensitivity");
|
||||
OnChange(*hGrp,"ResetCursorPosition");
|
||||
OnChange(*hGrp,"DimensionsVisible");
|
||||
OnChange(*hGrp,"Dimensions3dVisible");
|
||||
OnChange(*hGrp,"DimensionsDeltaVisible");
|
||||
|
||||
stopSpinTimer = new QTimer(this);
|
||||
connect(stopSpinTimer, SIGNAL(timeout()), this, SLOT(stopAnimating()));
|
||||
|
@ -360,7 +363,28 @@ void View3DInventor::OnChange(ParameterGrp::SubjectType &rCaller,ParameterGrp::M
|
|||
else
|
||||
_viewer->setCameraType(SoPerspectiveCamera::getClassTypeId());
|
||||
}
|
||||
else {
|
||||
else if (strcmp(Reason, "DimensionsVisible") == 0)
|
||||
{
|
||||
if (rGrp.GetBool("DimensionsVisible", true))
|
||||
_viewer->turnAllDimensionsOn();
|
||||
else
|
||||
_viewer->turnAllDimensionsOff();
|
||||
}
|
||||
else if (strcmp(Reason, "Dimensions3dVisible") == 0)
|
||||
{
|
||||
if (rGrp.GetBool("Dimensions3dVisible", true))
|
||||
_viewer->turn3dDimensionsOn();
|
||||
else
|
||||
_viewer->turn3dDimensionsOff();
|
||||
}
|
||||
else if (strcmp(Reason, "DimensionsDeltaVisible") == 0)
|
||||
{
|
||||
if (rGrp.GetBool("DimensionsDeltaVisible", true))
|
||||
_viewer->turnDeltaDimensionsOn();
|
||||
else
|
||||
_viewer->turnDeltaDimensionsOff();
|
||||
}
|
||||
else{
|
||||
unsigned long col1 = rGrp.GetUnsigned("BackgroundColor",3940932863UL);
|
||||
unsigned long col2 = rGrp.GetUnsigned("BackgroundColor2",859006463UL); // default color (dark blue)
|
||||
unsigned long col3 = rGrp.GetUnsigned("BackgroundColor3",2880160255UL); // default color (blue/grey)
|
||||
|
|
|
@ -250,6 +250,11 @@ View3DInventorViewer::View3DInventorViewer (QWidget *parent, const char *name,
|
|||
pEventCallback->ref();
|
||||
pcViewProviderRoot->addChild(pEventCallback);
|
||||
pEventCallback->addEventCallback(SoEvent::getClassTypeId(), handleEventCB, this);
|
||||
|
||||
dimensionRoot = new SoSwitch(SO_SWITCH_NONE);
|
||||
pcViewProviderRoot->addChild(dimensionRoot);
|
||||
dimensionRoot->addChild(new SoSwitch()); //first one will be for the 3d dimensions.
|
||||
dimensionRoot->addChild(new SoSwitch()); //second one for the delta dimensions.
|
||||
|
||||
// This is a callback node that logs all action that traverse the Inventor tree.
|
||||
#if defined (FC_DEBUG) && defined(FC_LOGGING_CB)
|
||||
|
@ -2182,3 +2187,49 @@ std::vector<ViewProvider*> View3DInventorViewer::getViewProvidersOfType(const Ba
|
|||
}
|
||||
return views;
|
||||
}
|
||||
|
||||
void View3DInventorViewer::turnAllDimensionsOn()
|
||||
{
|
||||
dimensionRoot->whichChild = SO_SWITCH_ALL;
|
||||
}
|
||||
|
||||
void View3DInventorViewer::turnAllDimensionsOff()
|
||||
{
|
||||
dimensionRoot->whichChild = SO_SWITCH_NONE;
|
||||
}
|
||||
|
||||
void View3DInventorViewer::eraseAllDimensions()
|
||||
{
|
||||
static_cast<SoSwitch *>(dimensionRoot->getChild(0))->removeAllChildren();
|
||||
static_cast<SoSwitch *>(dimensionRoot->getChild(1))->removeAllChildren();
|
||||
}
|
||||
|
||||
void View3DInventorViewer::turn3dDimensionsOn()
|
||||
{
|
||||
static_cast<SoSwitch *>(dimensionRoot->getChild(0))->whichChild = SO_SWITCH_ALL;
|
||||
}
|
||||
|
||||
void View3DInventorViewer::turn3dDimensionsOff()
|
||||
{
|
||||
static_cast<SoSwitch *>(dimensionRoot->getChild(0))->whichChild = SO_SWITCH_NONE;
|
||||
}
|
||||
|
||||
void View3DInventorViewer::addDimension3d(SoNode *node)
|
||||
{
|
||||
static_cast<SoSwitch *>(dimensionRoot->getChild(0))->addChild(node);
|
||||
}
|
||||
|
||||
void View3DInventorViewer::addDimensionDelta(SoNode *node)
|
||||
{
|
||||
static_cast<SoSwitch *>(dimensionRoot->getChild(1))->addChild(node);
|
||||
}
|
||||
|
||||
void View3DInventorViewer::turnDeltaDimensionsOn()
|
||||
{
|
||||
static_cast<SoSwitch *>(dimensionRoot->getChild(1))->whichChild = SO_SWITCH_ALL;
|
||||
}
|
||||
|
||||
void View3DInventorViewer::turnDeltaDimensionsOff()
|
||||
{
|
||||
static_cast<SoSwitch *>(dimensionRoot->getChild(1))->whichChild = SO_SWITCH_NONE;
|
||||
}
|
||||
|
|
|
@ -112,8 +112,8 @@ public:
|
|||
SbBool isBacklight(void) const;
|
||||
void setSceneGraph (SoNode *root);
|
||||
|
||||
void setAnimationEnabled(const SbBool enable);
|
||||
SbBool isAnimationEnabled(void) const;
|
||||
void setAnimationEnabled(const SbBool enable);
|
||||
SbBool isAnimationEnabled(void) const;
|
||||
|
||||
void setPopupMenuEnabled(const SbBool on);
|
||||
SbBool isPopupMenuEnabled(void) const;
|
||||
|
@ -121,16 +121,16 @@ public:
|
|||
void startAnimating(const SbVec3f& axis, float velocity);
|
||||
void stopAnimating(void);
|
||||
SbBool isAnimating(void) const;
|
||||
|
||||
void setFeedbackVisibility(const SbBool enable);
|
||||
SbBool isFeedbackVisible(void) const;
|
||||
|
||||
void setFeedbackSize(const int size);
|
||||
int getFeedbackSize(void) const;
|
||||
|
||||
void setRenderFramebuffer(const SbBool enable);
|
||||
SbBool isRenderFramebuffer() const;
|
||||
void renderToFramebuffer(QGLFramebufferObject*);
|
||||
void setFeedbackVisibility(const SbBool enable);
|
||||
SbBool isFeedbackVisible(void) const;
|
||||
|
||||
void setFeedbackSize(const int size);
|
||||
int getFeedbackSize(void) const;
|
||||
|
||||
void setRenderFramebuffer(const SbBool enable);
|
||||
SbBool isRenderFramebuffer() const;
|
||||
void renderToFramebuffer(QGLFramebufferObject*);
|
||||
|
||||
virtual void setViewing(SbBool enable);
|
||||
virtual void setCursorEnabled(SbBool enable);
|
||||
|
@ -193,8 +193,8 @@ public:
|
|||
void setEditingCursor (const QCursor& cursor);
|
||||
void setRedirectToSceneGraph(SbBool redirect) { this->redirected = redirect; }
|
||||
SbBool isRedirectedToSceneGraph() const { return this->redirected; }
|
||||
void setRedirectToSceneGraphEnabled(SbBool enable) { this->allowredir = enable; }
|
||||
SbBool isRedirectToSceneGraphEnabled(void) const { return this->allowredir; }
|
||||
void setRedirectToSceneGraphEnabled(SbBool enable) { this->allowredir = enable; }
|
||||
SbBool isRedirectToSceneGraphEnabled(void) const { return this->allowredir; }
|
||||
//@}
|
||||
|
||||
/** @name Pick actions */
|
||||
|
@ -241,6 +241,23 @@ public:
|
|||
/** Project the given normalized 2d point onto the far plane */
|
||||
SbVec3f projectOnFarPlane(const SbVec2f&) const;
|
||||
//@}
|
||||
|
||||
/** @name Dimension controls
|
||||
* the "turn*" functions are wired up to parameter groups through view3dinventor.
|
||||
* don't call them directly. instead set the parameter groups.
|
||||
* @see TaskDimension
|
||||
*/
|
||||
//@{
|
||||
void turnAllDimensionsOn();
|
||||
void turnAllDimensionsOff();
|
||||
void turn3dDimensionsOn();
|
||||
void turn3dDimensionsOff();
|
||||
void turnDeltaDimensionsOn();
|
||||
void turnDeltaDimensionsOff();
|
||||
void eraseAllDimensions();
|
||||
void addDimension3d(SoNode *node);
|
||||
void addDimensionDelta(SoNode *node);
|
||||
//@}
|
||||
|
||||
/**
|
||||
* Set the camera's orientation. If isAnimationEnabled() returns
|
||||
|
@ -320,7 +337,6 @@ private:
|
|||
SoFCBackgroundGradient *pcBackGround;
|
||||
SoSeparator * backgroundroot;
|
||||
SoSeparator * foregroundroot;
|
||||
SoRotationXYZ * arrowrotation;
|
||||
SoDirectionalLight* backlight;
|
||||
|
||||
SoSeparator * pcViewProviderRoot;
|
||||
|
@ -328,6 +344,7 @@ private:
|
|||
NavigationStyle* navigation;
|
||||
SoFCUnifiedSelection* selectionRoot;
|
||||
QGLFramebufferObject* framebuffer;
|
||||
SoSwitch *dimensionRoot;
|
||||
|
||||
// small axis cross in the corner
|
||||
SbBool axiscrossEnabled;
|
||||
|
|
|
@ -399,7 +399,11 @@ void StdWorkbench::setupContextMenu(const char* recipient, MenuItem* item) const
|
|||
<< "Std_ViewRear" << "Std_ViewBottom" << "Std_ViewLeft"
|
||||
<< "Separator" << "Std_ViewRotateLeft" << "Std_ViewRotateRight";
|
||||
|
||||
*item << "Std_ViewFitAll" << "Std_ViewFitSelection" << StdViews
|
||||
MenuItem *measure = new MenuItem();
|
||||
measure->setCommand("Measure");
|
||||
*measure << "View_Measure_Toggle_All" << "View_Measure_Clear_All";
|
||||
|
||||
*item << "Std_ViewFitAll" << "Std_ViewFitSelection" << StdViews << measure
|
||||
<< "Separator" << "Std_ViewDockUndockFullscreen";
|
||||
|
||||
if (Gui::Selection().countObjectsOfType(App::DocumentObject::getClassTypeId()) > 0 )
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#include "ViewProviderPrism.h"
|
||||
#include "ViewProviderSpline.h"
|
||||
#include "ViewProviderRegularPolygon.h"
|
||||
|
||||
#include "TaskDimension.h"
|
||||
#include "DlgSettingsGeneral.h"
|
||||
#include "DlgSettingsObjectColor.h"
|
||||
#include "DlgSettings3DViewPartImp.h"
|
||||
|
@ -146,6 +146,9 @@ void PartGuiExport initPartGui()
|
|||
PartGui::ViewProviderConeParametric ::init();
|
||||
PartGui::ViewProviderTorusParametric ::init();
|
||||
PartGui::ViewProviderRuledSurface ::init();
|
||||
PartGui::DimensionLinear ::initClass();
|
||||
PartGui::DimensionAngular ::initClass();
|
||||
PartGui::ArcEngine ::initClass();
|
||||
|
||||
PartGui::Workbench ::init();
|
||||
|
||||
|
|
|
@ -45,6 +45,7 @@ set(PartGui_MOC_HDRS
|
|||
TaskOffset.h
|
||||
TaskSweep.h
|
||||
TaskThickness.h
|
||||
TaskDimension.h
|
||||
TaskCheckGeometry.h
|
||||
)
|
||||
fc_wrap_cpp(PartGui_MOC_SRCS ${PartGui_MOC_HDRS})
|
||||
|
@ -208,6 +209,8 @@ SET(PartGui_SRCS
|
|||
TaskSweep.ui
|
||||
TaskThickness.cpp
|
||||
TaskThickness.h
|
||||
TaskDimension.cpp
|
||||
TaskDimension.h
|
||||
TaskCheckGeometry.cpp
|
||||
TaskCheckGeometry.h
|
||||
)
|
||||
|
|
|
@ -63,6 +63,7 @@
|
|||
#include "TaskShapeBuilder.h"
|
||||
#include "TaskLoft.h"
|
||||
#include "TaskSweep.h"
|
||||
#include "TaskDimension.h"
|
||||
#include "TaskCheckGeometry.h"
|
||||
|
||||
|
||||
|
@ -1495,6 +1496,179 @@ bool CmdColorPerFace::isActive(void)
|
|||
return (hasActiveDocument() && !Gui::Control().activeDialog() && objectSelected);
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
// Part_Measure_Linear
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD_A(CmdMeasureLinear);
|
||||
|
||||
CmdMeasureLinear::CmdMeasureLinear()
|
||||
: Command("Part_Measure_Linear")
|
||||
{
|
||||
sAppModule = "Part";
|
||||
sGroup = QT_TR_NOOP("Part");
|
||||
sMenuText = QT_TR_NOOP("Measure Linear");
|
||||
sToolTipText = QT_TR_NOOP("Measure Linear");
|
||||
sWhatsThis = sToolTipText;
|
||||
sStatusTip = sToolTipText;
|
||||
sPixmap = "Part_Measure_Linear";
|
||||
}
|
||||
|
||||
void CmdMeasureLinear::activated(int iMsg)
|
||||
{
|
||||
PartGui::goDimensionLinearRoot();
|
||||
}
|
||||
|
||||
bool CmdMeasureLinear::isActive(void)
|
||||
{
|
||||
return hasActiveDocument();
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
// Part_Measure_Angular
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD_A(CmdMeasureAngular);
|
||||
|
||||
CmdMeasureAngular::CmdMeasureAngular()
|
||||
: Command("Part_Measure_Angular")
|
||||
{
|
||||
sAppModule = "Part";
|
||||
sGroup = QT_TR_NOOP("Part");
|
||||
sMenuText = QT_TR_NOOP("Measure Angular");
|
||||
sToolTipText = QT_TR_NOOP("Measure Angular");
|
||||
sWhatsThis = sToolTipText;
|
||||
sStatusTip = sToolTipText;
|
||||
sPixmap = "Part_Measure_Angular";
|
||||
}
|
||||
|
||||
void CmdMeasureAngular::activated(int iMsg)
|
||||
{
|
||||
PartGui::goDimensionAngularRoot();
|
||||
}
|
||||
|
||||
bool CmdMeasureAngular::isActive(void)
|
||||
{
|
||||
return hasActiveDocument();
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
// Part_Measure_Clear_All
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD_A(CmdMeasureClearAll);
|
||||
|
||||
CmdMeasureClearAll::CmdMeasureClearAll()
|
||||
: Command("Part_Measure_Clear_All")
|
||||
{
|
||||
sAppModule = "Part";
|
||||
sGroup = QT_TR_NOOP("Part");
|
||||
sMenuText = QT_TR_NOOP("Clear All");
|
||||
sToolTipText = QT_TR_NOOP("Clear All");
|
||||
sWhatsThis = sToolTipText;
|
||||
sStatusTip = sToolTipText;
|
||||
sPixmap = "Part_Measure_Clear_All";
|
||||
}
|
||||
|
||||
void CmdMeasureClearAll::activated(int iMsg)
|
||||
{
|
||||
PartGui::eraseAllDimensions();
|
||||
}
|
||||
|
||||
bool CmdMeasureClearAll::isActive(void)
|
||||
{
|
||||
return hasActiveDocument();
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
// Part_Measure_Toggle_All
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD_A(CmdMeasureToggleAll);
|
||||
|
||||
CmdMeasureToggleAll::CmdMeasureToggleAll()
|
||||
: Command("Part_Measure_Toggle_All")
|
||||
{
|
||||
sAppModule = "Part";
|
||||
sGroup = QT_TR_NOOP("Part");
|
||||
sMenuText = QT_TR_NOOP("Toggle All");
|
||||
sToolTipText = QT_TR_NOOP("Toggle All");
|
||||
sWhatsThis = sToolTipText;
|
||||
sStatusTip = sToolTipText;
|
||||
sPixmap = "Part_Measure_Toggle_All";
|
||||
}
|
||||
|
||||
void CmdMeasureToggleAll::activated(int iMsg)
|
||||
{
|
||||
ParameterGrp::handle group = App::GetApplication().GetUserParameter().
|
||||
GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("View");
|
||||
bool visibility = group->GetBool("DimensionsVisible", true);
|
||||
if (visibility)
|
||||
group->SetBool("DimensionsVisible", false);
|
||||
else
|
||||
group->SetBool("DimensionsVisible", true);
|
||||
}
|
||||
|
||||
bool CmdMeasureToggleAll::isActive(void)
|
||||
{
|
||||
return hasActiveDocument();
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
// Part_Measure_Toggle_3d
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD_A(CmdMeasureToggle3d);
|
||||
|
||||
CmdMeasureToggle3d::CmdMeasureToggle3d()
|
||||
: Command("Part_Measure_Toggle_3d")
|
||||
{
|
||||
sAppModule = "Part";
|
||||
sGroup = QT_TR_NOOP("Part");
|
||||
sMenuText = QT_TR_NOOP("Toggle 3d");
|
||||
sToolTipText = QT_TR_NOOP("Toggle 3d");
|
||||
sWhatsThis = sToolTipText;
|
||||
sStatusTip = sToolTipText;
|
||||
sPixmap = "Part_Measure_Toggle_3d";
|
||||
}
|
||||
|
||||
void CmdMeasureToggle3d::activated(int iMsg)
|
||||
{
|
||||
PartGui::toggle3d();
|
||||
}
|
||||
|
||||
bool CmdMeasureToggle3d::isActive(void)
|
||||
{
|
||||
return hasActiveDocument();
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
// Part_Measure_Toggle_Delta
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD_A(CmdMeasureToggleDelta);
|
||||
|
||||
CmdMeasureToggleDelta::CmdMeasureToggleDelta()
|
||||
: Command("Part_Measure_Toggle_Delta")
|
||||
{
|
||||
sAppModule = "Part";
|
||||
sGroup = QT_TR_NOOP("Part");
|
||||
sMenuText = QT_TR_NOOP("Toggle Delta");
|
||||
sToolTipText = QT_TR_NOOP("Toggle Delta");
|
||||
sWhatsThis = sToolTipText;
|
||||
sStatusTip = sToolTipText;
|
||||
sPixmap = "Part_Measure_Toggle_Delta";
|
||||
}
|
||||
|
||||
void CmdMeasureToggleDelta::activated(int iMsg)
|
||||
{
|
||||
PartGui::toggleDelta();
|
||||
}
|
||||
|
||||
bool CmdMeasureToggleDelta::isActive(void)
|
||||
{
|
||||
return hasActiveDocument();
|
||||
}
|
||||
|
||||
void CreatePartCommands(void)
|
||||
{
|
||||
|
@ -1531,4 +1705,10 @@ void CreatePartCommands(void)
|
|||
rcCmdMgr.addCommand(new CmdPartThickness());
|
||||
rcCmdMgr.addCommand(new CmdCheckGeometry());
|
||||
rcCmdMgr.addCommand(new CmdColorPerFace());
|
||||
rcCmdMgr.addCommand(new CmdMeasureLinear());
|
||||
rcCmdMgr.addCommand(new CmdMeasureAngular());
|
||||
rcCmdMgr.addCommand(new CmdMeasureClearAll());
|
||||
rcCmdMgr.addCommand(new CmdMeasureToggleAll());
|
||||
rcCmdMgr.addCommand(new CmdMeasureToggle3d());
|
||||
rcCmdMgr.addCommand(new CmdMeasureToggleDelta());
|
||||
}
|
||||
|
|
|
@ -42,6 +42,14 @@
|
|||
<file>icons/Part_Point_Parametric.svg</file>
|
||||
<file>icons/Part_Polygon_Parametric.svg</file>
|
||||
<file>icons/Part_Spline_Parametric.svg</file>
|
||||
<file>icons/Part_Measure_Linear.svg</file>
|
||||
<file>icons/Part_Measure_Angular.svg</file>
|
||||
<file>icons/Part_Measure_Clear_All.svg</file>
|
||||
<file>icons/Part_Measure_Toggle_All.svg</file>
|
||||
<file>icons/Part_Measure_Toggle_3d.svg</file>
|
||||
<file>icons/Part_Measure_Toggle_Delta.svg</file>
|
||||
<file>icons/Part_Measure_Step_Active.svg</file>
|
||||
<file>icons/Part_Measure_Step_Done.svg</file>
|
||||
<file>icons/Tree_Part_Box_Parametric.svg</file>
|
||||
<file>icons/Tree_Part_Cylinder_Parametric.svg</file>
|
||||
<file>icons/Tree_Part_Cone_Parametric.svg</file>
|
||||
|
|
489
src/Mod/Part/Gui/Resources/icons/Part_Measure_Angular.svg
Normal file
|
@ -0,0 +1,489 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2943"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="Part_Measure_Angular.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1">
|
||||
<defs
|
||||
id="defs2945">
|
||||
<linearGradient
|
||||
id="linearGradient3855">
|
||||
<stop
|
||||
style="stop-color:#e5241a;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3857" />
|
||||
<stop
|
||||
style="stop-color:#82584b;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3859" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4158">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4160" />
|
||||
<stop
|
||||
style="stop-color:#f6f6f6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4162" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4122">
|
||||
<stop
|
||||
style="stop-color:#e3d328;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4124" />
|
||||
<stop
|
||||
style="stop-color:#e1dec3;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4126" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4088">
|
||||
<stop
|
||||
style="stop-color:#e9cd23;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4090" />
|
||||
<stop
|
||||
style="stop-color:#040000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4092" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4060">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4062" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4064" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4052">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4054" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4056" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4349">
|
||||
<stop
|
||||
style="stop-color:#898709;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4351" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4353" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5241">
|
||||
<stop
|
||||
style="stop-color:#212c45;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5243" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5245" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5227"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5229" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3902">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop3904" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3906" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3894">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3896" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3898" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3886">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3888" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3890" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3792">
|
||||
<stop
|
||||
style="stop-color:#aaaaaa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3794" />
|
||||
<stop
|
||||
style="stop-color:#d2d2d2;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3796" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3784">
|
||||
<stop
|
||||
style="stop-color:#bebebe;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3786" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3788" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3377">
|
||||
<stop
|
||||
id="stop3379"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3381"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 32 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="64 : 32 : 1"
|
||||
inkscape:persp3d-origin="32 : 21.333333 : 1"
|
||||
id="perspective2951" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4052"
|
||||
id="linearGradient4058"
|
||||
x1="138.99986"
|
||||
y1="44.863674"
|
||||
x2="92.497559"
|
||||
y2="-14.356517"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4060"
|
||||
id="linearGradient4066"
|
||||
x1="103.93729"
|
||||
y1="49.179436"
|
||||
x2="120.49899"
|
||||
y2="0.21229285"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4122"
|
||||
id="linearGradient4128"
|
||||
x1="391.3074"
|
||||
y1="120.81136"
|
||||
x2="394.43201"
|
||||
y2="112.43636"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-88.034794,-1.0606602)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4158"
|
||||
id="linearGradient4164"
|
||||
x1="419.99387"
|
||||
y1="102.77802"
|
||||
x2="458.7193"
|
||||
y2="69.431564"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-129.22376,-0.88388348)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3855"
|
||||
id="linearGradient3845"
|
||||
x1="257.39816"
|
||||
y1="98.929298"
|
||||
x2="319.17966"
|
||||
y2="98.929298"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3377"
|
||||
id="linearGradient3853"
|
||||
x1="268.33679"
|
||||
y1="77.790771"
|
||||
x2="305.63004"
|
||||
y2="77.790771"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.9921875"
|
||||
inkscape:cx="37.348847"
|
||||
inkscape:cy="43.054304"
|
||||
inkscape:current-layer="g3629"
|
||||
showgrid="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:window-width="1368"
|
||||
inkscape:window-height="686"
|
||||
inkscape:window-x="-3"
|
||||
inkscape:window-y="-3"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2948">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
id="g3629"
|
||||
transform="translate(-256.70919,-66.886588)">
|
||||
<path
|
||||
style="fill:url(#linearGradient4164);fill-opacity:1;stroke:none"
|
||||
d="m 302.22919,111.79471 c 5.05515,-3.52297 13.29873,-11.50471 15.21905,-16.308956 1.92032,-4.80425 -0.92703,-6.092224 -4.34728,-7.821067 -3.42025,-1.728843 -11.85184,-5.077349 -11.85184,-5.077349 l 2.396,8.289213 c 0,0 0.53365,4.43556 0.24785,6.592739 -0.28581,2.15718 -2.75678,5.52861 -3.35539,7.5763 -0.56305,1.92604 1.69161,6.74912 1.69161,6.74912 z"
|
||||
id="path4156"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czzcczsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 262.89407,108.45721 c 1.25,2.375 23.39016,10.14016 27.01516,10.64016 1.8125,0.25 2.29366,-0.20325 2.20313,-1.18181 -0.13527,-1.46214 -0.1291,-4.04469 -0.34957,-4.19253 -1.42228,-0.95377 -2.98005,-1.58321 -1.73744,-3.53467 1.23252,-1.93559 3.54639,-7.8793 3.08211,-12.733752 -0.39017,-4.079505 -3.08211,-11.732156 -4.34598,-14.383884 -0.93815,-1.968353 -1.14146,-3.403806 -2.69691,-5.464466 -1.09651,-1.452644 -21.70616,-2.93213 -23.2925,-2.769782 -1.58635,0.162348 -2.00828,1.518263 -2.22963,2.407377 -0.22135,0.889114 -0.30571,7.576491 0.267,14.724571 0.57272,7.148079 1.33379,14.569356 2.08463,16.488786 z"
|
||||
id="path4026"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cssssssszzsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 261.74733,74.848376 c 4.77297,-2.298097 10.42982,-3.535534 12.19759,-3.800699 1.76777,-0.265165 1.85616,-0.353554 3.35876,-0.353554 1.5026,0 18.31615,2.185661 19.20984,2.440102 0.89369,0.254442 1.31733,0.718153 1.64981,1.272209 0.33248,0.554056 0.8526,1.964701 1.51592,3.569385 0.66333,1.604685 3.52276,8.304549 4.09674,12.15746 0.57397,3.852911 0.61069,7.149986 -0.30937,9.439785 -0.92005,2.289796 -2.88407,5.051656 -2.99984,6.052766 -0.10323,0.89265 1.48777,1.58434 1.50795,2.70748 0.0202,1.12315 -0.2088,2.43537 -0.2312,3.85914 -0.0442,0.48614 -3.71231,2.78423 -4.24264,3.27037 -0.52632,0.48246 -5.21492,3.40295 -5.21492,3.40295"
|
||||
id="path4030"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csszzzzzszcsc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4058);fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 292.64798,116.87119 c -0.0613,-0.51045 -0.11216,-1.34054 -0.11301,-1.84465 -0.002,-1.30207 -0.20508,-1.69035 -1.22542,-2.3451 -1.25916,-0.80801 -1.28866,-1.09883 -0.31127,-3.06833 2.09666,-4.22488 3.13651,-9.39951 2.60004,-12.938662 -0.49468,-3.263508 -2.13978,-8.637482 -4.11277,-13.435028 -1.85491,-4.510415 -2.63163,-5.918606 -3.51712,-6.376513 -1.42094,-0.734793 -7.7398,-1.582388 -17.17831,-2.304253 -2.218,-0.169634 -3.92832,-0.366266 -3.80071,-0.43696 0.57763,-0.319999 5.7237,-1.810431 7.73101,-2.239097 3.72734,-0.795984 5.29357,-0.702422 18.75236,1.120205 2.57652,0.34892 4.9474,0.757595 5.26862,0.908167 0.7251,0.339887 1.00288,0.875841 2.92968,5.652431 2.97815,7.382914 3.83422,10.800341 3.83886,15.324637 0.003,3.010664 -0.20565,3.750818 -2.05823,7.298043 -1.77675,3.40204 -1.81686,3.66344 -0.77226,5.03303 l 0.7214,0.94582 -0.11669,1.85616 c -0.0838,1.33343 -0.19721,1.94558 -0.40264,2.17369 -0.44856,0.49811 -7.78593,5.60448 -8.05309,5.60448 -0.0379,0 -0.11913,-0.41763 -0.18045,-0.92807 z"
|
||||
id="path4040"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 298.41187,109.50327 c 0,0 -1.19289,0.69632 -2.78959,1.83287 -1.5967,1.13655 -3.34895,1.74724 -3.34895,1.74724 l 21.1163,7.55628 c 0,0 1.52492,-1.30616 2.34988,-2.48467 0.82495,-1.17851 1.4597,-2.99264 1.4597,-2.99264 z"
|
||||
id="path4096"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czcczcc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4128);fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 303.84771,117.08007 -11.13759,-4.19123 3.26108,-1.5864 c 1.12474,-0.54715 0.88678,-0.84311 1.82724,-1.13572 l 0.79565,-0.5913 8.2308,2.58891 c 3.75362,1.18066 9.94824,3.09451 9.99203,3.1383 0.22632,0.22632 -1.76843,3.76022 -2.40433,4.19146 l -0.96926,0.93189 z"
|
||||
id="path4100"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsscssscc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4066);fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 288.1706,118.06952 c -5.90927,-1.52744 -19.0775,-6.53315 -23.12594,-8.79098 -1.32369,-0.73823 -1.433,-0.84438 -1.70762,-1.65827 -0.99256,-2.94158 -2.29606,-17.461719 -2.30373,-25.661932 -0.004,-4.337481 0.008,-4.486705 0.4126,-5.303301 0.57256,-1.154336 0.93555,-1.294062 3.06842,-1.181125 8.3156,0.440318 17.78767,1.482911 20.29368,2.233732 0.96549,0.289268 1.60475,1.315025 3.22064,5.167835 1.54917,3.693726 3.0056,7.935352 3.82761,11.147319 0.52916,2.067707 0.58806,2.546208 0.58749,4.772971 -8.9e-4,3.618491 -0.75773,6.669321 -2.57751,10.390591 -1.11235,2.27464 -1.12723,2.74968 -0.11704,3.73645 0.41322,0.40363 0.93691,0.85147 1.16377,0.9952 0.38516,0.24401 0.41907,0.40453 0.51215,2.42484 l 0.0997,2.16352 -0.8657,-0.009 c -0.47614,-0.005 -1.59596,-0.19745 -2.4885,-0.42816 l 0,1e-5 z"
|
||||
id="path4042"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g4080"
|
||||
transform="translate(-150.9673,-1.0606602)">
|
||||
<path
|
||||
sodipodi:nodetypes="asasaaaa"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4070"
|
||||
d="m 424.55866,81.123948 c -3.15702,-0.193851 -7.07375,1.546506 -8.39689,4.419418 -1.55767,3.382137 -1.61293,6.880341 -0.97227,10.253048 0.77702,4.090605 3.37144,8.585636 5.65685,11.136936 3.46602,3.86925 8.36672,6.19605 12.63954,4.77297 3.28018,-1.09248 4.95245,-5.34844 5.56846,-8.75045 0.83705,-4.622732 -0.31846,-9.874648 -2.91681,-13.788582 -2.59922,-3.915244 -6.88824,-7.755319 -11.57888,-8.04334 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4072"
|
||||
d="m 414.74756,90.493113 24.2184,6.275573"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4076"
|
||||
d="m 169.98593,26.108835 c -6.05612,-1.580069 -11.06085,-2.922572 -11.12162,-2.983341 -0.18266,-0.182663 0.58449,-2.996385 1.10903,-4.067631 1.52934,-3.123317 5.80452,-4.871991 9.54028,-3.902257 2.39226,0.620985 4.38176,1.873543 6.71047,4.224799 2.44824,2.471954 4.1857,5.369469 5.01431,8.36221 0.32606,1.177632 0.33066,1.279904 0.0567,1.260351 -0.16395,-0.0117 -5.2531,-1.314063 -11.30922,-2.894131 l 0,0 z"
|
||||
style="fill:#e6e623;fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4078"
|
||||
d="m 172.02808,44.3989 c -6.16018,-1.541917 -12.02571,-9.07237 -13.13313,-16.860955 -0.26179,-1.841202 -0.32987,-3.109893 -0.16688,-3.109893 0.0513,0 5.20213,1.319946 11.44629,2.933214 7.5964,1.962636 11.43166,3.030152 11.59068,3.226174 0.18415,0.227005 0.21812,0.87004 0.15091,2.856223 -0.07,2.066843 -0.17668,2.871385 -0.5511,4.154252 -0.96894,3.319856 -2.41705,5.471557 -4.30356,6.394542 -0.85234,0.417011 -1.2542,0.496417 -2.68747,0.531046 -0.9269,0.02239 -1.98248,-0.03368 -2.34574,-0.124603 l 0,0 z"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#e3d328;fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d=""
|
||||
id="path4102"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(256.70919,66.886588)" />
|
||||
<g
|
||||
id="g4110"
|
||||
transform="translate(-90.764648,-1.9981602)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccczcc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4098"
|
||||
d="m 404.33355,122.4995 0.18214,4.36331 3.67098,-4.14012 -0.1259,-5.15409 c 0,0 -0.77656,1.12493 -1.71729,2.5605 -0.94073,1.43557 -2.00991,2.3704 -2.00991,2.3704 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4104"
|
||||
d="m 148.03449,58.858877 c -0.0149,-0.225509 -0.0507,-1.020477 -0.0796,-1.766595 l -0.0524,-1.356578 0.4641,-0.484326 c 0.89408,-0.933041 1.46119,-1.723083 2.49425,-3.474717 l 0.25998,-0.44082 0.0271,0.529208 c 0.0149,0.291065 0.0293,1.28493 0.032,2.208588 l 0.005,1.679379 -1.54955,1.745669 c -0.85225,0.960119 -1.55497,1.751191 -1.5616,1.75794 -0.007,0.0067 -0.0243,-0.172238 -0.0392,-0.397748 l 0,0 z"
|
||||
style="fill:#ada9a9;fill-opacity:1;stroke:#040400;stroke-width:0.02209709;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 291.79937,113.38569 10.07627,-5.74524"
|
||||
id="path4114"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 290.0316,110.82243 10.25305,-5.56846"
|
||||
id="path4116"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 285.7994,77.325928 11.75,-3.75"
|
||||
id="path4118"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 295.33146,114.28422 c 0,0 2.74177,-0.65463 3.98234,-1.67742 1.24058,-1.0228 1.57637,-2.44064 1.57637,-2.44064"
|
||||
id="path4132"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4134"
|
||||
d="m 299.23348,115.64888 c 1.31222,-0.40089 3.15734,-0.79161 4.02654,-1.58904 0.8692,-0.79744 1.53217,-2.52903 1.53217,-2.52903"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 303.7167,117.17959 c 0,0 2.4987,-0.76512 3.5625,-1.83211 1.0638,-1.06699 1.68685,-2.63951 1.68685,-2.63951"
|
||||
id="path4136"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4138"
|
||||
d="m 308.39147,118.80719 c 0,0 2.01257,-0.65464 3.03217,-1.78792 1.0196,-1.13328 1.81943,-3.05936 1.81943,-3.05936"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4140"
|
||||
sodipodi:cx="141.39062"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:ry="0.38633439"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,183.77022,22.103675)" />
|
||||
<path
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,187.98897,23.666175)"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
sodipodi:ry="0.38633439"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:cx="141.39062"
|
||||
id="path4142"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4144"
|
||||
sodipodi:cx="141.39062"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:ry="0.38633439"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,191.89522,25.103675)" />
|
||||
<path
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,196.64522,26.759925)"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
sodipodi:ry="0.38633439"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:cx="141.39062"
|
||||
id="path4146"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<g
|
||||
id="g4152"
|
||||
transform="translate(-124.15979,-1.0606602)">
|
||||
<path
|
||||
sodipodi:nodetypes="cczcczc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4148"
|
||||
d="m 425.39761,94.026754 -5.86206,2.529029 c 0,0 0.33081,2.606578 0.4192,4.248697 0.0884,1.64212 -1.53033,5.90219 -1.53033,5.90219 l 5.4362,-2.82008 c 0,0 1.65346,-2.64371 1.80112,-4.625652 0.14766,-1.981939 -0.26413,-5.234184 -0.26413,-5.234184 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4150"
|
||||
d="m 162.33095,39.039846 c 0,-0.02573 0.0872,-0.292919 0.19369,-0.59375 0.27292,-0.770667 0.75701,-2.53859 0.93068,-3.398905 0.11835,-0.586269 0.10701,-1.15127 -0.0587,-2.919748 -0.11296,-1.206045 -0.17696,-2.221238 -0.14222,-2.255985 0.0789,-0.07891 5.1297,-2.26544 5.1641,-2.235583 0.0138,0.01198 0.0912,0.904214 0.17197,1.982736 0.17731,2.367331 0.0602,3.386696 -0.56177,4.889171 -0.88339,2.134039 -0.8707,2.121035 -3.32878,3.4126 -2.07094,1.08815 -2.36902,1.229006 -2.36902,1.119464 z"
|
||||
style="fill:#eeee27;fill-opacity:1;stroke:#040400;stroke-width:0.0625;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient3845);fill-opacity:1.0;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 266.45094,71.196259 -8.05279,2.574572 17.98425,52.891509 41.79726,-44.47189 -6.59283,-5.585656 -31.36852,33.481386 z"
|
||||
id="path3833"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3853);fill-opacity:1.0;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m 269.33678,79.331312 3.00631,-9.637225 2.13676,5.005018 c 0,0 2.08283,-0.968552 2.75115,-1.299334 8.87714,-4.393725 14.03082,-3.183776 21.77451,2.529213 0.79832,0.588972 1.70341,1.628178 1.70341,1.628178 l 3.92111,-4.883459 -0.39754,11.545205 -10.20637,1.66855 3.56242,-4.468436 c 0,0 -1.27113,-1.092106 -1.8449,-1.638925 -4.65109,-4.43269 -11.56037,-5.255963 -16.71362,-2.174966 -0.58181,0.34785 -2.79674,1.545913 -2.79674,1.545913 l 2.54287,5.418739 z"
|
||||
id="path3837"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccsscccccssccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 25 KiB |
583
src/Mod/Part/Gui/Resources/icons/Part_Measure_Clear_All.svg
Normal file
|
@ -0,0 +1,583 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2943"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="Part_Measure_Clear_All.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1">
|
||||
<defs
|
||||
id="defs2945">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3876">
|
||||
<stop
|
||||
style="stop-color:#956363;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3878" />
|
||||
<stop
|
||||
style="stop-color:#ebe0a9;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3880" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3858">
|
||||
<stop
|
||||
style="stop-color:#956363;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3860" />
|
||||
<stop
|
||||
style="stop-color:#d17878;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3862" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4158">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4160" />
|
||||
<stop
|
||||
style="stop-color:#f6f6f6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4162" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4122">
|
||||
<stop
|
||||
style="stop-color:#e3d328;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4124" />
|
||||
<stop
|
||||
style="stop-color:#e1dec3;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4126" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4088">
|
||||
<stop
|
||||
style="stop-color:#e9cd23;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4090" />
|
||||
<stop
|
||||
style="stop-color:#040000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4092" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4060">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4062" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4064" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4052">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4054" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4056" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4349">
|
||||
<stop
|
||||
style="stop-color:#898709;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4351" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4353" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5241">
|
||||
<stop
|
||||
style="stop-color:#212c45;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5243" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5245" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5227"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5229" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3902">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop3904" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3906" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3894">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3896" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3898" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3886">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3888" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3890" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3792">
|
||||
<stop
|
||||
style="stop-color:#aaaaaa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3794" />
|
||||
<stop
|
||||
style="stop-color:#d2d2d2;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3796" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3784">
|
||||
<stop
|
||||
style="stop-color:#bebebe;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3786" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3788" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3377">
|
||||
<stop
|
||||
id="stop3379"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3381"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 32 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="64 : 32 : 1"
|
||||
inkscape:persp3d-origin="32 : 21.333333 : 1"
|
||||
id="perspective2951" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4052"
|
||||
id="linearGradient4058"
|
||||
x1="138.99986"
|
||||
y1="44.863674"
|
||||
x2="92.497559"
|
||||
y2="-14.356517"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4060"
|
||||
id="linearGradient4066"
|
||||
x1="103.93729"
|
||||
y1="49.179436"
|
||||
x2="120.49899"
|
||||
y2="0.21229285"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4122"
|
||||
id="linearGradient4128"
|
||||
x1="391.3074"
|
||||
y1="120.81136"
|
||||
x2="394.43201"
|
||||
y2="112.43636"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-88.034794,-1.0606602)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4158"
|
||||
id="linearGradient4164"
|
||||
x1="419.99387"
|
||||
y1="102.77802"
|
||||
x2="458.7193"
|
||||
y2="69.431564"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-129.22376,-0.88388348)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4122"
|
||||
id="linearGradient3856"
|
||||
x1="116.83871"
|
||||
y1="21.107124"
|
||||
x2="89.015228"
|
||||
y2="23.486774"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3858"
|
||||
id="linearGradient3864"
|
||||
x1="94.744598"
|
||||
y1="31.189295"
|
||||
x2="70.261253"
|
||||
y2="42.461311"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3876"
|
||||
id="linearGradient3882"
|
||||
x1="123.75154"
|
||||
y1="-0.084563509"
|
||||
x2="104.85488"
|
||||
y2="16.387842"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3858"
|
||||
id="linearGradient3892"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="94.744598"
|
||||
y1="31.189295"
|
||||
x2="70.261253"
|
||||
y2="42.461311" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4122"
|
||||
id="linearGradient3895"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="116.83871"
|
||||
y1="21.107124"
|
||||
x2="89.015228"
|
||||
y2="23.486774" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3876"
|
||||
id="linearGradient3897"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="123.75154"
|
||||
y1="-0.084563509"
|
||||
x2="104.85488"
|
||||
y2="16.387842" />
|
||||
<filter
|
||||
id="filter3911"
|
||||
inkscape:menu-tooltip="Make the lightest parts of the object progressively transparent"
|
||||
inkscape:menu="Transparency utilities"
|
||||
inkscape:label="Light eraser"
|
||||
height="1"
|
||||
width="1"
|
||||
y="0"
|
||||
x="0"
|
||||
color-interpolation-filters="sRGB">
|
||||
<feColorMatrix
|
||||
id="feColorMatrix3913"
|
||||
result="result14"
|
||||
type="luminanceToAlpha"
|
||||
in="SourceGraphic" />
|
||||
<feComposite
|
||||
id="feComposite3915"
|
||||
in2="result14"
|
||||
in="SourceGraphic"
|
||||
result="fbSourceGraphic"
|
||||
operator="out" />
|
||||
<feBlend
|
||||
id="feBlend3917"
|
||||
in2="fbSourceGraphic"
|
||||
mode="normal"
|
||||
result="result15" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.984375"
|
||||
inkscape:cx="48.723482"
|
||||
inkscape:cy="32.738686"
|
||||
inkscape:current-layer="g3629"
|
||||
showgrid="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:window-width="1368"
|
||||
inkscape:window-height="686"
|
||||
inkscape:window-x="-3"
|
||||
inkscape:window-y="-3"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2948">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
id="g3629"
|
||||
transform="translate(-256.70919,-66.886588)">
|
||||
<path
|
||||
style="fill:url(#linearGradient4164);fill-opacity:1;stroke:none"
|
||||
d="m 302.22919,111.79471 c 5.05515,-3.52297 13.29873,-11.50471 15.21905,-16.308956 1.92032,-4.80425 -0.92703,-6.092224 -4.34728,-7.821067 -3.42025,-1.728843 -11.85184,-5.077349 -11.85184,-5.077349 l 2.396,8.289213 c 0,0 0.53365,4.43556 0.24785,6.592739 -0.28581,2.15718 -2.75678,5.52861 -3.35539,7.5763 -0.56305,1.92604 1.69161,6.74912 1.69161,6.74912 z"
|
||||
id="path4156"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czzcczsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 262.89407,108.45721 c 1.25,2.375 23.39016,10.14016 27.01516,10.64016 1.8125,0.25 2.29366,-0.20325 2.20313,-1.18181 -0.13527,-1.46214 -0.1291,-4.04469 -0.34957,-4.19253 -1.42228,-0.95377 -2.98005,-1.58321 -1.73744,-3.53467 1.23252,-1.93559 3.54639,-7.8793 3.08211,-12.733752 -0.39017,-4.079505 -3.08211,-11.732156 -4.34598,-14.383884 -0.93815,-1.968353 -1.14146,-3.403806 -2.69691,-5.464466 -1.09651,-1.452644 -21.70616,-2.93213 -23.2925,-2.769782 -1.58635,0.162348 -2.00828,1.518263 -2.22963,2.407377 -0.22135,0.889114 -0.30571,7.576491 0.267,14.724571 0.57272,7.148079 1.33379,14.569356 2.08463,16.488786 z"
|
||||
id="path4026"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cssssssszzsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 261.74733,74.848376 c 4.77297,-2.298097 10.42982,-3.535534 12.19759,-3.800699 1.76777,-0.265165 1.85616,-0.353554 3.35876,-0.353554 1.5026,0 18.31615,2.185661 19.20984,2.440102 0.89369,0.254442 1.31733,0.718153 1.64981,1.272209 0.33248,0.554056 0.8526,1.964701 1.51592,3.569385 0.66333,1.604685 3.52276,8.304549 4.09674,12.15746 0.57397,3.852911 0.61069,7.149986 -0.30937,9.439785 -0.92005,2.289796 -2.88407,5.051656 -2.99984,6.052766 -0.10323,0.89265 1.48777,1.58434 1.50795,2.70748 0.0202,1.12315 -0.2088,2.43537 -0.2312,3.85914 -0.0442,0.48614 -3.71231,2.78423 -4.24264,3.27037 -0.52632,0.48246 -5.21492,3.40295 -5.21492,3.40295"
|
||||
id="path4030"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csszzzzzszcsc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4058);fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 292.64798,116.87119 c -0.0613,-0.51045 -0.11216,-1.34054 -0.11301,-1.84465 -0.002,-1.30207 -0.20508,-1.69035 -1.22542,-2.3451 -1.25916,-0.80801 -1.28866,-1.09883 -0.31127,-3.06833 2.09666,-4.22488 3.13651,-9.39951 2.60004,-12.938662 -0.49468,-3.263508 -2.13978,-8.637482 -4.11277,-13.435028 -1.85491,-4.510415 -2.63163,-5.918606 -3.51712,-6.376513 -1.42094,-0.734793 -7.7398,-1.582388 -17.17831,-2.304253 -2.218,-0.169634 -3.92832,-0.366266 -3.80071,-0.43696 0.57763,-0.319999 5.7237,-1.810431 7.73101,-2.239097 3.72734,-0.795984 5.29357,-0.702422 18.75236,1.120205 2.57652,0.34892 4.9474,0.757595 5.26862,0.908167 0.7251,0.339887 1.00288,0.875841 2.92968,5.652431 2.97815,7.382914 3.83422,10.800341 3.83886,15.324637 0.003,3.010664 -0.20565,3.750818 -2.05823,7.298043 -1.77675,3.40204 -1.81686,3.66344 -0.77226,5.03303 l 0.7214,0.94582 -0.11669,1.85616 c -0.0838,1.33343 -0.19721,1.94558 -0.40264,2.17369 -0.44856,0.49811 -7.78593,5.60448 -8.05309,5.60448 -0.0379,0 -0.11913,-0.41763 -0.18045,-0.92807 z"
|
||||
id="path4040"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 298.41187,109.50327 c 0,0 -1.19289,0.69632 -2.78959,1.83287 -1.5967,1.13655 -3.34895,1.74724 -3.34895,1.74724 l 21.1163,7.55628 c 0,0 1.52492,-1.30616 2.34988,-2.48467 0.82495,-1.17851 1.4597,-2.99264 1.4597,-2.99264 z"
|
||||
id="path4096"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czcczcc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4128);fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 303.84771,117.08007 -11.13759,-4.19123 3.26108,-1.5864 c 1.12474,-0.54715 0.88678,-0.84311 1.82724,-1.13572 l 0.79565,-0.5913 8.2308,2.58891 c 3.75362,1.18066 9.94824,3.09451 9.99203,3.1383 0.22632,0.22632 -1.76843,3.76022 -2.40433,4.19146 l -0.96926,0.93189 z"
|
||||
id="path4100"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsscssscc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4066);fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 288.1706,118.06952 c -5.90927,-1.52744 -19.0775,-6.53315 -23.12594,-8.79098 -1.32369,-0.73823 -1.433,-0.84438 -1.70762,-1.65827 -0.99256,-2.94158 -2.29606,-17.461719 -2.30373,-25.661932 -0.004,-4.337481 0.008,-4.486705 0.4126,-5.303301 0.57256,-1.154336 0.93555,-1.294062 3.06842,-1.181125 8.3156,0.440318 17.78767,1.482911 20.29368,2.233732 0.96549,0.289268 1.60475,1.315025 3.22064,5.167835 1.54917,3.693726 3.0056,7.935352 3.82761,11.147319 0.52916,2.067707 0.58806,2.546208 0.58749,4.772971 -8.9e-4,3.618491 -0.75773,6.669321 -2.57751,10.390591 -1.11235,2.27464 -1.12723,2.74968 -0.11704,3.73645 0.41322,0.40363 0.93691,0.85147 1.16377,0.9952 0.38516,0.24401 0.41907,0.40453 0.51215,2.42484 l 0.0997,2.16352 -0.8657,-0.009 c -0.47614,-0.005 -1.59596,-0.19745 -2.4885,-0.42816 l 0,1e-5 z"
|
||||
id="path4042"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g4080"
|
||||
transform="translate(-150.9673,-1.0606602)">
|
||||
<path
|
||||
sodipodi:nodetypes="asasaaaa"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4070"
|
||||
d="m 424.55866,81.123948 c -3.15702,-0.193851 -7.07375,1.546506 -8.39689,4.419418 -1.55767,3.382137 -1.61293,6.880341 -0.97227,10.253048 0.77702,4.090605 3.37144,8.585636 5.65685,11.136936 3.46602,3.86925 8.36672,6.19605 12.63954,4.77297 3.28018,-1.09248 4.95245,-5.34844 5.56846,-8.75045 0.83705,-4.622732 -0.31846,-9.874648 -2.91681,-13.788582 -2.59922,-3.915244 -6.88824,-7.755319 -11.57888,-8.04334 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4072"
|
||||
d="m 414.74756,90.493113 24.2184,6.275573"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4076"
|
||||
d="m 169.98593,26.108835 c -6.05612,-1.580069 -11.06085,-2.922572 -11.12162,-2.983341 -0.18266,-0.182663 0.58449,-2.996385 1.10903,-4.067631 1.52934,-3.123317 5.80452,-4.871991 9.54028,-3.902257 2.39226,0.620985 4.38176,1.873543 6.71047,4.224799 2.44824,2.471954 4.1857,5.369469 5.01431,8.36221 0.32606,1.177632 0.33066,1.279904 0.0567,1.260351 -0.16395,-0.0117 -5.2531,-1.314063 -11.30922,-2.894131 l 0,0 z"
|
||||
style="fill:#e6e623;fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4078"
|
||||
d="m 172.02808,44.3989 c -6.16018,-1.541917 -12.02571,-9.07237 -13.13313,-16.860955 -0.26179,-1.841202 -0.32987,-3.109893 -0.16688,-3.109893 0.0513,0 5.20213,1.319946 11.44629,2.933214 7.5964,1.962636 11.43166,3.030152 11.59068,3.226174 0.18415,0.227005 0.21812,0.87004 0.15091,2.856223 -0.07,2.066843 -0.17668,2.871385 -0.5511,4.154252 -0.96894,3.319856 -2.41705,5.471557 -4.30356,6.394542 -0.85234,0.417011 -1.2542,0.496417 -2.68747,0.531046 -0.9269,0.02239 -1.98248,-0.03368 -2.34574,-0.124603 l 0,0 z"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#e3d328;fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d=""
|
||||
id="path4102"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(256.70919,66.886588)" />
|
||||
<g
|
||||
id="g4110"
|
||||
transform="translate(-90.764648,-1.9981602)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccczcc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4098"
|
||||
d="m 404.33355,122.4995 0.18214,4.36331 3.67098,-4.14012 -0.1259,-5.15409 c 0,0 -0.77656,1.12493 -1.71729,2.5605 -0.94073,1.43557 -2.00991,2.3704 -2.00991,2.3704 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4104"
|
||||
d="m 148.03449,58.858877 c -0.0149,-0.225509 -0.0507,-1.020477 -0.0796,-1.766595 l -0.0524,-1.356578 0.4641,-0.484326 c 0.89408,-0.933041 1.46119,-1.723083 2.49425,-3.474717 l 0.25998,-0.44082 0.0271,0.529208 c 0.0149,0.291065 0.0293,1.28493 0.032,2.208588 l 0.005,1.679379 -1.54955,1.745669 c -0.85225,0.960119 -1.55497,1.751191 -1.5616,1.75794 -0.007,0.0067 -0.0243,-0.172238 -0.0392,-0.397748 l 0,0 z"
|
||||
style="fill:#ada9a9;fill-opacity:1;stroke:#040400;stroke-width:0.02209709;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 291.79937,113.38569 10.07627,-5.74524"
|
||||
id="path4114"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 290.0316,110.82243 10.25305,-5.56846"
|
||||
id="path4116"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 285.7994,77.325928 11.75,-3.75"
|
||||
id="path4118"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 295.33146,114.28422 c 0,0 2.74177,-0.65463 3.98234,-1.67742 1.24058,-1.0228 1.57637,-2.44064 1.57637,-2.44064"
|
||||
id="path4132"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4134"
|
||||
d="m 299.23348,115.64888 c 1.31222,-0.40089 3.15734,-0.79161 4.02654,-1.58904 0.8692,-0.79744 1.53217,-2.52903 1.53217,-2.52903"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 303.7167,117.17959 c 0,0 2.4987,-0.76512 3.5625,-1.83211 1.0638,-1.06699 1.68685,-2.63951 1.68685,-2.63951"
|
||||
id="path4136"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4138"
|
||||
d="m 308.39147,118.80719 c 0,0 2.01257,-0.65464 3.03217,-1.78792 1.0196,-1.13328 1.81943,-3.05936 1.81943,-3.05936"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4140"
|
||||
sodipodi:cx="141.39062"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:ry="0.38633439"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,183.77022,22.103675)" />
|
||||
<path
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,187.98897,23.666175)"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
sodipodi:ry="0.38633439"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:cx="141.39062"
|
||||
id="path4142"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4144"
|
||||
sodipodi:cx="141.39062"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:ry="0.38633439"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,191.89522,25.103675)" />
|
||||
<path
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,196.64522,26.759925)"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
sodipodi:ry="0.38633439"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:cx="141.39062"
|
||||
id="path4146"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<g
|
||||
id="g4152"
|
||||
transform="translate(-124.15979,-1.0606602)">
|
||||
<path
|
||||
sodipodi:nodetypes="cczcczc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4148"
|
||||
d="m 425.39761,94.026754 -5.86206,2.529029 c 0,0 0.33081,2.606578 0.4192,4.248697 0.0884,1.64212 -1.53033,5.90219 -1.53033,5.90219 l 5.4362,-2.82008 c 0,0 1.65346,-2.64371 1.80112,-4.625652 0.14766,-1.981939 -0.26413,-5.234184 -0.26413,-5.234184 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4150"
|
||||
d="m 162.33095,39.039846 c 0,-0.02573 0.0872,-0.292919 0.19369,-0.59375 0.27292,-0.770667 0.75701,-2.53859 0.93068,-3.398905 0.11835,-0.586269 0.10701,-1.15127 -0.0587,-2.919748 -0.11296,-1.206045 -0.17696,-2.221238 -0.14222,-2.255985 0.0789,-0.07891 5.1297,-2.26544 5.1641,-2.235583 0.0138,0.01198 0.0912,0.904214 0.17197,1.982736 0.17731,2.367331 0.0602,3.386696 -0.56177,4.889171 -0.88339,2.134039 -0.8707,2.121035 -3.32878,3.4126 -2.07094,1.08815 -2.36902,1.229006 -2.36902,1.119464 z"
|
||||
style="fill:#eeee27;fill-opacity:1;stroke:#040400;stroke-width:0.0625;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3886"
|
||||
transform="matrix(1.5625,0,0,1.5625,-274.12579,-36.76954)">
|
||||
<path
|
||||
sodipodi:nodetypes="zzccz"
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3078"
|
||||
d="m 84.850083,32.542112 c -0.05484,1.582626 2.763105,5.397063 4.825064,5.347532 2.061959,-0.04953 5.761252,-4.198842 5.761252,-4.198842 l -6.254633,-6.446951 c 0,0 -4.276842,3.715635 -4.331683,5.298261 z"
|
||||
style="fill:url(#linearGradient3892);fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3848"
|
||||
d="m 89.15868,27.122888 6.272658,6.39606 19.385262,-18.873542 c 0,0 -6.51055,-6.6054153 -6.8648,-5.8969248 C 107.59756,9.4569718 89.15868,27.122888 89.15868,27.122888 z"
|
||||
style="fill:url(#linearGradient3895);fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cczc"
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3866"
|
||||
d="m 108.3105,8.6491757 6.37641,5.8450473 c 0,0 6.40226,-11.5266567 5.83967,-12.1177063 -0.56259,-0.5910496 -12.21608,6.272659 -12.21608,6.272659 z"
|
||||
style="fill:url(#linearGradient3897);fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3884"
|
||||
d="m 371.62113,71.833751 3.06849,3.381604 3.25636,-6.951076 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 28 KiB |
448
src/Mod/Part/Gui/Resources/icons/Part_Measure_Linear.svg
Normal file
|
@ -0,0 +1,448 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2943"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="Part_Meaure.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1">
|
||||
<defs
|
||||
id="defs2945">
|
||||
<linearGradient
|
||||
id="linearGradient4158">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4160" />
|
||||
<stop
|
||||
style="stop-color:#f6f6f6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4162" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4122">
|
||||
<stop
|
||||
style="stop-color:#e3d328;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4124" />
|
||||
<stop
|
||||
style="stop-color:#e1dec3;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4126" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4088">
|
||||
<stop
|
||||
style="stop-color:#e9cd23;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4090" />
|
||||
<stop
|
||||
style="stop-color:#040000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4092" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4060">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4062" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4064" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4052">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4054" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4056" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4349">
|
||||
<stop
|
||||
style="stop-color:#898709;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4351" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4353" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5241">
|
||||
<stop
|
||||
style="stop-color:#212c45;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5243" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5245" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5227"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5229" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3902">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop3904" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3906" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3894">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3896" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3898" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3886">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3888" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3890" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3792">
|
||||
<stop
|
||||
style="stop-color:#aaaaaa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3794" />
|
||||
<stop
|
||||
style="stop-color:#d2d2d2;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3796" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3784">
|
||||
<stop
|
||||
style="stop-color:#bebebe;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3786" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3788" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3377">
|
||||
<stop
|
||||
id="stop3379"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3381"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 32 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="64 : 32 : 1"
|
||||
inkscape:persp3d-origin="32 : 21.333333 : 1"
|
||||
id="perspective2951" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4052"
|
||||
id="linearGradient4058"
|
||||
x1="138.99986"
|
||||
y1="44.863674"
|
||||
x2="92.497559"
|
||||
y2="-14.356517"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4060"
|
||||
id="linearGradient4066"
|
||||
x1="103.93729"
|
||||
y1="49.179436"
|
||||
x2="120.49899"
|
||||
y2="0.21229285"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4122"
|
||||
id="linearGradient4128"
|
||||
x1="391.3074"
|
||||
y1="120.81136"
|
||||
x2="394.43201"
|
||||
y2="112.43636"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-88.034794,-1.0606602)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4158"
|
||||
id="linearGradient4164"
|
||||
x1="419.99387"
|
||||
y1="102.77802"
|
||||
x2="458.7193"
|
||||
y2="69.431564"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-129.22376,-0.88388348)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.984375"
|
||||
inkscape:cx="32"
|
||||
inkscape:cy="32"
|
||||
inkscape:current-layer="g3629"
|
||||
showgrid="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:window-width="1368"
|
||||
inkscape:window-height="686"
|
||||
inkscape:window-x="-3"
|
||||
inkscape:window-y="-3"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2948">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
id="g3629"
|
||||
transform="translate(-256.70919,-66.886588)">
|
||||
<path
|
||||
style="fill:url(#linearGradient4164);fill-opacity:1;stroke:none"
|
||||
d="m 302.22919,111.79471 c 5.05515,-3.52297 13.29873,-11.50471 15.21905,-16.308956 1.92032,-4.80425 -0.92703,-6.092224 -4.34728,-7.821067 -3.42025,-1.728843 -11.85184,-5.077349 -11.85184,-5.077349 l 2.396,8.289213 c 0,0 0.53365,4.43556 0.24785,6.592739 -0.28581,2.15718 -2.75678,5.52861 -3.35539,7.5763 -0.56305,1.92604 1.69161,6.74912 1.69161,6.74912 z"
|
||||
id="path4156"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czzcczsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 262.89407,108.45721 c 1.25,2.375 23.39016,10.14016 27.01516,10.64016 1.8125,0.25 2.29366,-0.20325 2.20313,-1.18181 -0.13527,-1.46214 -0.1291,-4.04469 -0.34957,-4.19253 -1.42228,-0.95377 -2.98005,-1.58321 -1.73744,-3.53467 1.23252,-1.93559 3.54639,-7.8793 3.08211,-12.733752 -0.39017,-4.079505 -3.08211,-11.732156 -4.34598,-14.383884 -0.93815,-1.968353 -1.14146,-3.403806 -2.69691,-5.464466 -1.09651,-1.452644 -21.70616,-2.93213 -23.2925,-2.769782 -1.58635,0.162348 -2.00828,1.518263 -2.22963,2.407377 -0.22135,0.889114 -0.30571,7.576491 0.267,14.724571 0.57272,7.148079 1.33379,14.569356 2.08463,16.488786 z"
|
||||
id="path4026"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cssssssszzsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 261.74733,74.848376 c 4.77297,-2.298097 10.42982,-3.535534 12.19759,-3.800699 1.76777,-0.265165 1.85616,-0.353554 3.35876,-0.353554 1.5026,0 18.31615,2.185661 19.20984,2.440102 0.89369,0.254442 1.31733,0.718153 1.64981,1.272209 0.33248,0.554056 0.8526,1.964701 1.51592,3.569385 0.66333,1.604685 3.52276,8.304549 4.09674,12.15746 0.57397,3.852911 0.61069,7.149986 -0.30937,9.439785 -0.92005,2.289796 -2.88407,5.051656 -2.99984,6.052766 -0.10323,0.89265 1.48777,1.58434 1.50795,2.70748 0.0202,1.12315 -0.2088,2.43537 -0.2312,3.85914 -0.0442,0.48614 -3.71231,2.78423 -4.24264,3.27037 -0.52632,0.48246 -5.21492,3.40295 -5.21492,3.40295"
|
||||
id="path4030"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csszzzzzszcsc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4058);fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 292.64798,116.87119 c -0.0613,-0.51045 -0.11216,-1.34054 -0.11301,-1.84465 -0.002,-1.30207 -0.20508,-1.69035 -1.22542,-2.3451 -1.25916,-0.80801 -1.28866,-1.09883 -0.31127,-3.06833 2.09666,-4.22488 3.13651,-9.39951 2.60004,-12.938662 -0.49468,-3.263508 -2.13978,-8.637482 -4.11277,-13.435028 -1.85491,-4.510415 -2.63163,-5.918606 -3.51712,-6.376513 -1.42094,-0.734793 -7.7398,-1.582388 -17.17831,-2.304253 -2.218,-0.169634 -3.92832,-0.366266 -3.80071,-0.43696 0.57763,-0.319999 5.7237,-1.810431 7.73101,-2.239097 3.72734,-0.795984 5.29357,-0.702422 18.75236,1.120205 2.57652,0.34892 4.9474,0.757595 5.26862,0.908167 0.7251,0.339887 1.00288,0.875841 2.92968,5.652431 2.97815,7.382914 3.83422,10.800341 3.83886,15.324637 0.003,3.010664 -0.20565,3.750818 -2.05823,7.298043 -1.77675,3.40204 -1.81686,3.66344 -0.77226,5.03303 l 0.7214,0.94582 -0.11669,1.85616 c -0.0838,1.33343 -0.19721,1.94558 -0.40264,2.17369 -0.44856,0.49811 -7.78593,5.60448 -8.05309,5.60448 -0.0379,0 -0.11913,-0.41763 -0.18045,-0.92807 z"
|
||||
id="path4040"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 298.41187,109.50327 c 0,0 -1.19289,0.69632 -2.78959,1.83287 -1.5967,1.13655 -3.34895,1.74724 -3.34895,1.74724 l 21.1163,7.55628 c 0,0 1.52492,-1.30616 2.34988,-2.48467 0.82495,-1.17851 1.4597,-2.99264 1.4597,-2.99264 z"
|
||||
id="path4096"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czcczcc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4128);fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 303.84771,117.08007 -11.13759,-4.19123 3.26108,-1.5864 c 1.12474,-0.54715 0.88678,-0.84311 1.82724,-1.13572 l 0.79565,-0.5913 8.2308,2.58891 c 3.75362,1.18066 9.94824,3.09451 9.99203,3.1383 0.22632,0.22632 -1.76843,3.76022 -2.40433,4.19146 l -0.96926,0.93189 z"
|
||||
id="path4100"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsscssscc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4066);fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 288.1706,118.06952 c -5.90927,-1.52744 -19.0775,-6.53315 -23.12594,-8.79098 -1.32369,-0.73823 -1.433,-0.84438 -1.70762,-1.65827 -0.99256,-2.94158 -2.29606,-17.461719 -2.30373,-25.661932 -0.004,-4.337481 0.008,-4.486705 0.4126,-5.303301 0.57256,-1.154336 0.93555,-1.294062 3.06842,-1.181125 8.3156,0.440318 17.78767,1.482911 20.29368,2.233732 0.96549,0.289268 1.60475,1.315025 3.22064,5.167835 1.54917,3.693726 3.0056,7.935352 3.82761,11.147319 0.52916,2.067707 0.58806,2.546208 0.58749,4.772971 -8.9e-4,3.618491 -0.75773,6.669321 -2.57751,10.390591 -1.11235,2.27464 -1.12723,2.74968 -0.11704,3.73645 0.41322,0.40363 0.93691,0.85147 1.16377,0.9952 0.38516,0.24401 0.41907,0.40453 0.51215,2.42484 l 0.0997,2.16352 -0.8657,-0.009 c -0.47614,-0.005 -1.59596,-0.19745 -2.4885,-0.42816 l 0,1e-5 z"
|
||||
id="path4042"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g4080"
|
||||
transform="translate(-150.9673,-1.0606602)">
|
||||
<path
|
||||
sodipodi:nodetypes="asasaaaa"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4070"
|
||||
d="m 424.55866,81.123948 c -3.15702,-0.193851 -7.07375,1.546506 -8.39689,4.419418 -1.55767,3.382137 -1.61293,6.880341 -0.97227,10.253048 0.77702,4.090605 3.37144,8.585636 5.65685,11.136936 3.46602,3.86925 8.36672,6.19605 12.63954,4.77297 3.28018,-1.09248 4.95245,-5.34844 5.56846,-8.75045 0.83705,-4.622732 -0.31846,-9.874648 -2.91681,-13.788582 -2.59922,-3.915244 -6.88824,-7.755319 -11.57888,-8.04334 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4072"
|
||||
d="m 414.74756,90.493113 24.2184,6.275573"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4076"
|
||||
d="m 169.98593,26.108835 c -6.05612,-1.580069 -11.06085,-2.922572 -11.12162,-2.983341 -0.18266,-0.182663 0.58449,-2.996385 1.10903,-4.067631 1.52934,-3.123317 5.80452,-4.871991 9.54028,-3.902257 2.39226,0.620985 4.38176,1.873543 6.71047,4.224799 2.44824,2.471954 4.1857,5.369469 5.01431,8.36221 0.32606,1.177632 0.33066,1.279904 0.0567,1.260351 -0.16395,-0.0117 -5.2531,-1.314063 -11.30922,-2.894131 l 0,0 z"
|
||||
style="fill:#e6e623;fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4078"
|
||||
d="m 172.02808,44.3989 c -6.16018,-1.541917 -12.02571,-9.07237 -13.13313,-16.860955 -0.26179,-1.841202 -0.32987,-3.109893 -0.16688,-3.109893 0.0513,0 5.20213,1.319946 11.44629,2.933214 7.5964,1.962636 11.43166,3.030152 11.59068,3.226174 0.18415,0.227005 0.21812,0.87004 0.15091,2.856223 -0.07,2.066843 -0.17668,2.871385 -0.5511,4.154252 -0.96894,3.319856 -2.41705,5.471557 -4.30356,6.394542 -0.85234,0.417011 -1.2542,0.496417 -2.68747,0.531046 -0.9269,0.02239 -1.98248,-0.03368 -2.34574,-0.124603 l 0,0 z"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#e3d328;fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d=""
|
||||
id="path4102"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(256.70919,66.886588)" />
|
||||
<g
|
||||
id="g4110"
|
||||
transform="translate(-90.764648,-1.9981602)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccczcc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4098"
|
||||
d="m 404.33355,122.4995 0.18214,4.36331 3.67098,-4.14012 -0.1259,-5.15409 c 0,0 -0.77656,1.12493 -1.71729,2.5605 -0.94073,1.43557 -2.00991,2.3704 -2.00991,2.3704 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4104"
|
||||
d="m 148.03449,58.858877 c -0.0149,-0.225509 -0.0507,-1.020477 -0.0796,-1.766595 l -0.0524,-1.356578 0.4641,-0.484326 c 0.89408,-0.933041 1.46119,-1.723083 2.49425,-3.474717 l 0.25998,-0.44082 0.0271,0.529208 c 0.0149,0.291065 0.0293,1.28493 0.032,2.208588 l 0.005,1.679379 -1.54955,1.745669 c -0.85225,0.960119 -1.55497,1.751191 -1.5616,1.75794 -0.007,0.0067 -0.0243,-0.172238 -0.0392,-0.397748 l 0,0 z"
|
||||
style="fill:#ada9a9;fill-opacity:1;stroke:#040400;stroke-width:0.02209709;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 291.79937,113.38569 10.07627,-5.74524"
|
||||
id="path4114"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 290.0316,110.82243 10.25305,-5.56846"
|
||||
id="path4116"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 285.7994,77.325928 11.75,-3.75"
|
||||
id="path4118"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 295.33146,114.28422 c 0,0 2.74177,-0.65463 3.98234,-1.67742 1.24058,-1.0228 1.57637,-2.44064 1.57637,-2.44064"
|
||||
id="path4132"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4134"
|
||||
d="m 299.23348,115.64888 c 1.31222,-0.40089 3.15734,-0.79161 4.02654,-1.58904 0.8692,-0.79744 1.53217,-2.52903 1.53217,-2.52903"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 303.7167,117.17959 c 0,0 2.4987,-0.76512 3.5625,-1.83211 1.0638,-1.06699 1.68685,-2.63951 1.68685,-2.63951"
|
||||
id="path4136"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4138"
|
||||
d="m 308.39147,118.80719 c 0,0 2.01257,-0.65464 3.03217,-1.78792 1.0196,-1.13328 1.81943,-3.05936 1.81943,-3.05936"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4140"
|
||||
sodipodi:cx="141.39062"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:ry="0.38633439"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,183.77022,22.103675)" />
|
||||
<path
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,187.98897,23.666175)"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
sodipodi:ry="0.38633439"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:cx="141.39062"
|
||||
id="path4142"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4144"
|
||||
sodipodi:cx="141.39062"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:ry="0.38633439"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,191.89522,25.103675)" />
|
||||
<path
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,196.64522,26.759925)"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
sodipodi:ry="0.38633439"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:cx="141.39062"
|
||||
id="path4146"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<g
|
||||
id="g4152"
|
||||
transform="translate(-124.15979,-1.0606602)">
|
||||
<path
|
||||
sodipodi:nodetypes="cczcczc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4148"
|
||||
d="m 425.39761,94.026754 -5.86206,2.529029 c 0,0 0.33081,2.606578 0.4192,4.248697 0.0884,1.64212 -1.53033,5.90219 -1.53033,5.90219 l 5.4362,-2.82008 c 0,0 1.65346,-2.64371 1.80112,-4.625652 0.14766,-1.981939 -0.26413,-5.234184 -0.26413,-5.234184 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4150"
|
||||
d="m 162.33095,39.039846 c 0,-0.02573 0.0872,-0.292919 0.19369,-0.59375 0.27292,-0.770667 0.75701,-2.53859 0.93068,-3.398905 0.11835,-0.586269 0.10701,-1.15127 -0.0587,-2.919748 -0.11296,-1.206045 -0.17696,-2.221238 -0.14222,-2.255985 0.0789,-0.07891 5.1297,-2.26544 5.1641,-2.235583 0.0138,0.01198 0.0912,0.904214 0.17197,1.982736 0.17731,2.367331 0.0602,3.386696 -0.56177,4.889171 -0.88339,2.134039 -0.8707,2.121035 -3.32878,3.4126 -2.07094,1.08815 -2.36902,1.229006 -2.36902,1.119464 z"
|
||||
style="fill:#eeee27;fill-opacity:1;stroke:#040400;stroke-width:0.0625;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 23 KiB |
297
src/Mod/Part/Gui/Resources/icons/Part_Measure_Step_Active.svg
Normal file
|
@ -0,0 +1,297 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2943"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="Part_Measure_Step_Active.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1">
|
||||
<defs
|
||||
id="defs2945">
|
||||
<linearGradient
|
||||
id="linearGradient3848">
|
||||
<stop
|
||||
style="stop-color:#c32828;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3850" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3852" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4158">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4160" />
|
||||
<stop
|
||||
style="stop-color:#f6f6f6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4162" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4122">
|
||||
<stop
|
||||
style="stop-color:#e3d328;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4124" />
|
||||
<stop
|
||||
style="stop-color:#e1dec3;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4126" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4088">
|
||||
<stop
|
||||
style="stop-color:#e9cd23;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4090" />
|
||||
<stop
|
||||
style="stop-color:#040000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4092" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4060">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4062" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4064" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4052">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4054" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4056" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4349">
|
||||
<stop
|
||||
style="stop-color:#898709;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4351" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4353" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5241">
|
||||
<stop
|
||||
style="stop-color:#212c45;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5243" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5245" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5227"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5229" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3902">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop3904" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3906" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3894">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3896" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3898" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3886">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3888" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3890" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3792">
|
||||
<stop
|
||||
style="stop-color:#aaaaaa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3794" />
|
||||
<stop
|
||||
style="stop-color:#d2d2d2;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3796" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3784">
|
||||
<stop
|
||||
style="stop-color:#bebebe;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3786" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3788" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3377">
|
||||
<stop
|
||||
id="stop3379"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3381"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 32 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="64 : 32 : 1"
|
||||
inkscape:persp3d-origin="32 : 21.333333 : 1"
|
||||
id="perspective2951" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4052"
|
||||
id="linearGradient4058"
|
||||
x1="138.99986"
|
||||
y1="44.863674"
|
||||
x2="92.497559"
|
||||
y2="-14.356517"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4060"
|
||||
id="linearGradient4066"
|
||||
x1="103.93729"
|
||||
y1="49.179436"
|
||||
x2="120.49899"
|
||||
y2="0.21229285"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4122"
|
||||
id="linearGradient4128"
|
||||
x1="391.3074"
|
||||
y1="120.81136"
|
||||
x2="394.43201"
|
||||
y2="112.43636"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-88.034794,-1.0606602)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4158"
|
||||
id="linearGradient4164"
|
||||
x1="419.99387"
|
||||
y1="102.77802"
|
||||
x2="458.7193"
|
||||
y2="69.431564"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-129.22376,-0.88388348)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3848"
|
||||
id="linearGradient3854"
|
||||
x1="2.7195754"
|
||||
y1="32.826416"
|
||||
x2="101.26959"
|
||||
y2="33.327396"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.9921875"
|
||||
inkscape:cx="11.764075"
|
||||
inkscape:cy="26.551316"
|
||||
inkscape:current-layer="g3629"
|
||||
showgrid="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:window-width="1368"
|
||||
inkscape:window-height="686"
|
||||
inkscape:window-x="-3"
|
||||
inkscape:window-y="-3"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2948">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
id="g3629"
|
||||
transform="translate(-256.70919,-66.886588)">
|
||||
<path
|
||||
style="fill:#e3d328;fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d=""
|
||||
id="path4102"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(256.70919,66.886588)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3854);stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1"
|
||||
d="M 3.7195754,33.0921 24.531485,4.6639163 l 0,18.5093157 35.158844,0 -0.177123,19.837735 -34.981721,0 0,17.977948 z"
|
||||
id="path3078"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(256.70919,66.886588)"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.6 KiB |
254
src/Mod/Part/Gui/Resources/icons/Part_Measure_Step_Done.svg
Normal file
|
@ -0,0 +1,254 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2943"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="Part_Measure_Step_Done.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1">
|
||||
<defs
|
||||
id="defs2945">
|
||||
<linearGradient
|
||||
id="linearGradient3848">
|
||||
<stop
|
||||
style="stop-color:#31a52e;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3850" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3852" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4158">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4160" />
|
||||
<stop
|
||||
style="stop-color:#f6f6f6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4162" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4122">
|
||||
<stop
|
||||
style="stop-color:#e3d328;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4124" />
|
||||
<stop
|
||||
style="stop-color:#e1dec3;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4126" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4088">
|
||||
<stop
|
||||
style="stop-color:#e9cd23;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4090" />
|
||||
<stop
|
||||
style="stop-color:#040000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4092" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4052">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4054" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4056" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4349">
|
||||
<stop
|
||||
style="stop-color:#898709;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4351" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4353" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5241">
|
||||
<stop
|
||||
style="stop-color:#212c45;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5243" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5245" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5227"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5229" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3902">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop3904" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3906" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3894">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3896" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3898" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3886">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3888" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3890" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3792">
|
||||
<stop
|
||||
style="stop-color:#aaaaaa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3794" />
|
||||
<stop
|
||||
style="stop-color:#d2d2d2;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3796" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3784">
|
||||
<stop
|
||||
style="stop-color:#bebebe;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3786" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3788" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3377">
|
||||
<stop
|
||||
id="stop3379"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3381"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 32 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="64 : 32 : 1"
|
||||
inkscape:persp3d-origin="32 : 21.333333 : 1"
|
||||
id="perspective2951" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3848"
|
||||
id="linearGradient3854"
|
||||
x1="2.7195754"
|
||||
y1="32.826416"
|
||||
x2="101.26959"
|
||||
y2="33.327396"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3848"
|
||||
id="linearGradient3891"
|
||||
x1="8.3518963"
|
||||
y1="56.123516"
|
||||
x2="77.455673"
|
||||
y2="-10.828839"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6458057"
|
||||
inkscape:cx="25.044686"
|
||||
inkscape:cy="29.630776"
|
||||
inkscape:current-layer="g3629"
|
||||
showgrid="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:window-width="1368"
|
||||
inkscape:window-height="686"
|
||||
inkscape:window-x="-3"
|
||||
inkscape:window-y="-3"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2948">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
id="g3629"
|
||||
transform="translate(-256.70919,-66.886588)">
|
||||
<path
|
||||
style="fill:#e3d328;fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d=""
|
||||
id="path4102"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(256.70919,66.886588)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient3891);stroke:#000000;stroke-width:2.00000009999999984;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1"
|
||||
d="M 4.9238304,35.755495 C 16.38031,39.62625 19.163587,48.256892 23.746127,60.670274 34.349153,38.985364 45.837793,20.842907 60.868885,13.150685 L 53.230489,5.1706329 C 40.016779,12.035562 32.116747,25.808274 24.570961,43.83193 22.73332,36.407403 18.415962,31.462593 12.327378,27.403396 z"
|
||||
id="path3875"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(256.70919,66.886588)"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.5 KiB |
454
src/Mod/Part/Gui/Resources/icons/Part_Measure_Toggle_3d.svg
Normal file
|
@ -0,0 +1,454 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2943"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="Part_Measure_Toggle3d.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1">
|
||||
<defs
|
||||
id="defs2945">
|
||||
<linearGradient
|
||||
id="linearGradient4158">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4160" />
|
||||
<stop
|
||||
style="stop-color:#f6f6f6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4162" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4122">
|
||||
<stop
|
||||
style="stop-color:#e3d328;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4124" />
|
||||
<stop
|
||||
style="stop-color:#e1dec3;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4126" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4088">
|
||||
<stop
|
||||
style="stop-color:#e9cd23;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4090" />
|
||||
<stop
|
||||
style="stop-color:#040000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4092" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4060">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4062" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4064" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4052">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4054" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4056" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4349">
|
||||
<stop
|
||||
style="stop-color:#898709;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4351" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4353" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5241">
|
||||
<stop
|
||||
style="stop-color:#212c45;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5243" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5245" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5227"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5229" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3902">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop3904" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3906" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3894">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3896" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3898" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3886">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3888" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3890" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3792">
|
||||
<stop
|
||||
style="stop-color:#aaaaaa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3794" />
|
||||
<stop
|
||||
style="stop-color:#d2d2d2;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3796" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3784">
|
||||
<stop
|
||||
style="stop-color:#bebebe;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3786" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3788" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3377">
|
||||
<stop
|
||||
id="stop3379"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3381"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 32 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="64 : 32 : 1"
|
||||
inkscape:persp3d-origin="32 : 21.333333 : 1"
|
||||
id="perspective2951" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4052"
|
||||
id="linearGradient4058"
|
||||
x1="138.99986"
|
||||
y1="44.863674"
|
||||
x2="92.497559"
|
||||
y2="-14.356517"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4060"
|
||||
id="linearGradient4066"
|
||||
x1="103.93729"
|
||||
y1="49.179436"
|
||||
x2="120.49899"
|
||||
y2="0.21229285"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4122"
|
||||
id="linearGradient4128"
|
||||
x1="391.3074"
|
||||
y1="120.81136"
|
||||
x2="394.43201"
|
||||
y2="112.43636"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-88.034794,-1.0606602)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4158"
|
||||
id="linearGradient4164"
|
||||
x1="419.99387"
|
||||
y1="102.77802"
|
||||
x2="458.7193"
|
||||
y2="69.431564"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-129.22376,-0.88388348)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6458057"
|
||||
inkscape:cx="15.99195"
|
||||
inkscape:cy="26.800808"
|
||||
inkscape:current-layer="g3629"
|
||||
showgrid="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:window-width="1368"
|
||||
inkscape:window-height="686"
|
||||
inkscape:window-x="-3"
|
||||
inkscape:window-y="-3"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2948">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
id="g3629"
|
||||
transform="translate(-256.70919,-66.886588)">
|
||||
<path
|
||||
style="fill:url(#linearGradient4164);fill-opacity:1;stroke:none"
|
||||
d="m 302.22919,111.79471 c 5.05515,-3.52297 13.29873,-11.50471 15.21905,-16.308956 1.92032,-4.80425 -0.92703,-6.092224 -4.34728,-7.821067 -3.42025,-1.728843 -11.85184,-5.077349 -11.85184,-5.077349 l 2.396,8.289213 c 0,0 0.53365,4.43556 0.24785,6.592739 -0.28581,2.15718 -2.75678,5.52861 -3.35539,7.5763 -0.56305,1.92604 1.69161,6.74912 1.69161,6.74912 z"
|
||||
id="path4156"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czzcczsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 262.89407,108.45721 c 1.25,2.375 23.39016,10.14016 27.01516,10.64016 1.8125,0.25 2.29366,-0.20325 2.20313,-1.18181 -0.13527,-1.46214 -0.1291,-4.04469 -0.34957,-4.19253 -1.42228,-0.95377 -2.98005,-1.58321 -1.73744,-3.53467 1.23252,-1.93559 3.54639,-7.8793 3.08211,-12.733752 -0.39017,-4.079505 -3.08211,-11.732156 -4.34598,-14.383884 -0.93815,-1.968353 -1.14146,-3.403806 -2.69691,-5.464466 -1.09651,-1.452644 -21.70616,-2.93213 -23.2925,-2.769782 -1.58635,0.162348 -2.00828,1.518263 -2.22963,2.407377 -0.22135,0.889114 -0.30571,7.576491 0.267,14.724571 0.57272,7.148079 1.33379,14.569356 2.08463,16.488786 z"
|
||||
id="path4026"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cssssssszzsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 261.74733,74.848376 c 4.77297,-2.298097 10.42982,-3.535534 12.19759,-3.800699 1.76777,-0.265165 1.85616,-0.353554 3.35876,-0.353554 1.5026,0 18.31615,2.185661 19.20984,2.440102 0.89369,0.254442 1.31733,0.718153 1.64981,1.272209 0.33248,0.554056 0.8526,1.964701 1.51592,3.569385 0.66333,1.604685 3.52276,8.304549 4.09674,12.15746 0.57397,3.852911 0.61069,7.149986 -0.30937,9.439785 -0.92005,2.289796 -2.88407,5.051656 -2.99984,6.052766 -0.10323,0.89265 1.48777,1.58434 1.50795,2.70748 0.0202,1.12315 -0.2088,2.43537 -0.2312,3.85914 -0.0442,0.48614 -3.71231,2.78423 -4.24264,3.27037 -0.52632,0.48246 -5.21492,3.40295 -5.21492,3.40295"
|
||||
id="path4030"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csszzzzzszcsc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4058);fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 292.64798,116.87119 c -0.0613,-0.51045 -0.11216,-1.34054 -0.11301,-1.84465 -0.002,-1.30207 -0.20508,-1.69035 -1.22542,-2.3451 -1.25916,-0.80801 -1.28866,-1.09883 -0.31127,-3.06833 2.09666,-4.22488 3.13651,-9.39951 2.60004,-12.938662 -0.49468,-3.263508 -2.13978,-8.637482 -4.11277,-13.435028 -1.85491,-4.510415 -2.63163,-5.918606 -3.51712,-6.376513 -1.42094,-0.734793 -7.7398,-1.582388 -17.17831,-2.304253 -2.218,-0.169634 -3.92832,-0.366266 -3.80071,-0.43696 0.57763,-0.319999 5.7237,-1.810431 7.73101,-2.239097 3.72734,-0.795984 5.29357,-0.702422 18.75236,1.120205 2.57652,0.34892 4.9474,0.757595 5.26862,0.908167 0.7251,0.339887 1.00288,0.875841 2.92968,5.652431 2.97815,7.382914 3.83422,10.800341 3.83886,15.324637 0.003,3.010664 -0.20565,3.750818 -2.05823,7.298043 -1.77675,3.40204 -1.81686,3.66344 -0.77226,5.03303 l 0.7214,0.94582 -0.11669,1.85616 c -0.0838,1.33343 -0.19721,1.94558 -0.40264,2.17369 -0.44856,0.49811 -7.78593,5.60448 -8.05309,5.60448 -0.0379,0 -0.11913,-0.41763 -0.18045,-0.92807 z"
|
||||
id="path4040"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 298.41187,109.50327 c 0,0 -1.19289,0.69632 -2.78959,1.83287 -1.5967,1.13655 -3.34895,1.74724 -3.34895,1.74724 l 21.1163,7.55628 c 0,0 1.52492,-1.30616 2.34988,-2.48467 0.82495,-1.17851 1.4597,-2.99264 1.4597,-2.99264 z"
|
||||
id="path4096"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czcczcc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4128);fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 303.84771,117.08007 -11.13759,-4.19123 3.26108,-1.5864 c 1.12474,-0.54715 0.88678,-0.84311 1.82724,-1.13572 l 0.79565,-0.5913 8.2308,2.58891 c 3.75362,1.18066 9.94824,3.09451 9.99203,3.1383 0.22632,0.22632 -1.76843,3.76022 -2.40433,4.19146 l -0.96926,0.93189 z"
|
||||
id="path4100"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsscssscc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4066);fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 288.1706,118.06952 c -5.90927,-1.52744 -19.0775,-6.53315 -23.12594,-8.79098 -1.32369,-0.73823 -1.433,-0.84438 -1.70762,-1.65827 -0.99256,-2.94158 -2.29606,-17.461719 -2.30373,-25.661932 -0.004,-4.337481 0.008,-4.486705 0.4126,-5.303301 0.57256,-1.154336 0.93555,-1.294062 3.06842,-1.181125 8.3156,0.440318 17.78767,1.482911 20.29368,2.233732 0.96549,0.289268 1.60475,1.315025 3.22064,5.167835 1.54917,3.693726 3.0056,7.935352 3.82761,11.147319 0.52916,2.067707 0.58806,2.546208 0.58749,4.772971 -8.9e-4,3.618491 -0.75773,6.669321 -2.57751,10.390591 -1.11235,2.27464 -1.12723,2.74968 -0.11704,3.73645 0.41322,0.40363 0.93691,0.85147 1.16377,0.9952 0.38516,0.24401 0.41907,0.40453 0.51215,2.42484 l 0.0997,2.16352 -0.8657,-0.009 c -0.47614,-0.005 -1.59596,-0.19745 -2.4885,-0.42816 l 0,1e-5 z"
|
||||
id="path4042"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g4080"
|
||||
transform="translate(-150.9673,-1.0606602)">
|
||||
<path
|
||||
sodipodi:nodetypes="asasaaaa"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4070"
|
||||
d="m 424.55866,81.123948 c -3.15702,-0.193851 -7.07375,1.546506 -8.39689,4.419418 -1.55767,3.382137 -1.61293,6.880341 -0.97227,10.253048 0.77702,4.090605 3.37144,8.585636 5.65685,11.136936 3.46602,3.86925 8.36672,6.19605 12.63954,4.77297 3.28018,-1.09248 4.95245,-5.34844 5.56846,-8.75045 0.83705,-4.622732 -0.31846,-9.874648 -2.91681,-13.788582 -2.59922,-3.915244 -6.88824,-7.755319 -11.57888,-8.04334 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4072"
|
||||
d="m 414.74756,90.493113 24.2184,6.275573"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4076"
|
||||
d="m 169.98593,26.108835 c -6.05612,-1.580069 -11.06085,-2.922572 -11.12162,-2.983341 -0.18266,-0.182663 0.58449,-2.996385 1.10903,-4.067631 1.52934,-3.123317 5.80452,-4.871991 9.54028,-3.902257 2.39226,0.620985 4.38176,1.873543 6.71047,4.224799 2.44824,2.471954 4.1857,5.369469 5.01431,8.36221 0.32606,1.177632 0.33066,1.279904 0.0567,1.260351 -0.16395,-0.0117 -5.2531,-1.314063 -11.30922,-2.894131 l 0,0 z"
|
||||
style="fill:#e6e623;fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4078"
|
||||
d="m 172.02808,44.3989 c -6.16018,-1.541917 -12.02571,-9.07237 -13.13313,-16.860955 -0.26179,-1.841202 -0.32987,-3.109893 -0.16688,-3.109893 0.0513,0 5.20213,1.319946 11.44629,2.933214 7.5964,1.962636 11.43166,3.030152 11.59068,3.226174 0.18415,0.227005 0.21812,0.87004 0.15091,2.856223 -0.07,2.066843 -0.17668,2.871385 -0.5511,4.154252 -0.96894,3.319856 -2.41705,5.471557 -4.30356,6.394542 -0.85234,0.417011 -1.2542,0.496417 -2.68747,0.531046 -0.9269,0.02239 -1.98248,-0.03368 -2.34574,-0.124603 l 0,0 z"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#e3d328;fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d=""
|
||||
id="path4102"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(256.70919,66.886588)" />
|
||||
<g
|
||||
id="g4110"
|
||||
transform="translate(-90.764648,-1.9981602)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccczcc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4098"
|
||||
d="m 404.33355,122.4995 0.18214,4.36331 3.67098,-4.14012 -0.1259,-5.15409 c 0,0 -0.77656,1.12493 -1.71729,2.5605 -0.94073,1.43557 -2.00991,2.3704 -2.00991,2.3704 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4104"
|
||||
d="m 148.03449,58.858877 c -0.0149,-0.225509 -0.0507,-1.020477 -0.0796,-1.766595 l -0.0524,-1.356578 0.4641,-0.484326 c 0.89408,-0.933041 1.46119,-1.723083 2.49425,-3.474717 l 0.25998,-0.44082 0.0271,0.529208 c 0.0149,0.291065 0.0293,1.28493 0.032,2.208588 l 0.005,1.679379 -1.54955,1.745669 c -0.85225,0.960119 -1.55497,1.751191 -1.5616,1.75794 -0.007,0.0067 -0.0243,-0.172238 -0.0392,-0.397748 l 0,0 z"
|
||||
style="fill:#ada9a9;fill-opacity:1;stroke:#040400;stroke-width:0.02209709;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 291.79937,113.38569 10.07627,-5.74524"
|
||||
id="path4114"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 290.0316,110.82243 10.25305,-5.56846"
|
||||
id="path4116"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 285.7994,77.325928 11.75,-3.75"
|
||||
id="path4118"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 295.33146,114.28422 c 0,0 2.74177,-0.65463 3.98234,-1.67742 1.24058,-1.0228 1.57637,-2.44064 1.57637,-2.44064"
|
||||
id="path4132"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4134"
|
||||
d="m 299.23348,115.64888 c 1.31222,-0.40089 3.15734,-0.79161 4.02654,-1.58904 0.8692,-0.79744 1.53217,-2.52903 1.53217,-2.52903"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 303.7167,117.17959 c 0,0 2.4987,-0.76512 3.5625,-1.83211 1.0638,-1.06699 1.68685,-2.63951 1.68685,-2.63951"
|
||||
id="path4136"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4138"
|
||||
d="m 308.39147,118.80719 c 0,0 2.01257,-0.65464 3.03217,-1.78792 1.0196,-1.13328 1.81943,-3.05936 1.81943,-3.05936"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4140"
|
||||
sodipodi:cx="141.39062"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:ry="0.38633439"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,183.77022,22.103675)" />
|
||||
<path
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,187.98897,23.666175)"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
sodipodi:ry="0.38633439"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:cx="141.39062"
|
||||
id="path4142"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4144"
|
||||
sodipodi:cx="141.39062"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:ry="0.38633439"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,191.89522,25.103675)" />
|
||||
<path
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,196.64522,26.759925)"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
sodipodi:ry="0.38633439"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:cx="141.39062"
|
||||
id="path4146"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<g
|
||||
id="g4152"
|
||||
transform="translate(-124.15979,-1.0606602)">
|
||||
<path
|
||||
sodipodi:nodetypes="cczcczc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4148"
|
||||
d="m 425.39761,94.026754 -5.86206,2.529029 c 0,0 0.33081,2.606578 0.4192,4.248697 0.0884,1.64212 -1.53033,5.90219 -1.53033,5.90219 l 5.4362,-2.82008 c 0,0 1.65346,-2.64371 1.80112,-4.625652 0.14766,-1.981939 -0.26413,-5.234184 -0.26413,-5.234184 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4150"
|
||||
d="m 162.33095,39.039846 c 0,-0.02573 0.0872,-0.292919 0.19369,-0.59375 0.27292,-0.770667 0.75701,-2.53859 0.93068,-3.398905 0.11835,-0.586269 0.10701,-1.15127 -0.0587,-2.919748 -0.11296,-1.206045 -0.17696,-2.221238 -0.14222,-2.255985 0.0789,-0.07891 5.1297,-2.26544 5.1641,-2.235583 0.0138,0.01198 0.0912,0.904214 0.17197,1.982736 0.17731,2.367331 0.0602,3.386696 -0.56177,4.889171 -0.88339,2.134039 -0.8707,2.121035 -3.32878,3.4126 -2.07094,1.08815 -2.36902,1.229006 -2.36902,1.119464 z"
|
||||
style="fill:#eeee27;fill-opacity:1;stroke:#040400;stroke-width:0.0625;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ae3636;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 261.29873,104.15761 20.5002,-31.05851 31.88182,21.588106 -22.35737,30.475264"
|
||||
id="path3078"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 23 KiB |
461
src/Mod/Part/Gui/Resources/icons/Part_Measure_Toggle_All.svg
Normal file
|
@ -0,0 +1,461 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2943"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="Part_Measure_Toggle_All.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1">
|
||||
<defs
|
||||
id="defs2945">
|
||||
<linearGradient
|
||||
id="linearGradient4158">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4160" />
|
||||
<stop
|
||||
style="stop-color:#f6f6f6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4162" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4122">
|
||||
<stop
|
||||
style="stop-color:#e3d328;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4124" />
|
||||
<stop
|
||||
style="stop-color:#e1dec3;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4126" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4088">
|
||||
<stop
|
||||
style="stop-color:#e9cd23;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4090" />
|
||||
<stop
|
||||
style="stop-color:#040000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4092" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4060">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4062" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4064" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4052">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4054" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4056" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4349">
|
||||
<stop
|
||||
style="stop-color:#898709;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4351" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4353" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5241">
|
||||
<stop
|
||||
style="stop-color:#212c45;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5243" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5245" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5227"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5229" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3902">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop3904" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3906" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3894">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3896" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3898" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3886">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3888" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3890" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3792">
|
||||
<stop
|
||||
style="stop-color:#aaaaaa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3794" />
|
||||
<stop
|
||||
style="stop-color:#d2d2d2;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3796" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3784">
|
||||
<stop
|
||||
style="stop-color:#bebebe;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3786" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3788" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3377">
|
||||
<stop
|
||||
id="stop3379"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3381"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 32 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="64 : 32 : 1"
|
||||
inkscape:persp3d-origin="32 : 21.333333 : 1"
|
||||
id="perspective2951" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4052"
|
||||
id="linearGradient4058"
|
||||
x1="138.99986"
|
||||
y1="44.863674"
|
||||
x2="92.497559"
|
||||
y2="-14.356517"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4060"
|
||||
id="linearGradient4066"
|
||||
x1="103.93729"
|
||||
y1="49.179436"
|
||||
x2="120.49899"
|
||||
y2="0.21229285"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4122"
|
||||
id="linearGradient4128"
|
||||
x1="391.3074"
|
||||
y1="120.81136"
|
||||
x2="394.43201"
|
||||
y2="112.43636"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-88.034794,-1.0606602)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4158"
|
||||
id="linearGradient4164"
|
||||
x1="419.99387"
|
||||
y1="102.77802"
|
||||
x2="458.7193"
|
||||
y2="69.431564"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-129.22376,-0.88388348)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6458057"
|
||||
inkscape:cx="38.565701"
|
||||
inkscape:cy="28.815674"
|
||||
inkscape:current-layer="g3629"
|
||||
showgrid="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:window-width="1368"
|
||||
inkscape:window-height="686"
|
||||
inkscape:window-x="-3"
|
||||
inkscape:window-y="-3"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2948">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
id="g3629"
|
||||
transform="translate(-256.70919,-66.886588)">
|
||||
<path
|
||||
style="fill:url(#linearGradient4164);fill-opacity:1;stroke:none"
|
||||
d="m 302.22919,111.79471 c 5.05515,-3.52297 13.29873,-11.50471 15.21905,-16.308956 1.92032,-4.80425 -0.92703,-6.092224 -4.34728,-7.821067 -3.42025,-1.728843 -11.85184,-5.077349 -11.85184,-5.077349 l 2.396,8.289213 c 0,0 0.53365,4.43556 0.24785,6.592739 -0.28581,2.15718 -2.75678,5.52861 -3.35539,7.5763 -0.56305,1.92604 1.69161,6.74912 1.69161,6.74912 z"
|
||||
id="path4156"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czzcczsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 262.89407,108.45721 c 1.25,2.375 23.39016,10.14016 27.01516,10.64016 1.8125,0.25 2.29366,-0.20325 2.20313,-1.18181 -0.13527,-1.46214 -0.1291,-4.04469 -0.34957,-4.19253 -1.42228,-0.95377 -2.98005,-1.58321 -1.73744,-3.53467 1.23252,-1.93559 3.54639,-7.8793 3.08211,-12.733752 -0.39017,-4.079505 -3.08211,-11.732156 -4.34598,-14.383884 -0.93815,-1.968353 -1.14146,-3.403806 -2.69691,-5.464466 -1.09651,-1.452644 -21.70616,-2.93213 -23.2925,-2.769782 -1.58635,0.162348 -2.00828,1.518263 -2.22963,2.407377 -0.22135,0.889114 -0.30571,7.576491 0.267,14.724571 0.57272,7.148079 1.33379,14.569356 2.08463,16.488786 z"
|
||||
id="path4026"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cssssssszzsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 261.74733,74.848376 c 4.77297,-2.298097 10.42982,-3.535534 12.19759,-3.800699 1.76777,-0.265165 1.85616,-0.353554 3.35876,-0.353554 1.5026,0 18.31615,2.185661 19.20984,2.440102 0.89369,0.254442 1.31733,0.718153 1.64981,1.272209 0.33248,0.554056 0.8526,1.964701 1.51592,3.569385 0.66333,1.604685 3.52276,8.304549 4.09674,12.15746 0.57397,3.852911 0.61069,7.149986 -0.30937,9.439785 -0.92005,2.289796 -2.88407,5.051656 -2.99984,6.052766 -0.10323,0.89265 1.48777,1.58434 1.50795,2.70748 0.0202,1.12315 -0.2088,2.43537 -0.2312,3.85914 -0.0442,0.48614 -3.71231,2.78423 -4.24264,3.27037 -0.52632,0.48246 -5.21492,3.40295 -5.21492,3.40295"
|
||||
id="path4030"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csszzzzzszcsc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4058);fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 292.64798,116.87119 c -0.0613,-0.51045 -0.11216,-1.34054 -0.11301,-1.84465 -0.002,-1.30207 -0.20508,-1.69035 -1.22542,-2.3451 -1.25916,-0.80801 -1.28866,-1.09883 -0.31127,-3.06833 2.09666,-4.22488 3.13651,-9.39951 2.60004,-12.938662 -0.49468,-3.263508 -2.13978,-8.637482 -4.11277,-13.435028 -1.85491,-4.510415 -2.63163,-5.918606 -3.51712,-6.376513 -1.42094,-0.734793 -7.7398,-1.582388 -17.17831,-2.304253 -2.218,-0.169634 -3.92832,-0.366266 -3.80071,-0.43696 0.57763,-0.319999 5.7237,-1.810431 7.73101,-2.239097 3.72734,-0.795984 5.29357,-0.702422 18.75236,1.120205 2.57652,0.34892 4.9474,0.757595 5.26862,0.908167 0.7251,0.339887 1.00288,0.875841 2.92968,5.652431 2.97815,7.382914 3.83422,10.800341 3.83886,15.324637 0.003,3.010664 -0.20565,3.750818 -2.05823,7.298043 -1.77675,3.40204 -1.81686,3.66344 -0.77226,5.03303 l 0.7214,0.94582 -0.11669,1.85616 c -0.0838,1.33343 -0.19721,1.94558 -0.40264,2.17369 -0.44856,0.49811 -7.78593,5.60448 -8.05309,5.60448 -0.0379,0 -0.11913,-0.41763 -0.18045,-0.92807 z"
|
||||
id="path4040"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 298.41187,109.50327 c 0,0 -1.19289,0.69632 -2.78959,1.83287 -1.5967,1.13655 -3.34895,1.74724 -3.34895,1.74724 l 21.1163,7.55628 c 0,0 1.52492,-1.30616 2.34988,-2.48467 0.82495,-1.17851 1.4597,-2.99264 1.4597,-2.99264 z"
|
||||
id="path4096"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czcczcc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4128);fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 303.84771,117.08007 -11.13759,-4.19123 3.26108,-1.5864 c 1.12474,-0.54715 0.88678,-0.84311 1.82724,-1.13572 l 0.79565,-0.5913 8.2308,2.58891 c 3.75362,1.18066 9.94824,3.09451 9.99203,3.1383 0.22632,0.22632 -1.76843,3.76022 -2.40433,4.19146 l -0.96926,0.93189 z"
|
||||
id="path4100"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsscssscc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4066);fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 288.1706,118.06952 c -5.90927,-1.52744 -19.0775,-6.53315 -23.12594,-8.79098 -1.32369,-0.73823 -1.433,-0.84438 -1.70762,-1.65827 -0.99256,-2.94158 -2.29606,-17.461719 -2.30373,-25.661932 -0.004,-4.337481 0.008,-4.486705 0.4126,-5.303301 0.57256,-1.154336 0.93555,-1.294062 3.06842,-1.181125 8.3156,0.440318 17.78767,1.482911 20.29368,2.233732 0.96549,0.289268 1.60475,1.315025 3.22064,5.167835 1.54917,3.693726 3.0056,7.935352 3.82761,11.147319 0.52916,2.067707 0.58806,2.546208 0.58749,4.772971 -8.9e-4,3.618491 -0.75773,6.669321 -2.57751,10.390591 -1.11235,2.27464 -1.12723,2.74968 -0.11704,3.73645 0.41322,0.40363 0.93691,0.85147 1.16377,0.9952 0.38516,0.24401 0.41907,0.40453 0.51215,2.42484 l 0.0997,2.16352 -0.8657,-0.009 c -0.47614,-0.005 -1.59596,-0.19745 -2.4885,-0.42816 l 0,1e-5 z"
|
||||
id="path4042"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g4080"
|
||||
transform="translate(-150.9673,-1.0606602)">
|
||||
<path
|
||||
sodipodi:nodetypes="asasaaaa"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4070"
|
||||
d="m 424.55866,81.123948 c -3.15702,-0.193851 -7.07375,1.546506 -8.39689,4.419418 -1.55767,3.382137 -1.61293,6.880341 -0.97227,10.253048 0.77702,4.090605 3.37144,8.585636 5.65685,11.136936 3.46602,3.86925 8.36672,6.19605 12.63954,4.77297 3.28018,-1.09248 4.95245,-5.34844 5.56846,-8.75045 0.83705,-4.622732 -0.31846,-9.874648 -2.91681,-13.788582 -2.59922,-3.915244 -6.88824,-7.755319 -11.57888,-8.04334 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4072"
|
||||
d="m 414.74756,90.493113 24.2184,6.275573"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4076"
|
||||
d="m 169.98593,26.108835 c -6.05612,-1.580069 -11.06085,-2.922572 -11.12162,-2.983341 -0.18266,-0.182663 0.58449,-2.996385 1.10903,-4.067631 1.52934,-3.123317 5.80452,-4.871991 9.54028,-3.902257 2.39226,0.620985 4.38176,1.873543 6.71047,4.224799 2.44824,2.471954 4.1857,5.369469 5.01431,8.36221 0.32606,1.177632 0.33066,1.279904 0.0567,1.260351 -0.16395,-0.0117 -5.2531,-1.314063 -11.30922,-2.894131 l 0,0 z"
|
||||
style="fill:#e6e623;fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4078"
|
||||
d="m 172.02808,44.3989 c -6.16018,-1.541917 -12.02571,-9.07237 -13.13313,-16.860955 -0.26179,-1.841202 -0.32987,-3.109893 -0.16688,-3.109893 0.0513,0 5.20213,1.319946 11.44629,2.933214 7.5964,1.962636 11.43166,3.030152 11.59068,3.226174 0.18415,0.227005 0.21812,0.87004 0.15091,2.856223 -0.07,2.066843 -0.17668,2.871385 -0.5511,4.154252 -0.96894,3.319856 -2.41705,5.471557 -4.30356,6.394542 -0.85234,0.417011 -1.2542,0.496417 -2.68747,0.531046 -0.9269,0.02239 -1.98248,-0.03368 -2.34574,-0.124603 l 0,0 z"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#e3d328;fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d=""
|
||||
id="path4102"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(256.70919,66.886588)" />
|
||||
<g
|
||||
id="g4110"
|
||||
transform="translate(-90.764648,-1.9981602)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccczcc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4098"
|
||||
d="m 404.33355,122.4995 0.18214,4.36331 3.67098,-4.14012 -0.1259,-5.15409 c 0,0 -0.77656,1.12493 -1.71729,2.5605 -0.94073,1.43557 -2.00991,2.3704 -2.00991,2.3704 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4104"
|
||||
d="m 148.03449,58.858877 c -0.0149,-0.225509 -0.0507,-1.020477 -0.0796,-1.766595 l -0.0524,-1.356578 0.4641,-0.484326 c 0.89408,-0.933041 1.46119,-1.723083 2.49425,-3.474717 l 0.25998,-0.44082 0.0271,0.529208 c 0.0149,0.291065 0.0293,1.28493 0.032,2.208588 l 0.005,1.679379 -1.54955,1.745669 c -0.85225,0.960119 -1.55497,1.751191 -1.5616,1.75794 -0.007,0.0067 -0.0243,-0.172238 -0.0392,-0.397748 l 0,0 z"
|
||||
style="fill:#ada9a9;fill-opacity:1;stroke:#040400;stroke-width:0.02209709;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 291.79937,113.38569 10.07627,-5.74524"
|
||||
id="path4114"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 290.0316,110.82243 10.25305,-5.56846"
|
||||
id="path4116"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 285.7994,77.325928 11.75,-3.75"
|
||||
id="path4118"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 295.33146,114.28422 c 0,0 2.74177,-0.65463 3.98234,-1.67742 1.24058,-1.0228 1.57637,-2.44064 1.57637,-2.44064"
|
||||
id="path4132"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4134"
|
||||
d="m 299.23348,115.64888 c 1.31222,-0.40089 3.15734,-0.79161 4.02654,-1.58904 0.8692,-0.79744 1.53217,-2.52903 1.53217,-2.52903"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 303.7167,117.17959 c 0,0 2.4987,-0.76512 3.5625,-1.83211 1.0638,-1.06699 1.68685,-2.63951 1.68685,-2.63951"
|
||||
id="path4136"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4138"
|
||||
d="m 308.39147,118.80719 c 0,0 2.01257,-0.65464 3.03217,-1.78792 1.0196,-1.13328 1.81943,-3.05936 1.81943,-3.05936"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4140"
|
||||
sodipodi:cx="141.39062"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:ry="0.38633439"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,183.77022,22.103675)" />
|
||||
<path
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,187.98897,23.666175)"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
sodipodi:ry="0.38633439"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:cx="141.39062"
|
||||
id="path4142"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4144"
|
||||
sodipodi:cx="141.39062"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:ry="0.38633439"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,191.89522,25.103675)" />
|
||||
<path
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,196.64522,26.759925)"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
sodipodi:ry="0.38633439"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:cx="141.39062"
|
||||
id="path4146"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<g
|
||||
id="g4152"
|
||||
transform="translate(-124.15979,-1.0606602)">
|
||||
<path
|
||||
sodipodi:nodetypes="cczcczc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4148"
|
||||
d="m 425.39761,94.026754 -5.86206,2.529029 c 0,0 0.33081,2.606578 0.4192,4.248697 0.0884,1.64212 -1.53033,5.90219 -1.53033,5.90219 l 5.4362,-2.82008 c 0,0 1.65346,-2.64371 1.80112,-4.625652 0.14766,-1.981939 -0.26413,-5.234184 -0.26413,-5.234184 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4150"
|
||||
d="m 162.33095,39.039846 c 0,-0.02573 0.0872,-0.292919 0.19369,-0.59375 0.27292,-0.770667 0.75701,-2.53859 0.93068,-3.398905 0.11835,-0.586269 0.10701,-1.15127 -0.0587,-2.919748 -0.11296,-1.206045 -0.17696,-2.221238 -0.14222,-2.255985 0.0789,-0.07891 5.1297,-2.26544 5.1641,-2.235583 0.0138,0.01198 0.0912,0.904214 0.17197,1.982736 0.17731,2.367331 0.0602,3.386696 -0.56177,4.889171 -0.88339,2.134039 -0.8707,2.121035 -3.32878,3.4126 -2.07094,1.08815 -2.36902,1.229006 -2.36902,1.119464 z"
|
||||
style="fill:#eeee27;fill-opacity:1;stroke:#040400;stroke-width:0.0625;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#2a7423;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 7.2620282,53.726887 0,-41.800942 50.1257068,0 0,42.509433"
|
||||
id="path4660"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(256.70919,66.886588)"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:none;stroke:#ae3636;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 261.29873,104.15761 20.5002,-31.05851 31.88182,21.588106 -22.35737,30.475264"
|
||||
id="path3078-3"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 24 KiB |
455
src/Mod/Part/Gui/Resources/icons/Part_Measure_Toggle_Delta.svg
Normal file
|
@ -0,0 +1,455 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64px"
|
||||
height="64px"
|
||||
id="svg2943"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="Part_Measure_Toggle_Delta.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.1">
|
||||
<defs
|
||||
id="defs2945">
|
||||
<linearGradient
|
||||
id="linearGradient4158">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4160" />
|
||||
<stop
|
||||
style="stop-color:#f6f6f6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4162" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4122">
|
||||
<stop
|
||||
style="stop-color:#e3d328;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4124" />
|
||||
<stop
|
||||
style="stop-color:#e1dec3;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4126" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4088">
|
||||
<stop
|
||||
style="stop-color:#e9cd23;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4090" />
|
||||
<stop
|
||||
style="stop-color:#040000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4092" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4060">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4062" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4064" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4052">
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4054" />
|
||||
<stop
|
||||
style="stop-color:#ada9a9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4056" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4349">
|
||||
<stop
|
||||
style="stop-color:#898709;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4351" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4353" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5241">
|
||||
<stop
|
||||
style="stop-color:#212c45;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5243" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5245" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5227"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5229" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3902">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.58823532;"
|
||||
offset="0"
|
||||
id="stop3904" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3906" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3894">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3896" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3898" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3886">
|
||||
<stop
|
||||
style="stop-color:#45351d;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3888" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3890" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3792">
|
||||
<stop
|
||||
style="stop-color:#aaaaaa;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3794" />
|
||||
<stop
|
||||
style="stop-color:#d2d2d2;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop3796" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3784">
|
||||
<stop
|
||||
style="stop-color:#bebebe;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3786" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0.39215687;"
|
||||
offset="1"
|
||||
id="stop3788" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3377">
|
||||
<stop
|
||||
id="stop3379"
|
||||
offset="0"
|
||||
style="stop-color:#71b2f8;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3381"
|
||||
offset="1"
|
||||
style="stop-color:#002795;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 32 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="64 : 32 : 1"
|
||||
inkscape:persp3d-origin="32 : 21.333333 : 1"
|
||||
id="perspective2951" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4052"
|
||||
id="linearGradient4058"
|
||||
x1="138.99986"
|
||||
y1="44.863674"
|
||||
x2="92.497559"
|
||||
y2="-14.356517"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4060"
|
||||
id="linearGradient4066"
|
||||
x1="103.93729"
|
||||
y1="49.179436"
|
||||
x2="120.49899"
|
||||
y2="0.21229285"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(168.6744,65.825928)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4122"
|
||||
id="linearGradient4128"
|
||||
x1="391.3074"
|
||||
y1="120.81136"
|
||||
x2="394.43201"
|
||||
y2="112.43636"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-88.034794,-1.0606602)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4158"
|
||||
id="linearGradient4164"
|
||||
x1="419.99387"
|
||||
y1="102.77802"
|
||||
x2="458.7193"
|
||||
y2="69.431564"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-129.22376,-0.88388348)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6458057"
|
||||
inkscape:cx="38.565701"
|
||||
inkscape:cy="28.815674"
|
||||
inkscape:current-layer="g3629"
|
||||
showgrid="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:window-width="1368"
|
||||
inkscape:window-height="686"
|
||||
inkscape:window-x="-3"
|
||||
inkscape:window-y="-3"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2948">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
id="g3629"
|
||||
transform="translate(-256.70919,-66.886588)">
|
||||
<path
|
||||
style="fill:url(#linearGradient4164);fill-opacity:1;stroke:none"
|
||||
d="m 302.22919,111.79471 c 5.05515,-3.52297 13.29873,-11.50471 15.21905,-16.308956 1.92032,-4.80425 -0.92703,-6.092224 -4.34728,-7.821067 -3.42025,-1.728843 -11.85184,-5.077349 -11.85184,-5.077349 l 2.396,8.289213 c 0,0 0.53365,4.43556 0.24785,6.592739 -0.28581,2.15718 -2.75678,5.52861 -3.35539,7.5763 -0.56305,1.92604 1.69161,6.74912 1.69161,6.74912 z"
|
||||
id="path4156"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czzcczsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 262.89407,108.45721 c 1.25,2.375 23.39016,10.14016 27.01516,10.64016 1.8125,0.25 2.29366,-0.20325 2.20313,-1.18181 -0.13527,-1.46214 -0.1291,-4.04469 -0.34957,-4.19253 -1.42228,-0.95377 -2.98005,-1.58321 -1.73744,-3.53467 1.23252,-1.93559 3.54639,-7.8793 3.08211,-12.733752 -0.39017,-4.079505 -3.08211,-11.732156 -4.34598,-14.383884 -0.93815,-1.968353 -1.14146,-3.403806 -2.69691,-5.464466 -1.09651,-1.452644 -21.70616,-2.93213 -23.2925,-2.769782 -1.58635,0.162348 -2.00828,1.518263 -2.22963,2.407377 -0.22135,0.889114 -0.30571,7.576491 0.267,14.724571 0.57272,7.148079 1.33379,14.569356 2.08463,16.488786 z"
|
||||
id="path4026"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cssssssszzsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 261.74733,74.848376 c 4.77297,-2.298097 10.42982,-3.535534 12.19759,-3.800699 1.76777,-0.265165 1.85616,-0.353554 3.35876,-0.353554 1.5026,0 18.31615,2.185661 19.20984,2.440102 0.89369,0.254442 1.31733,0.718153 1.64981,1.272209 0.33248,0.554056 0.8526,1.964701 1.51592,3.569385 0.66333,1.604685 3.52276,8.304549 4.09674,12.15746 0.57397,3.852911 0.61069,7.149986 -0.30937,9.439785 -0.92005,2.289796 -2.88407,5.051656 -2.99984,6.052766 -0.10323,0.89265 1.48777,1.58434 1.50795,2.70748 0.0202,1.12315 -0.2088,2.43537 -0.2312,3.85914 -0.0442,0.48614 -3.71231,2.78423 -4.24264,3.27037 -0.52632,0.48246 -5.21492,3.40295 -5.21492,3.40295"
|
||||
id="path4030"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csszzzzzszcsc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4058);fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 292.64798,116.87119 c -0.0613,-0.51045 -0.11216,-1.34054 -0.11301,-1.84465 -0.002,-1.30207 -0.20508,-1.69035 -1.22542,-2.3451 -1.25916,-0.80801 -1.28866,-1.09883 -0.31127,-3.06833 2.09666,-4.22488 3.13651,-9.39951 2.60004,-12.938662 -0.49468,-3.263508 -2.13978,-8.637482 -4.11277,-13.435028 -1.85491,-4.510415 -2.63163,-5.918606 -3.51712,-6.376513 -1.42094,-0.734793 -7.7398,-1.582388 -17.17831,-2.304253 -2.218,-0.169634 -3.92832,-0.366266 -3.80071,-0.43696 0.57763,-0.319999 5.7237,-1.810431 7.73101,-2.239097 3.72734,-0.795984 5.29357,-0.702422 18.75236,1.120205 2.57652,0.34892 4.9474,0.757595 5.26862,0.908167 0.7251,0.339887 1.00288,0.875841 2.92968,5.652431 2.97815,7.382914 3.83422,10.800341 3.83886,15.324637 0.003,3.010664 -0.20565,3.750818 -2.05823,7.298043 -1.77675,3.40204 -1.81686,3.66344 -0.77226,5.03303 l 0.7214,0.94582 -0.11669,1.85616 c -0.0838,1.33343 -0.19721,1.94558 -0.40264,2.17369 -0.44856,0.49811 -7.78593,5.60448 -8.05309,5.60448 -0.0379,0 -0.11913,-0.41763 -0.18045,-0.92807 z"
|
||||
id="path4040"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 298.41187,109.50327 c 0,0 -1.19289,0.69632 -2.78959,1.83287 -1.5967,1.13655 -3.34895,1.74724 -3.34895,1.74724 l 21.1163,7.55628 c 0,0 1.52492,-1.30616 2.34988,-2.48467 0.82495,-1.17851 1.4597,-2.99264 1.4597,-2.99264 z"
|
||||
id="path4096"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czcczcc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4128);fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 303.84771,117.08007 -11.13759,-4.19123 3.26108,-1.5864 c 1.12474,-0.54715 0.88678,-0.84311 1.82724,-1.13572 l 0.79565,-0.5913 8.2308,2.58891 c 3.75362,1.18066 9.94824,3.09451 9.99203,3.1383 0.22632,0.22632 -1.76843,3.76022 -2.40433,4.19146 l -0.96926,0.93189 z"
|
||||
id="path4100"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsscssscc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient4066);fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 288.1706,118.06952 c -5.90927,-1.52744 -19.0775,-6.53315 -23.12594,-8.79098 -1.32369,-0.73823 -1.433,-0.84438 -1.70762,-1.65827 -0.99256,-2.94158 -2.29606,-17.461719 -2.30373,-25.661932 -0.004,-4.337481 0.008,-4.486705 0.4126,-5.303301 0.57256,-1.154336 0.93555,-1.294062 3.06842,-1.181125 8.3156,0.440318 17.78767,1.482911 20.29368,2.233732 0.96549,0.289268 1.60475,1.315025 3.22064,5.167835 1.54917,3.693726 3.0056,7.935352 3.82761,11.147319 0.52916,2.067707 0.58806,2.546208 0.58749,4.772971 -8.9e-4,3.618491 -0.75773,6.669321 -2.57751,10.390591 -1.11235,2.27464 -1.12723,2.74968 -0.11704,3.73645 0.41322,0.40363 0.93691,0.85147 1.16377,0.9952 0.38516,0.24401 0.41907,0.40453 0.51215,2.42484 l 0.0997,2.16352 -0.8657,-0.009 c -0.47614,-0.005 -1.59596,-0.19745 -2.4885,-0.42816 l 0,1e-5 z"
|
||||
id="path4042"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g4080"
|
||||
transform="translate(-150.9673,-1.0606602)">
|
||||
<path
|
||||
sodipodi:nodetypes="asasaaaa"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4070"
|
||||
d="m 424.55866,81.123948 c -3.15702,-0.193851 -7.07375,1.546506 -8.39689,4.419418 -1.55767,3.382137 -1.61293,6.880341 -0.97227,10.253048 0.77702,4.090605 3.37144,8.585636 5.65685,11.136936 3.46602,3.86925 8.36672,6.19605 12.63954,4.77297 3.28018,-1.09248 4.95245,-5.34844 5.56846,-8.75045 0.83705,-4.622732 -0.31846,-9.874648 -2.91681,-13.788582 -2.59922,-3.915244 -6.88824,-7.755319 -11.57888,-8.04334 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4072"
|
||||
d="m 414.74756,90.493113 24.2184,6.275573"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4076"
|
||||
d="m 169.98593,26.108835 c -6.05612,-1.580069 -11.06085,-2.922572 -11.12162,-2.983341 -0.18266,-0.182663 0.58449,-2.996385 1.10903,-4.067631 1.52934,-3.123317 5.80452,-4.871991 9.54028,-3.902257 2.39226,0.620985 4.38176,1.873543 6.71047,4.224799 2.44824,2.471954 4.1857,5.369469 5.01431,8.36221 0.32606,1.177632 0.33066,1.279904 0.0567,1.260351 -0.16395,-0.0117 -5.2531,-1.314063 -11.30922,-2.894131 l 0,0 z"
|
||||
style="fill:#e6e623;fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4078"
|
||||
d="m 172.02808,44.3989 c -6.16018,-1.541917 -12.02571,-9.07237 -13.13313,-16.860955 -0.26179,-1.841202 -0.32987,-3.109893 -0.16688,-3.109893 0.0513,0 5.20213,1.319946 11.44629,2.933214 7.5964,1.962636 11.43166,3.030152 11.59068,3.226174 0.18415,0.227005 0.21812,0.87004 0.15091,2.856223 -0.07,2.066843 -0.17668,2.871385 -0.5511,4.154252 -0.96894,3.319856 -2.41705,5.471557 -4.30356,6.394542 -0.85234,0.417011 -1.2542,0.496417 -2.68747,0.531046 -0.9269,0.02239 -1.98248,-0.03368 -2.34574,-0.124603 l 0,0 z"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040000;stroke-width:0.17677669;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#e3d328;fill-opacity:1;stroke:#040400;stroke-width:0.08838835;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d=""
|
||||
id="path4102"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(256.70919,66.886588)" />
|
||||
<g
|
||||
id="g4110"
|
||||
transform="translate(-90.764648,-1.9981602)">
|
||||
<path
|
||||
sodipodi:nodetypes="cccczcc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4098"
|
||||
d="m 404.33355,122.4995 0.18214,4.36331 3.67098,-4.14012 -0.1259,-5.15409 c 0,0 -0.77656,1.12493 -1.71729,2.5605 -0.94073,1.43557 -2.00991,2.3704 -2.00991,2.3704 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4104"
|
||||
d="m 148.03449,58.858877 c -0.0149,-0.225509 -0.0507,-1.020477 -0.0796,-1.766595 l -0.0524,-1.356578 0.4641,-0.484326 c 0.89408,-0.933041 1.46119,-1.723083 2.49425,-3.474717 l 0.25998,-0.44082 0.0271,0.529208 c 0.0149,0.291065 0.0293,1.28493 0.032,2.208588 l 0.005,1.679379 -1.54955,1.745669 c -0.85225,0.960119 -1.55497,1.751191 -1.5616,1.75794 -0.007,0.0067 -0.0243,-0.172238 -0.0392,-0.397748 l 0,0 z"
|
||||
style="fill:#ada9a9;fill-opacity:1;stroke:#040400;stroke-width:0.02209709;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 291.79937,113.38569 10.07627,-5.74524"
|
||||
id="path4114"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 290.0316,110.82243 10.25305,-5.56846"
|
||||
id="path4116"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 285.7994,77.325928 11.75,-3.75"
|
||||
id="path4118"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 295.33146,114.28422 c 0,0 2.74177,-0.65463 3.98234,-1.67742 1.24058,-1.0228 1.57637,-2.44064 1.57637,-2.44064"
|
||||
id="path4132"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4134"
|
||||
d="m 299.23348,115.64888 c 1.31222,-0.40089 3.15734,-0.79161 4.02654,-1.58904 0.8692,-0.79744 1.53217,-2.52903 1.53217,-2.52903"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 303.7167,117.17959 c 0,0 2.4987,-0.76512 3.5625,-1.83211 1.0638,-1.06699 1.68685,-2.63951 1.68685,-2.63951"
|
||||
id="path4136"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
sodipodi:nodetypes="czc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4138"
|
||||
d="m 308.39147,118.80719 c 0,0 2.01257,-0.65464 3.03217,-1.78792 1.0196,-1.13328 1.81943,-3.05936 1.81943,-3.05936"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4140"
|
||||
sodipodi:cx="141.39062"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:ry="0.38633439"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,183.77022,22.103675)" />
|
||||
<path
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,187.98897,23.666175)"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
sodipodi:ry="0.38633439"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:cx="141.39062"
|
||||
id="path4142"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4144"
|
||||
sodipodi:cx="141.39062"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:ry="0.38633439"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,191.89522,25.103675)" />
|
||||
<path
|
||||
transform="matrix(0.92587274,0.37783551,-0.37783551,0.92587274,196.64522,26.759925)"
|
||||
d="m 142.26505,41.90625 c 0,0.213367 -0.3915,0.386334 -0.87443,0.386334 -0.48292,0 -0.87442,-0.172967 -0.87442,-0.386334 0,-0.213367 0.3915,-0.386334 0.87442,-0.386334 0.48293,0 0.87443,0.172967 0.87443,0.386334 z"
|
||||
sodipodi:ry="0.38633439"
|
||||
sodipodi:rx="0.87442058"
|
||||
sodipodi:cy="41.90625"
|
||||
sodipodi:cx="141.39062"
|
||||
id="path4146"
|
||||
style="fill:#040000;fill-opacity:1;stroke:#040400;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<g
|
||||
id="g4152"
|
||||
transform="translate(-124.15979,-1.0606602)">
|
||||
<path
|
||||
sodipodi:nodetypes="cczcczc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4148"
|
||||
d="m 425.39761,94.026754 -5.86206,2.529029 c 0,0 0.33081,2.606578 0.4192,4.248697 0.0884,1.64212 -1.53033,5.90219 -1.53033,5.90219 l 5.4362,-2.82008 c 0,0 1.65346,-2.64371 1.80112,-4.625652 0.14766,-1.981939 -0.26413,-5.234184 -0.26413,-5.234184 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(256.70919,66.886588)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4150"
|
||||
d="m 162.33095,39.039846 c 0,-0.02573 0.0872,-0.292919 0.19369,-0.59375 0.27292,-0.770667 0.75701,-2.53859 0.93068,-3.398905 0.11835,-0.586269 0.10701,-1.15127 -0.0587,-2.919748 -0.11296,-1.206045 -0.17696,-2.221238 -0.14222,-2.255985 0.0789,-0.07891 5.1297,-2.26544 5.1641,-2.235583 0.0138,0.01198 0.0912,0.904214 0.17197,1.982736 0.17731,2.367331 0.0602,3.386696 -0.56177,4.889171 -0.88339,2.134039 -0.8707,2.121035 -3.32878,3.4126 -2.07094,1.08815 -2.36902,1.229006 -2.36902,1.119464 z"
|
||||
style="fill:#eeee27;fill-opacity:1;stroke:#040400;stroke-width:0.0625;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#2a7423;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 7.2620282,53.726887 0,-41.800942 50.1257068,0 0,42.509433"
|
||||
id="path4660"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(256.70919,66.886588)"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 24 KiB |
1678
src/Mod/Part/Gui/TaskDimension.cpp
Normal file
360
src/Mod/Part/Gui/TaskDimension.h
Normal file
|
@ -0,0 +1,360 @@
|
|||
/***************************************************************************
|
||||
* Copyright (c) 2013 Thomas Anderson <blobfish[at]gmx.com> *
|
||||
* *
|
||||
* This file is part of the FreeCAD CAx development system. *
|
||||
* *
|
||||
* This library is free software; you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU Library General Public *
|
||||
* License as published by the Free Software Foundation; either *
|
||||
* version 2 of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This library is distributed in the hope that it will be useful, *
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
* GNU Library General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU Library General Public *
|
||||
* License along with this library; see the file COPYING.LIB. If not, *
|
||||
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
||||
* Suite 330, Boston, MA 02111-1307, USA *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef TASKDIMENSION_H
|
||||
#define TASKDIMENSION_H
|
||||
|
||||
#include <gp_Vec.hxx>
|
||||
#include <gp_Lin.hxx>
|
||||
|
||||
#include <Inventor/fields/SoSFVec3f.h>
|
||||
#include <Inventor/fields/SoSFMatrix.h>
|
||||
#include <Inventor/fields/SoSFString.h>
|
||||
#include <Inventor/nodekits/SoSeparatorKit.h>
|
||||
#include <Inventor/fields/SoSFColor.h>
|
||||
#include <Inventor/fields/SoSFRotation.h>
|
||||
#include <Inventor/fields/SoSFFloat.h>
|
||||
#include <Inventor/engines/SoSubEngine.h>
|
||||
#include <Inventor/engines/SoEngine.h>
|
||||
|
||||
#include <Gui/TaskView/TaskDialog.h>
|
||||
#include <Gui/TaskView/TaskView.h>
|
||||
|
||||
class TopoDS_Shape;
|
||||
class TopoDS_Face;
|
||||
class TopoDS_Edge;
|
||||
class TopoDS_Vertex;
|
||||
class gp_Pnt;
|
||||
class BRepExtrema_DistShapeShape;
|
||||
|
||||
class QPushButton;
|
||||
class QPixmap;
|
||||
class QLabel;
|
||||
|
||||
namespace Gui{class View3dInventorViewer;}
|
||||
|
||||
namespace PartGui
|
||||
{
|
||||
/*!find shape from selection strings
|
||||
* @param shapeOut search results.
|
||||
* @param doc document name to search.
|
||||
* @param object object name to search.
|
||||
* @param sub sub-object name to search.
|
||||
* @return signal if the search was successful.
|
||||
*/
|
||||
bool getShapeFromStrings(TopoDS_Shape &shapeOut, const std::string &doc, const std::string &object, const std::string &sub);
|
||||
/*!examine pre selection
|
||||
* @param shape1 firt shape in current selection
|
||||
* @param shape2 second shape in current selection
|
||||
* @return signal if preselection is valid. false means shape1 and shape2 are invalid.
|
||||
*/
|
||||
bool evaluateLinearPreSelection(TopoDS_Shape &shape1, TopoDS_Shape &shape2);
|
||||
/*!start of the measure linear command*/
|
||||
void goDimensionLinearRoot();
|
||||
/*!does the measure and create dimensions without a dialog
|
||||
* @param shape1 first shape.
|
||||
* @param shape2 second shape.
|
||||
* @todo incorporate some form of "adapt to topods_shape". so we can expand to other types outside OCC.
|
||||
*/
|
||||
void goDimensionLinearNoTask(const TopoDS_Shape &shape1, const TopoDS_Shape &shape2);
|
||||
/*!prints results of measuring to console.
|
||||
* @param measure object containing the measure information
|
||||
*/
|
||||
void dumpLinearResults(const BRepExtrema_DistShapeShape &measure);
|
||||
/*!convenience function to get the viewer*/
|
||||
Gui::View3DInventorViewer* getViewer();
|
||||
/*!adds 3d and delta dimensions to the viewer
|
||||
* @param measure object containing the measure information.
|
||||
*/
|
||||
void addLinearDimensions(const BRepExtrema_DistShapeShape &measure);
|
||||
/*!creates one dimension from points with color
|
||||
* @param point1 first point
|
||||
* @param point2 second point
|
||||
* @param color color of dimension
|
||||
* @return an inventor node to add to a scenegraph
|
||||
*/
|
||||
SoNode* createLinearDimension(const gp_Pnt &point1, const gp_Pnt &point2, const SbColor &color);
|
||||
/*!erases all the dimensions in the viewer.*/
|
||||
void eraseAllDimensions();
|
||||
/*!toggles the display status of the 3d dimensions*/
|
||||
void toggle3d();
|
||||
/*!toggles the display status of the delta dimensions*/
|
||||
void toggleDelta();
|
||||
/*!make sure measure command isn't working with everthing invisible. Confusing the user*/
|
||||
void ensureSomeDimensionVisible();
|
||||
/*!make sure angle measure command isn't working with 3d off. Confusing the user*/
|
||||
void ensure3dDimensionVisible();
|
||||
/*convert a vertex to vector*/
|
||||
gp_Vec convert(const TopoDS_Vertex &vertex);
|
||||
|
||||
class DimensionLinear : public SoSeparatorKit
|
||||
{
|
||||
SO_KIT_HEADER(DimensionLinear);
|
||||
|
||||
SO_KIT_CATALOG_ENTRY_HEADER(transformation);
|
||||
SO_KIT_CATALOG_ENTRY_HEADER(annotate);
|
||||
SO_KIT_CATALOG_ENTRY_HEADER(leftArrow);
|
||||
SO_KIT_CATALOG_ENTRY_HEADER(rightArrow);
|
||||
SO_KIT_CATALOG_ENTRY_HEADER(line);
|
||||
SO_KIT_CATALOG_ENTRY_HEADER(textSep);
|
||||
public:
|
||||
DimensionLinear();
|
||||
static void initClass();
|
||||
virtual SbBool affectsState() const;
|
||||
|
||||
SoSFVec3f point1;
|
||||
SoSFVec3f point2;
|
||||
SoSFString text;
|
||||
SoSFColor dColor;
|
||||
protected:
|
||||
SoSFRotation rotate;
|
||||
SoSFFloat length;
|
||||
SoSFVec3f origin;
|
||||
|
||||
private:
|
||||
virtual ~DimensionLinear();
|
||||
void setupDimension();
|
||||
};
|
||||
|
||||
/*kit for anglular dimensions*/
|
||||
class DimensionAngular : public SoSeparatorKit
|
||||
{
|
||||
SO_KIT_HEADER(DimensionAngular);
|
||||
|
||||
SO_KIT_CATALOG_ENTRY_HEADER(transformation);
|
||||
SO_KIT_CATALOG_ENTRY_HEADER(annotate);
|
||||
SO_KIT_CATALOG_ENTRY_HEADER(arrow1);
|
||||
SO_KIT_CATALOG_ENTRY_HEADER(arrow2);
|
||||
SO_KIT_CATALOG_ENTRY_HEADER(arcSep);
|
||||
SO_KIT_CATALOG_ENTRY_HEADER(textSep);
|
||||
public:
|
||||
DimensionAngular();
|
||||
static void initClass();
|
||||
virtual SbBool affectsState() const;
|
||||
|
||||
SoSFFloat radius;//radians.
|
||||
SoSFFloat angle;//radians.
|
||||
SoSFString text;
|
||||
SoSFColor dColor;
|
||||
SoSFMatrix matrix;
|
||||
private:
|
||||
virtual ~DimensionAngular();
|
||||
void setupDimension();
|
||||
};
|
||||
|
||||
/*used for generating points for arc display*/
|
||||
class ArcEngine : public SoEngine
|
||||
{
|
||||
SO_ENGINE_HEADER(ArcEngine);
|
||||
public:
|
||||
ArcEngine();
|
||||
static void initClass();
|
||||
|
||||
SoSFFloat radius;
|
||||
SoSFFloat angle;
|
||||
SoSFFloat deviation;
|
||||
|
||||
SoEngineOutput points;
|
||||
SoEngineOutput pointCount;
|
||||
protected:
|
||||
virtual void evaluate();
|
||||
private:
|
||||
virtual ~ArcEngine(){}
|
||||
void defaultValues(); //some non error values if something goes wrong.
|
||||
};
|
||||
|
||||
/*! a widget with buttons and icons for a controlled selection process*/
|
||||
class SteppedSelection : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
SteppedSelection(const uint &buttonCountIn, QWidget *parent = 0);
|
||||
~SteppedSelection();
|
||||
QPushButton* getButton(const uint &index);
|
||||
void setIconDone(const uint &index);
|
||||
|
||||
protected:
|
||||
typedef std::pair<QPushButton *, QLabel *> ButtonIconPairType;
|
||||
std::vector<ButtonIconPairType> buttons;
|
||||
QPixmap *stepActive;
|
||||
QPixmap *stepDone;
|
||||
|
||||
private slots:
|
||||
void selectionSlot(bool checked);
|
||||
void buildPixmaps();
|
||||
|
||||
};
|
||||
|
||||
/*! just convenience container*/
|
||||
class DimSelections
|
||||
{
|
||||
public:
|
||||
enum ShapeType{None, Vertex, Edge, Face};
|
||||
struct DimSelection
|
||||
{
|
||||
std::string documentName;
|
||||
std::string objectName;
|
||||
std::string subObjectName;
|
||||
float x;
|
||||
float y;
|
||||
float z;
|
||||
ShapeType shapeType;
|
||||
};
|
||||
std::vector<DimSelection> selections;
|
||||
};
|
||||
|
||||
/*!widget for buttons controlling the display of dimensions*/
|
||||
class DimensionControl : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit DimensionControl(QWidget* parent);
|
||||
public slots:
|
||||
void toggle3dSlot(bool);
|
||||
void toggleDeltaSlot(bool);
|
||||
void clearAllSlot(bool);
|
||||
};
|
||||
|
||||
/*!linear dialog*/
|
||||
class TaskMeasureLinear : public Gui::TaskView::TaskDialog, public Gui::SelectionObserver
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
TaskMeasureLinear();
|
||||
~TaskMeasureLinear();
|
||||
|
||||
virtual QDialogButtonBox::StandardButtons getStandardButtons() const
|
||||
{return QDialogButtonBox::Close;}
|
||||
virtual bool isAllowedAlterDocument(void) const {return false;}
|
||||
virtual bool needsFullSpace() const {return false;}
|
||||
protected:
|
||||
virtual void onSelectionChanged(const Gui::SelectionChanges& msg);
|
||||
|
||||
protected slots:
|
||||
void selection1Slot(bool checked);
|
||||
void selection2Slot(bool checked);
|
||||
void resetDialogSlot(bool);
|
||||
void toggle3dSlot(bool);
|
||||
void toggleDeltaSlot(bool);
|
||||
void clearAllSlot(bool);
|
||||
void selectionClearDelayedSlot();
|
||||
|
||||
private:
|
||||
void setUpGui();
|
||||
void buildDimension();
|
||||
void clearSelectionStrings();
|
||||
DimSelections selections1;
|
||||
DimSelections selections2;
|
||||
uint buttonSelectedIndex;
|
||||
SteppedSelection *stepped;
|
||||
|
||||
};
|
||||
|
||||
/*! @brief Convert to vector
|
||||
*
|
||||
* Used to construct a vector from various input types
|
||||
*/
|
||||
class VectorAdapter
|
||||
{
|
||||
public:
|
||||
/*!default construction isValid is set to false*/
|
||||
VectorAdapter();
|
||||
/*!Build a vector from a faceIn
|
||||
* @param faceIn vector will be normal to plane and equal to cylindrical axis.
|
||||
* @param pickedPointIn location of pick. straight conversion from sbvec. not accurate.*/
|
||||
VectorAdapter(const TopoDS_Face &faceIn, const gp_Vec &pickedPointIn);
|
||||
/*!Build a vector from an edgeIn
|
||||
* @param edgeIn vector will be lastPoint - firstPoint.
|
||||
* @param pickedPointIn location of pick. straight conversion from sbvec. not accurate.*/
|
||||
VectorAdapter(const TopoDS_Edge &edgeIn, const gp_Vec &pickedPointIn);
|
||||
/*!Build a vector From 2 vertices.
|
||||
*vector will be equal to @param vertex2In - @param vertex1In.*/
|
||||
VectorAdapter(const TopoDS_Vertex &vertex1In, const TopoDS_Vertex &vertex2In);
|
||||
/*!Build a vector From 2 vectors.
|
||||
*vector will be equal to @param vector2 - @param vector1.*/
|
||||
VectorAdapter(const gp_Vec &vector1, const gp_Vec &vector2);
|
||||
|
||||
/*!make sure no errors in vector construction.
|
||||
* @return true = vector is good. false = vector is NOT good.*/
|
||||
bool isValid() const {return status;}
|
||||
/*!get the calculated vector.
|
||||
* @return the vector. use isValid to ensure correct results.*/
|
||||
operator gp_Vec() const {return vector;}
|
||||
/*!build occ line used for extrema calculation*/
|
||||
operator gp_Lin() const;
|
||||
gp_Vec getPickPoint() const {return origin;}
|
||||
|
||||
private:
|
||||
void projectOriginOntoVector(const gp_Vec &pickedPointIn);
|
||||
bool status;
|
||||
gp_Vec vector;
|
||||
gp_Vec origin;
|
||||
};
|
||||
|
||||
/*!angular dialog class*/
|
||||
class TaskMeasureAngular : public Gui::TaskView::TaskDialog, public Gui::SelectionObserver
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
TaskMeasureAngular();
|
||||
~TaskMeasureAngular();
|
||||
|
||||
virtual QDialogButtonBox::StandardButtons getStandardButtons() const
|
||||
{return QDialogButtonBox::Close;}
|
||||
virtual bool isAllowedAlterDocument(void) const {return false;}
|
||||
virtual bool needsFullSpace() const {return false;}
|
||||
protected:
|
||||
virtual void onSelectionChanged(const Gui::SelectionChanges& msg);
|
||||
|
||||
protected slots:
|
||||
void selection1Slot(bool checked);
|
||||
void selection2Slot(bool checked);
|
||||
void resetDialogSlot(bool);
|
||||
void toggle3dSlot(bool);
|
||||
void toggleDeltaSlot(bool);
|
||||
void clearAllSlot(bool);
|
||||
void selectionClearDelayedSlot();
|
||||
|
||||
private:
|
||||
void setUpGui();
|
||||
void buildDimension();
|
||||
void clearSelection();
|
||||
DimSelections selections1;
|
||||
DimSelections selections2;
|
||||
uint buttonSelectedIndex;
|
||||
SteppedSelection *stepped;
|
||||
VectorAdapter buildAdapter(const DimSelections &selection) const;
|
||||
};
|
||||
|
||||
/*!start of the measure angular command*/
|
||||
void goDimensionAngularRoot();
|
||||
/*!examine angular pre selection
|
||||
* @param vector1Out firt shape in current selection
|
||||
* @param vector2Out second shape in current selection
|
||||
* @return signal if preselection is valid. false means vector1Out and vector2Out are invalid.
|
||||
*/
|
||||
bool evaluateAngularPreSelection(VectorAdapter &vector1Out, VectorAdapter &vector2Out);
|
||||
/*!build angular dimension*/
|
||||
void goDimensionAngularNoTask(const VectorAdapter &vector1Adapter, const VectorAdapter &vector2Adapter);
|
||||
}
|
||||
|
||||
#endif // TASKDIMENSION_H
|
|
@ -66,6 +66,11 @@ Gui::MenuItem* Workbench::setupMenuBar() const
|
|||
Gui::MenuItem* bop = new Gui::MenuItem;
|
||||
bop->setCommand("Boolean");
|
||||
*bop << "Part_Boolean" << "Part_Cut" << "Part_Fuse" << "Part_Common";
|
||||
|
||||
Gui::MenuItem* measure = new Gui::MenuItem;
|
||||
measure->setCommand("Measure");
|
||||
*measure << "Part_Measure_Linear" << "Part_Measure_Angular" << "Part_Measure_Clear_All" << "Part_Measure_Toggle_All" <<
|
||||
"Part_Measure_Toggle_3d" << "Part_Measure_Toggle_Delta";
|
||||
|
||||
Gui::MenuItem* part = new Gui::MenuItem;
|
||||
root->insertItem(item, part);
|
||||
|
@ -74,7 +79,7 @@ Gui::MenuItem* Workbench::setupMenuBar() const
|
|||
*part << prim << "Part_Primitives" << "Part_Builder" << "Separator"
|
||||
<< "Part_ShapeFromMesh" << "Part_MakeSolid" << "Part_ReverseShape"
|
||||
<< "Part_SimpleCopy" << "Part_RefineShape" << "Part_CheckGeometry"
|
||||
<< "Separator" << bop << "Separator"
|
||||
<< measure << "Separator" << bop << "Separator"
|
||||
<< "Part_CrossSections" << "Part_Compound" << "Part_Extrude"
|
||||
<< "Part_Revolve" << "Part_Mirror" << "Part_Fillet" << "Part_Chamfer"
|
||||
<< "Part_RuledSurface" << "Part_Loft" << "Part_Sweep"
|
||||
|
@ -114,6 +119,11 @@ Gui::ToolBarItem* Workbench::setupToolBars() const
|
|||
boolop->setCommand("Boolean");
|
||||
*boolop << "Part_Boolean" << "Part_Cut" << "Part_Fuse" << "Part_Common"
|
||||
<< "Part_CheckGeometry" << "Part_Section" << "Part_CrossSections";
|
||||
|
||||
Gui::ToolBarItem* measure = new Gui::ToolBarItem(root);
|
||||
measure->setCommand("Measure");
|
||||
*measure << "Part_Measure_Linear" << "Part_Measure_Angular" << "Part_Measure_Clear_All" << "Part_Measure_Toggle_All"
|
||||
<< "Part_Measure_Toggle_3d" << "Part_Measure_Toggle_Delta";
|
||||
|
||||
return root;
|
||||
}
|
||||
|
@ -124,4 +134,3 @@ Gui::ToolBarItem* Workbench::setupCommandBars() const
|
|||
Gui::ToolBarItem* root = new Gui::ToolBarItem;
|
||||
return root;
|
||||
}
|
||||
|
||||
|
|