Sketcher: adjust cursor icons to match toolbar icons (#11749)

* adjust cursor icons to match toolbar icons

* adjusting fillet cursor icon

* correct fillet icon

* updated other icons to be in line with toolbar icon

* oblong fixes

* Discord feedback adjusted

* added arc slot cursor icon

* Update of arc cursor icons. Added ellipse variants

* update line. added polygon variations. added bspline options.

* updated other icons to be in line

* changed line icons

* discord feedback implemented

* Updated to implement new icons

* sketcher: change carbon copy and external cursor icons to match toolbar icons

* added copy icon for XPM hardcoded

* added new copy pointer icon to resources

* Update to support multiple cursor icons per tool mode for spline, ellipse, fillet, rectangle.

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* adjusted icon and if statements

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* delete unnecessary icons

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
Max Wilfinger
2023-12-22 06:06:09 +01:00
committed by GitHub
parent 258b9bcdbe
commit d783f2fce4
52 changed files with 3307 additions and 609 deletions

View File

@@ -395,7 +395,12 @@ private:
QString getCrosshairCursorSVGName() const override
{
return QString::fromLatin1("Sketcher_Pointer_Create_BSpline");
if (SketcherGui::DrawSketchHandlerBSpline::ConstrMethod == 1) {
return QString::fromLatin1("Sketcher_Pointer_Create_Periodic_BSpline");
}
else {
return QString::fromLatin1("Sketcher_Pointer_Create_BSpline");
}
}
void addSugConstraint()

View File

@@ -392,7 +392,12 @@ private:
QString getCrosshairCursorSVGName() const override
{
return QString::fromLatin1("Sketcher_Pointer_Create_BSpline");
if (SketcherGui::DrawSketchHandlerBSplineByInterpolation::ConstrMethod == 1) {
return QString::fromLatin1("Sketcher_Pointer_Create_Periodic_BSplineByInterpolation");
}
else {
return QString::fromLatin1("Sketcher_Pointer_Create_BSplineByInterpolation");
}
}
void addSugConstraint()

View File

@@ -261,7 +261,12 @@ private:
QString getCrosshairCursorSVGName() const override
{
return QString::fromLatin1("Sketcher_Pointer_Create_Ellipse");
if (constructionMethod() == DrawSketchHandlerEllipse::ConstructionMethod::Center) {
return QString::fromLatin1("Sketcher_Pointer_Create_EllipseByCenter");
}
else {
return QString::fromLatin1("Sketcher_Pointer_Create_Ellipse_3points");
}
}
std::unique_ptr<QWidget> createWidget() const override

View File

@@ -333,7 +333,12 @@ private:
{
Gui::Selection().rmvSelectionGate();
Gui::Selection().addSelectionGate(new FilletSelection(sketchgui->getObject()));
return QString::fromLatin1("Sketcher_Pointer_Create_Fillet");
if (filletType == SimpleFillet) {
return QString::fromLatin1("Sketcher_Pointer_Create_Fillet");
}
else {
return QString::fromLatin1("Sketcher_Pointer_Create_PointFillet");
}
}
protected:

View File

@@ -535,6 +535,12 @@ private:
if (constructionMethod() == ConstructionMethod::CenterAndCorner) {
return QString::fromLatin1("Sketcher_Pointer_Create_Box_Center");
}
else if (constructionMethod() == ConstructionMethod::ThreePoints) {
return QString::fromLatin1("Sketcher_Pointer_Create_Box_3Points");
}
else if (constructionMethod() == ConstructionMethod::CenterAnd3Points) {
return QString::fromLatin1("Sketcher_Pointer_Create_Box_3Points_Center");
}
else {
return QString::fromLatin1("Sketcher_Pointer_Create_Box");
}

View File

@@ -224,18 +224,27 @@
<file>icons/pointers/Sketcher_Pointer_Create_ArcSlot.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Box.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Box_Center.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Box_3Points.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Box_3Points_Center.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_BSpline.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_BSplineByInterpolation.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Circle.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Ellipse.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_EllipseByCenter.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Ellipse_3points.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Fillet.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Line.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Line_Polar.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Lineset.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Periodic_BSpline.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Periodic_BSplineByInterpolation.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Point.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_PointFillet.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Offset.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Rotate.svg</file>
<file>icons/pointers/Sketcher_Pointer_Extension.svg</file>
<file>icons/pointers/Sketcher_Pointer_External.svg</file>
<file>icons/pointers/Sketcher_Pointer_Heptagon.svg</file>
<file>icons/pointers/Sketcher_Pointer_Hexagon.svg</file>
<file>icons/pointers/Sketcher_Pointer_InsertKnot.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Frame.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_Frame_Center.svg</file>
@@ -243,10 +252,14 @@
<file>icons/pointers/Sketcher_Pointer_Oblong_Center.svg</file>
<file>icons/pointers/Sketcher_Pointer_Oblong_Frame.svg</file>
<file>icons/pointers/Sketcher_Pointer_Oblong_Frame_Center.svg</file>
<file>icons/pointers/Sketcher_Pointer_Octagon.svg</file>
<file>icons/pointers/Sketcher_Pointer_Pentagon.svg</file>
<file>icons/pointers/Sketcher_Pointer_Regular_Polygon.svg</file>
<file>icons/pointers/Sketcher_Pointer_Create_RectangleSlot.svg</file>
<file>icons/pointers/Sketcher_Pointer_Slot.svg</file>
<file>icons/pointers/Sketcher_Pointer_Splitting.svg</file>
<file>icons/pointers/Sketcher_Pointer_Text.svg</file>
<file>icons/pointers/Sketcher_Pointer_Triangle.svg</file>
<file>icons/pointers/Sketcher_Pointer_Trimming.svg</file>
</qresource>
<qresource>

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@@ -1,13 +1,70 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg14" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs18" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<path d="m41,7c14,24-10,48-34,34" id="path2" />
<circle cx="41" cy="7" r="5" id="circle4" />
<circle cx="7" cy="41" r="5" id="circle6" />
<circle cx="38" cy="38" r="5" id="circle8" />
<svg
version="1.1"
height="64"
width="64"
id="svg14"
sodipodi:docname="Sketcher_Pointer_Create_3PointArc.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="31.520343"
inkscape:cy="46.458244"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs18" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2">
<g
id="symbol-9"
style="fill:none;stroke:#cc0000;stroke-width:2">
<path
id="circle2"
d="m 27.999996,27.999995 c 16.01626,0 29.000005,12.983745 29.000005,29.000005"
sodipodi:nodetypes="cc"
style="stroke-width:1.99999" />
<circle
cx="27.999996"
cy="27.999994"
r="4"
id="circle4-7" />
<circle
cx="57"
cy="57"
r="4"
id="circle4-8"
style="fill:none;stroke:#cc0000;stroke-width:2" />
<circle
cx="48.506096"
cy="36.4939"
r="4"
id="circle4-8-8"
style="fill:none;stroke:#cc0000;stroke-width:2" />
</g>
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path11" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path11" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 655 B

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -1,13 +1,118 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg14" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs18" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<path d="m41,7c14,24-10,48-34,34" id="path2" />
<circle cx="41" cy="7" r="5" id="circle4" />
<circle cx="7" cy="41" r="5" id="circle6" />
<circle cx="38" cy="38" r="5" id="circle8" />
<svg
version="1.1"
height="64"
width="64"
id="svg14"
sodipodi:docname="Sketcher_Pointer_Create_3PointCircle.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="32.068522"
inkscape:cy="32.068522"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg14" />
<defs
id="defs18">
<linearGradient
xlink:href="#linearGradient3892"
id="linearGradient3898"
x1="37.429146"
y1="41.590584"
x2="24.483221"
y2="4.9104676"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient3892">
<stop
style="stop-color:#ffffff;stop-opacity:1"
offset="0"
id="stop3894" />
<stop
style="stop-color:#ffffff;stop-opacity:0"
offset="1"
id="stop3896" />
</linearGradient>
<linearGradient
xlink:href="#linearGradient3892"
id="linearGradient3856"
x1="22.84341"
y1="4.8241611"
x2="30.783579"
y2="28.644661"
gradientUnits="userSpaceOnUse" />
<linearGradient
y2="5"
x2="-22"
y1="18"
x1="-18"
gradientTransform="matrix(0.89262616,0,0,0.89258466,72.894067,1.2176306)"
gradientUnits="userSpaceOnUse"
id="linearGradient4013"
xlink:href="#linearGradient3836-9-3-6" />
<linearGradient
id="linearGradient3836-9-3-6">
<stop
style="stop-color:#a40000;stop-opacity:1"
offset="0"
id="stop3838-8-5-7" />
<stop
style="stop-color:#ef2929;stop-opacity:1"
offset="1"
id="stop3840-1-6-5" />
</linearGradient>
</defs>
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2"
transform="translate(0,4)">
<circle
cx="40"
cy="40"
r="18"
id="circle2"
style="fill:none;stroke:#cc0000;stroke-width:2" />
<circle
cx="40"
cy="22"
id="circle4"
style="stroke-width:2"
r="4" />
<circle
cx="58"
cy="40"
id="circle6"
style="stroke-width:2"
r="4" />
<circle
cx="52.727921"
cy="27.272078"
id="circle8"
style="stroke-width:2"
r="4" />
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path11" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path11" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 655 B

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -1,12 +1,70 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg12" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs16" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<path d="m41,7c14,24-10,48-34,34" id="path2" />
<circle cx="41" cy="7" r="5" id="circle4" />
<circle cx="7" cy="41" r="5" id="circle6" />
<svg
version="1.1"
height="64"
width="64"
id="svg14"
sodipodi:docname="Sketcher_Pointer_Create_Arc.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="31.520343"
inkscape:cy="46.458244"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs18" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2">
<g
id="symbol-9"
style="fill:none;stroke:#cc0000;stroke-width:2">
<path
id="circle2"
d="m 27.999996,27.999995 c 16.01626,0 29.000005,12.983745 29.000005,29.000005"
sodipodi:nodetypes="cc"
style="stroke-width:1.99999" />
<circle
cx="27.999996"
cy="27.999994"
r="4"
id="circle4-7" />
<circle
cx="57"
cy="57"
r="4"
id="circle4-8"
style="fill:none;stroke:#cc0000;stroke-width:2" />
<circle
cx="27.999996"
cy="57"
r="4"
id="circle4-8-8"
style="fill:none;stroke:#cc0000;stroke-width:2" />
</g>
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path9" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path11" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 604 B

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -1,11 +1,73 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg10" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs14" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<path d="m55,10c-50,40-45,60-5,45" id="path2" />
<circle cx="49" cy="36" r="3" id="circle4" />
<svg
version="1.1"
height="64"
width="64"
id="svg10"
sodipodi:docname="Sketcher_Pointer_Create_ArcOfEllipse.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="6.6733202"
inkscape:cx="2.5474575"
inkscape:cy="46.603488"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs14" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2">
<path
d="M 41.272834,25.607073 C 4.7480784,50.897163 10.628042,66.094259 44.624247,55.810832"
id="path2"
sodipodi:nodetypes="cc"
style="stroke-width:2" />
<circle
cx="50.368847"
cy="37.983585"
id="circle4"
style="stroke-width:2"
r="4" />
<circle
cx="16.93918"
cy="55.306599"
id="circle4-8"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
<circle
cx="44.624249"
cy="55.421989"
id="circle4-8-7"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
<circle
cx="41.272835"
cy="25.607073"
id="circle4-8-5"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path7" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path7" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 557 B

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -1,11 +1,54 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg10" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs14" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<path d="m55,10c-50,40-45,60-5,45" id="path2" />
<circle cx="10" cy="36" r="3" id="circle4" />
<svg
version="1.1"
height="64"
width="64"
id="svg10"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs14" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2"
transform="rotate(-20 41 45)">
<ellipse
cx="35.280918"
cy="23.28476"
id="circle4-5"
style="fill:none;stroke:#cc0000;stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
<ellipse
cx="54.074772"
cy="30.125162"
id="circle4-5-8"
style="fill:none;stroke:#cc0000;stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
<ellipse
cx="38.457359"
cy="43.795589"
id="circle4-5-8-4"
style="fill:none;stroke:#cc0000;stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
<ellipse
cx="33.937374"
cy="56.214138"
id="circle4-5-8-4-1"
style="fill:none;stroke:#cc0000;stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
<path
id="path2"
d="M 54.074783,30.125162 C 50.639305,39.564061 43.647152,45.684524 38.457374,43.795599 33.267595,41.906674 31.845453,32.723658 35.280931,23.284759" />
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path7" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path7" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 557 B

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1,11 +1,58 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg10" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs14" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<path d="m55,10c-50,40-45,60-5,45" id="path2" />
<circle cx="49" cy="36" r="3" id="circle4" />
<svg
version="1.1"
height="64"
width="64"
id="svg10"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs14" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2"
transform="rotate(-20 41 45)">
<g
id="g2"
transform="translate(2.6483269,-3.7711964)">
<ellipse
cx="30.753206"
cy="26.371912"
id="circle4-5"
style="fill:none;stroke:#cc0000;stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
<ellipse
cx="53.305832"
cy="34.580399"
id="circle4-5-8"
style="fill:none;stroke:#cc0000;stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
<ellipse
cx="32.388832"
cy="56.963718"
id="circle4-5-8-4"
style="fill:none;stroke:#cc0000;stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
<path
id="path2"
d="m 53.305828,34.580395 c 0,0 -11.150783,25.937934 -20.916995,22.383323 -9.766212,-3.554611 -1.635627,-30.591806 -1.635627,-30.591806" />
<ellipse
cx="37.861153"
cy="41.928623"
id="ellipse2"
style="fill:none;stroke:#cc0000;stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
</g>
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path7" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path7" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 557 B

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -1,73 +1,67 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
height="64"
width="64"
height="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Create_ArcSlot.svg"
inkscape:version="1.1-beta1 (77e7b44db3, 2021-03-28)"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview10"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
objecttolerance="10.0"
gridtolerance="10.0"
guidetolerance="10.0"
inkscape:pageshadow="0"
inkscape:pageopacity="0"
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="8.3195532"
inkscape:cx="46.697219"
inkscape:cy="36.179827"
inkscape:window-width="3840"
inkscape:window-height="1570"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="5.1596698"
inkscape:cx="23.644924"
inkscape:cy="40.312657"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
inkscape:current-layer="g6" />
<defs
id="defs16" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
<path
d="M 61.28154,17.379814 C 63.722444,36.365205 45.864357,60.711219 18.357238,60.559097"
id="path2"
style="fill:none;stroke:#cc0000;stroke-width:2"
sodipodi:nodetypes="cc" />
<path
d="M 41.173823,16.75257 C 42.514851,27.183102 32.703657,40.558748 17.591306,40.475173"
id="path2-5"
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:nodetypes="cc" />
<path
d="M 41.290295,17.504818 C 40.75553,13.345415 45.41165,7.6928587 51.43803,7.7261864"
id="path2-5-7"
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:nodetypes="cc" />
<path
d="m 51.22668,7.763288 c 4.159403,-0.534765 10.088188,3.590146 10.05486,9.616526"
id="path2-5-7-7"
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:nodetypes="cc" />
<path
d="M 18.357238,60.559097 C 14.197835,61.093862 7.9043506,56.345063 7.9376786,50.318683"
id="path2-5-7-5"
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:nodetypes="cc" />
<path
d="M 7.9747796,50.530033 C 7.4400146,46.37063 11.564926,40.441845 17.591306,40.475173"
id="path2-5-7-7-2"
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:nodetypes="cc" />
id="g6"
transform="translate(0,2)">
<circle
cx="28.25"
cy="51.561607"
id="circle4"
style="stroke-width:2"
r="4" />
<circle
cx="51.698326"
cy="28"
id="circle4-1"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
<circle
cx="51.698326"
cy="51.561607"
id="circle4-1-5"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
<path
id="path1-8"
style="fill:none;stroke-width:2"
d="M 51.698325,19.863281 C 34.191842,19.863281 20,34.055115 20,51.561606 a 8.3019455,8.3019455 0 0 0 8.301674,8.301675 8.3019455,8.3019455 0 0 0 8.301674,-8.301675 c 0,-8.336423 6.758558,-15.094976 15.094977,-15.094976 A 8.3019455,8.3019455 0 0 0 60,28.164955 8.3019455,8.3019455 0 0 0 51.698325,19.863281 Z" />
</g>
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="g10">
<path
d="m 16,3 v 9 m 0,8 v 9 M 3,16 h 9 m 8,0 h 9"
id="path8" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -1,14 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg16" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs20" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<path d="m16,45 l8,8l16-30l10,20" id="path2" />
<path d="m10,35c5,10 10,10 20,10c10,0 10-20 20-20c10,0 10,10 20,10" stroke="#dddddd" id="path4" />
<circle cx="24" cy="53" r="3" id="circle6" />
<circle cx="40" cy="23" r="3" id="circle8" />
<circle cx="50" cy="43" r="3" id="circle10" />
<svg
version="1.1"
height="64"
width="64"
id="svg16"
sodipodi:docname="Sketcher_Pointer_Create_BSpline.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="6.607029"
inkscape:cx="34.58438"
inkscape:cy="39.049322"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs20">
<linearGradient
xlink:href="#linearGradient3836-9-3"
id="linearGradient3262"
gradientUnits="userSpaceOnUse"
x1="-18"
y1="18"
x2="-22"
y2="5" />
<linearGradient
id="linearGradient3836-9-3">
<stop
style="stop-color:#a40000;stop-opacity:1"
offset="0"
id="stop3838-8-5" />
<stop
style="stop-color:#ef2929;stop-opacity:1"
offset="1"
id="stop3840-1-6" />
</linearGradient>
</defs>
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2"
transform="translate(1.1788527,3.8661511)">
<path
style="fill:none;stroke:#cc0000;stroke-width:19.143;display:inline;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1856.4296,467.6716 c -13.6954,253.36462 -253.3646,0 -273.9077,273.90769"
id="path3266-9-2"
transform="matrix(0.10447668,0,0,0.10447681,-142.05205,-24.47784)" />
<circle
cx="23.284584"
cy="53"
id="circle6"
style="stroke-width:2"
r="4" />
<circle
cx="26.871147"
cy="27.250849"
id="circle8"
style="stroke-width:2"
r="4" />
<circle
cx="49.765148"
cy="50.148849"
id="circle8-8"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
<circle
cx="51.90155"
cy="24.382998"
id="circle10"
style="stroke-width:2"
r="4" />
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path13" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path13" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 761 B

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,94 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
height="64"
width="64"
id="svg16"
sodipodi:docname="Sketcher_Pointer_Create_BSplineByInterpolation.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="6.607029"
inkscape:cx="34.660057"
inkscape:cy="39.049322"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs20">
<linearGradient
xlink:href="#linearGradient3836-9-3"
id="linearGradient3262"
gradientUnits="userSpaceOnUse"
x1="-18"
y1="18"
x2="-22"
y2="5" />
<linearGradient
id="linearGradient3836-9-3">
<stop
style="stop-color:#a40000;stop-opacity:1"
offset="0"
id="stop3838-8-5" />
<stop
style="stop-color:#ef2929;stop-opacity:1"
offset="1"
id="stop3840-1-6" />
</linearGradient>
</defs>
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2"
transform="translate(1.1788527,3.8661511)">
<circle
cx="23.297354"
cy="52.548164"
id="circle6"
style="stroke-width:2"
r="4" />
<circle
cx="27.699886"
cy="26.176493"
id="circle8"
style="stroke-width:2"
r="4" />
<circle
cx="47.962303"
cy="50.087288"
id="circle8-8"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
<circle
cx="52.706112"
cy="22.099838"
id="circle10"
style="stroke-width:2"
r="4" />
<path
style="display:inline;fill:none;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 23.297353,52.548163 c 0,0 -8.94258,-11.156591 -3.950431,-19.804497 5.734494,-9.933869 15.252825,-7.090961 18.332494,-2.704579 4.942472,7.03958 -3.04763,12.631195 4.037149,18.543304 4.973569,4.150346 11.983381,-0.119742 13.972494,-4.832016 5.071743,-12.01511 -2.982946,-21.650536 -2.982946,-21.650536"
id="path7375-2" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path13" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -1,12 +1,64 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg12" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs16" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<rect x="20" y="32" width="38" height="25" id="rect2" />
<circle cx="20" cy="57" r="5" id="circle4" />
<circle cx="58" cy="32" r="5" id="circle6" />
<svg
version="1.1"
height="64"
width="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Create_Box.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="32.068522"
inkscape:cy="32.068522"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<defs
id="defs16" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
transform="matrix(1.0366786,0,0,1.0366786,-0.1467704,-6.1737144)">
<rect
style="fill:none;stroke:#cc0000;stroke-width:1.92924;stroke-opacity:1"
id="rect3"
width="27.009335"
height="27.009335"
x="26.186295"
y="32" />
<circle
cx="53.195629"
cy="32"
id="circle6"
style="stroke-width:1.92924"
r="3.8584757" />
<circle
cx="26.186295"
cy="59.009335"
id="circle6-1"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
r="3.8584757" />
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path9" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 615 B

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
height="64"
width="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Create_Box_3Points.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="32.068522"
inkscape:cy="32.068522"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs16" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
transform="matrix(1.0366786,0,0,1.0366786,-0.1467704,-6.1737144)">
<rect
style="fill:none;stroke:#cc0000;stroke-width:1.92924;stroke-opacity:1"
id="rect3"
width="27.009335"
height="27.009335"
x="12.990646"
y="41.221565"
transform="rotate(-15)" />
<circle
cx="39.999981"
cy="41.221565"
id="circle6"
style="stroke-width:1.92924"
r="3.8584757"
transform="rotate(-15)" />
<circle
cx="39.999981"
cy="68.230904"
id="circle6-4"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
r="3.8584757"
transform="rotate(-15)" />
<circle
cx="12.990646"
cy="68.230896"
id="circle6-1"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
r="3.8584757"
transform="rotate(-15)" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
height="64"
width="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Create_Box_3Points_Center.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="32.068522"
inkscape:cy="32.068522"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<defs
id="defs16" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
transform="matrix(1.0366786,0,0,1.0366786,-0.1467704,-6.1737144)">
<rect
style="fill:none;stroke:#cc0000;stroke-width:1.92924;stroke-opacity:1"
id="rect3"
width="27.009335"
height="27.009335"
x="12.990646"
y="41.221565"
transform="rotate(-15)" />
<circle
cx="39.999981"
cy="41.221565"
id="circle6"
style="stroke-width:1.92924"
r="3.8584757"
transform="rotate(-15)" />
<circle
cx="39.999981"
cy="68.230904"
id="circle6-4"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
r="3.8584757"
transform="rotate(-15)" />
<circle
cx="26.495312"
cy="54.726231"
id="circle6-1"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
r="3.8584757"
transform="rotate(-15)" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -1,52 +1,64 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg12"
width="64"
version="1.1"
height="64"
version="1.1">
<metadata
id="metadata12">
<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>
width="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Create_Box_Center.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="32.068522"
inkscape:cy="32.068522"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs16" />
<rect
x="20"
y="32"
width="38"
height="25"
id="rect2"
style="fill:none;stroke:#cc0000;stroke-width:2" />
<circle
cx="39.367535"
cy="44.439865"
r="5"
id="circle4"
style="fill:none;stroke:#cc0000;stroke-width:2" />
<circle
cx="58"
cy="32"
r="5"
id="circle6"
style="fill:none;stroke:#cc0000;stroke-width:2" />
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="crosshair">
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
transform="matrix(1.0366786,0,0,1.0366786,-0.1467704,-6.1737144)">
<rect
style="fill:none;stroke:#cc0000;stroke-width:1.92924;stroke-opacity:1"
id="rect3"
width="27.009335"
height="27.009335"
x="26.186295"
y="32" />
<circle
cx="53.195629"
cy="32"
id="circle6"
style="stroke-width:1.92924"
r="3.8584757" />
<circle
cx="39.69096"
cy="45.504665"
id="circle6-1"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
r="3.8584757" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
id="path9"
d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -1,11 +1,61 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg10" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs14" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<circle cx="40" cy="40" r="18" id="circle2" />
<circle cx="40" cy="40" r="4" id="circle4" />
<svg
version="1.1"
height="64"
width="64"
id="svg10"
sodipodi:docname="Sketcher_Pointer_Create_Circle.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="31.931478"
inkscape:cy="32.068522"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg10" />
<defs
id="defs14" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2"
transform="translate(0,4)">
<circle
cx="40"
cy="40"
r="18"
id="circle2" />
<circle
cx="40"
cy="40"
r="4"
id="circle4" />
<circle
cx="58"
cy="40"
r="4"
id="circle4-8"
style="fill:none;stroke:#cc0000;stroke-width:2" />
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path7" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path7" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 555 B

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg10" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs14" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2" transform="rotate(-20 41 45)">
<ellipse cx="41" cy="45" rx="20" ry="10" id="ellipse2" />
<circle cx="41" cy="45" r="4" id="circle4" />
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path7" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 596 B

View File

@@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
height="64"
width="64"
id="svg10"
sodipodi:docname="Sketcher_Pointer_Create_EllipseByCenter.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="9.4375"
inkscape:cx="32"
inkscape:cy="32"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs14" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2"
transform="rotate(-20 41 45)">
<ellipse
cx="39.120613"
cy="44.31596"
rx="20"
ry="10"
id="ellipse2" />
<ellipse
cx="39.120613"
cy="44.315964"
id="circle4"
style="stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
<ellipse
cx="39.120613"
cy="34.31596"
id="circle4-5"
style="fill:none;stroke:#cc0000;stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
<ellipse
cx="59.120613"
cy="44.31596"
id="circle4-5-8"
style="fill:none;stroke:#cc0000;stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path7" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
height="64"
width="64"
id="svg10"
sodipodi:docname="Sketcher_Pointer_Create_Ellipse_3points.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="9.4375"
inkscape:cx="32"
inkscape:cy="32"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs14" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2"
transform="rotate(-20 41 45)">
<ellipse
cx="39.120613"
cy="44.31596"
rx="20"
ry="10"
id="ellipse2" />
<ellipse
cx="19.120613"
cy="44.31596"
id="circle4"
style="stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
<ellipse
cx="39.120613"
cy="34.31596"
id="circle4-5"
style="fill:none;stroke:#cc0000;stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
<ellipse
cx="59.120613"
cy="44.31596"
id="circle4-5-8"
style="fill:none;stroke:#cc0000;stroke-width:2"
rx="4.0014977"
ry="4.0015597" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path7" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -1,11 +1,154 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg10" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs14" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<path d="m22,29v15l11,11h15" id="path2" />
<circle cx="39" cy="36" r="4" id="circle4" />
<svg
version="1.1"
height="64"
width="64"
id="svg10"
sodipodi:docname="Sketcher_Pointer_Create_Fillet.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="2"
inkscape:cx="6.5"
inkscape:cy="1.5"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg10" />
<defs
id="defs14">
<inkscape:path-effect
effect="dashed_stroke"
id="path-effect4"
is_visible="true"
lpeversion="1"
numberdashes="3"
holefactor="-0.16"
splitsegments="true"
halfextreme="false"
unifysegment="false"
message="Add &lt;b&gt;&quot;Fill Between Many LPE&quot;&lt;/b&gt; to add fill." />
<inkscape:path-effect
effect="dashed_stroke"
id="path-effect3"
is_visible="true"
lpeversion="1"
numberdashes="3"
holefactor="0.18"
splitsegments="true"
halfextreme="false"
unifysegment="false"
message="Add &lt;b&gt;&quot;Fill Between Many LPE&quot;&lt;/b&gt; to add fill." />
<inkscape:path-effect
effect="dashed_stroke"
id="path-effect2"
is_visible="true"
lpeversion="1"
numberdashes="3"
holefactor="0"
splitsegments="true"
halfextreme="false"
unifysegment="true"
message="Add &lt;b&gt;&quot;Fill Between Many LPE&quot;&lt;/b&gt; to add fill." />
<inkscape:path-effect
effect="dashed_stroke"
id="path-effect1"
is_visible="true"
lpeversion="1"
numberdashes="4"
holefactor="0.11"
splitsegments="true"
halfextreme="false"
unifysegment="true"
message="Add &lt;b&gt;&quot;Fill Between Many LPE&quot;&lt;/b&gt; to add fill." />
<linearGradient
xlink:href="#linearGradient3836-9"
id="linearGradient3801-7"
gradientUnits="userSpaceOnUse"
x1="-18"
y1="18"
x2="-22"
y2="5"
gradientTransform="translate(-90,-5.9999999)" />
<linearGradient
id="linearGradient3836-9">
<stop
style="stop-color:#a40000;stop-opacity:1"
offset="0"
id="stop3838-8" />
<stop
style="stop-color:#ef2929;stop-opacity:1"
offset="1"
id="stop3840-1" />
</linearGradient>
<linearGradient
y2="5"
x2="-22"
y1="18"
x1="-18"
gradientUnits="userSpaceOnUse"
id="linearGradient3082-3"
xlink:href="#linearGradient3836-9" />
</defs>
<g
id="symbol"
style="display:inline;fill:none;stroke:#cc0000;stroke-width:2"
transform="translate(4,-2)">
<circle
cx="26.439085"
cy="38.106495"
r="4"
id="circle4" />
<circle
cx="42.978943"
cy="54.646351"
r="4"
id="circle4-9"
style="display:inline;fill:none;stroke:#cc0000;stroke-width:2" />
<path
id="rect4"
d="M 53.021065,54.646352 H 42.978943 c -9.163081,0 -16.539858,-7.376777 -16.539858,-16.539858 V 28.064372"
sodipodi:nodetypes="cssc" />
<path
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-dasharray:none;stroke-dashoffset:0"
d="m 26.439086,53.646352 v 5"
id="path4"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-dasharray:none;stroke-dashoffset:0"
d="m 26.439086,47.646352 v 3"
id="path4-9"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-dasharray:none;stroke-dashoffset:0"
d="m 27.439086,54.646352 -5.000001,-10e-7"
id="path5"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-dasharray:none;stroke-dashoffset:0"
d="m 33.439086,54.646352 -3.000001,-10e-7"
id="path5-5"
sodipodi:nodetypes="cc" />
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path7" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path7" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 551 B

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@@ -1,63 +1,71 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg12"
width="64"
version="1.1"
height="64"
version="1.1">
<metadata
id="metadata12">
<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>
width="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Create_Frame.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="32.137045"
inkscape:cy="32.205567"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<defs
id="defs16" />
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="crosshair">
<path
id="path9"
d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
transform="matrix(1.0366786,0,0,1.0366786,-0.1467704,-6.1737144)">
<rect
style="fill:none;stroke:#cc0000;stroke-width:1.92924;stroke-opacity:1"
id="rect3"
width="27.009335"
height="27.009335"
x="26.186295"
y="32" />
<rect
style="fill:none;stroke:#cc0000;stroke-width:1.92924;stroke-opacity:1"
id="rect3-5"
width="17.363144"
height="17.363144"
x="31.341948"
y="37.155651" />
<circle
cx="53.195629"
cy="32"
id="circle6"
style="stroke-width:1.92924"
r="3.8584757" />
<circle
cx="26.186295"
cy="59.009335"
id="circle6-1"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
r="3.8584757" />
</g>
<g
id="g844">
<rect
style="fill:none;stroke:#cc0000;stroke-width:2"
id="rect2"
height="25"
width="38"
y="32"
x="20" />
<circle
style="fill:none;stroke:#cc0000;stroke-width:2"
id="circle4"
r="5"
cy="57"
cx="20" />
<circle
style="fill:none;stroke:#cc0000;stroke-width:2"
id="circle6"
r="5"
cy="32"
cx="58" />
<rect
style="fill:none;stroke:#cc0000;stroke-width:2"
id="rect2-3"
height="17.042053"
width="29.275019"
y="35.871738"
x="24.529015"
ry="0" />
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -1,28 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
height="64"
width="64"
id="svg12">
<metadata
id="metadata12">
<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>
id="svg12"
sodipodi:docname="Sketcher_Pointer_Create_Frame_Center.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="32.137045"
inkscape:cy="32.205567"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs16" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
transform="matrix(1.0366786,0,0,1.0366786,-0.1467704,-6.1737144)">
<rect
style="fill:none;stroke:#cc0000;stroke-width:1.92924;stroke-opacity:1"
id="rect3"
width="27.009335"
height="27.009335"
x="26.186295"
y="32" />
<rect
style="fill:none;stroke:#cc0000;stroke-width:1.92924;stroke-opacity:1"
id="rect3-5"
width="17.363144"
height="17.363144"
x="31.341948"
y="37.155651" />
<circle
cx="53.195629"
cy="32"
id="circle6"
style="stroke-width:1.92924"
r="3.8584757" />
<circle
cx="39.69096"
cy="45.504665"
id="circle6-1"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
r="3.8584757" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
@@ -30,31 +68,4 @@
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
<rect
style="fill:none;stroke:#cc0000;stroke-width:2"
id="rect2"
height="25"
width="38"
y="32"
x="20" />
<circle
style="fill:none;stroke:#cc0000;stroke-width:2"
id="circle4"
r="5"
cy="44.389832"
cx="38.779659" />
<circle
style="fill:none;stroke:#cc0000;stroke-width:2"
id="circle6"
r="5"
cy="32"
cx="58" />
<rect
style="fill:none;stroke:#cc0000;stroke-width:2"
id="rect2-3"
height="17.042053"
width="29.275019"
y="35.871738"
x="24.529015"
ry="0" />
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -1,12 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg12" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs16" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<line x1="20" y1="57" x2="50" y2="28" id="line2" />
<circle cx="20" cy="57" r="5" id="circle4" />
<circle cx="50" cy="28" r="5" id="circle6" />
<svg
version="1.1"
height="64"
width="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Create_Line.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="9.4375"
inkscape:cx="32"
inkscape:cy="32"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs16" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2">
<line
x1="24"
y1="57"
x2="54"
y2="28"
id="line2" />
<circle
cx="24"
cy="57"
id="circle4"
style="stroke-width:2"
r="4" />
<circle
cx="54"
cy="28"
id="circle6"
style="stroke-width:2"
r="4" />
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path9" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 610 B

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -1,14 +1,36 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
height="64"
width="64"
id="svg12">
id="svg12"
sodipodi:docname="Sketcher_Pointer_Create_Line_Polar.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="9.4375"
inkscape:cx="32"
inkscape:cy="32"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<metadata
id="metadata12">
<rdf:RDF>
@@ -17,7 +39,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@@ -36,15 +58,15 @@
style="fill:none;stroke:#cc0000;stroke-width:2"
id="line2"
y2="28"
x2="50"
x2="54"
y1="57"
x1="20" />
x1="24" />
<circle
style="fill:none;stroke:#cc0000;stroke-width:2"
id="circle4"
r="5"
cy="57"
cx="20" />
cx="24"
r="4" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
@@ -53,8 +75,8 @@
id="path9" />
</g>
<path
style="fill:#ef2929;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2,2;stroke-opacity:1;stroke-dashoffset:0"
d="m 25.072329,57.192599 c 28.284271,0 28.859544,10e-7 28.859544,10e-7"
style="fill:#ef2929;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:1"
d="m 57.931873,57.1926 c -28.284271,0 -28.859544,-10e-7 -28.859544,-10e-7"
id="path840" />
<ellipse
style="fill:none;stroke:#cc0000;stroke-width:2"

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -1,13 +1,92 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg14" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs18" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<path d="m16,45 l8,8l16-30l10,20" id="path2" />
<circle cx="24" cy="53" r="4" id="circle4" />
<circle cx="40" cy="23" r="4" id="circle6" />
<circle cx="50" cy="43" r="4" id="circle8" />
<svg
version="1.1"
height="64"
width="64"
id="svg14"
sodipodi:docname="Sketcher_Pointer_Create_Lineset.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="3.3035145"
inkscape:cx="9.0812376"
inkscape:cy="34.811411"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg14" />
<defs
id="defs18">
<linearGradient
xlink:href="#linearGradient3836-0"
id="linearGradient3801-1"
gradientUnits="userSpaceOnUse"
x1="-18"
y1="18"
x2="-22"
y2="5" />
<linearGradient
id="linearGradient3836-0">
<stop
style="stop-color:#a40000;stop-opacity:1"
offset="0"
id="stop3838-2" />
<stop
style="stop-color:#ef2929;stop-opacity:1"
offset="1"
id="stop3840-5" />
</linearGradient>
</defs>
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2">
<path
d="m 35.570129,46.215816 12.449936,7.626992 8.400666,-20.207382 C 49.486887,25.494465 41.304465,23.337567 31.152924,30.61808"
id="path2"
sodipodi:nodetypes="cccc" />
<circle
cx="35.570129"
cy="46.215816"
r="4"
id="circle4" />
<circle
cx="48.020065"
cy="53.842808"
r="4"
id="circle4-1"
style="fill:none;stroke:#cc0000;stroke-width:2" />
<circle
cx="31.152924"
cy="30.61808"
r="4"
id="circle6" />
<circle
cx="56.420731"
cy="33.635426"
r="4"
id="circle8" />
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path11" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path11" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 657 B

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -5,7 +5,7 @@
width="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Create_Offset.svg"
inkscape:version="1.1-beta1 (77e7b44db3, 2021-03-28)"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
@@ -23,14 +23,16 @@
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="5.8828125"
inkscape:cx="-9.9442231"
inkscape:cx="20.568393"
inkscape:cy="11.89907"
inkscape:window-width="3840"
inkscape:window-height="1570"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
inkscape:current-layer="svg12"
inkscape:showpageshadow="2"
inkscape:deskcolor="#d1d1d1" />
<defs
id="defs16" />
<g
@@ -42,12 +44,12 @@
</g>
<path
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 22.8175,31.560582 v 0 l 8.843331,-8.843331 27.059021,0.04742 0.3373,21.868645 c -2.25038,9.717698 -7.938768,15.488953 -18.813784,15.306541"
d="m 20.8175,33.560582 v 0 l 8.843331,-8.843331 27.059021,0.04742 0.3373,21.868645 c -2.25038,9.717698 -7.938768,15.488953 -18.813784,15.306541"
id="path1100"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 32.777079,38.277607 3.672903,-3.374103 10.355488,0.05743 0.290172,7.67342 c -1.13068,5.838586 -5.310987,6.59446 -8.253762,6.86739"
d="m 30.777079,40.277607 3.672903,-3.374103 10.355488,0.05743 0.290172,7.67342 c -1.13068,5.838586 -5.310987,6.59446 -8.253762,6.86739"
id="path2061"
sodipodi:nodetypes="ccccc" />
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
height="64"
width="64"
id="svg16"
sodipodi:docname="Sketcher_Pointer_Create_Periodic_BSpline.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="6.607029"
inkscape:cx="34.660057"
inkscape:cy="39.049322"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs20">
<linearGradient
xlink:href="#linearGradient3836-9-3"
id="linearGradient3262"
gradientUnits="userSpaceOnUse"
x1="-18"
y1="18"
x2="-22"
y2="5" />
<linearGradient
id="linearGradient3836-9-3">
<stop
style="stop-color:#a40000;stop-opacity:1"
offset="0"
id="stop3838-8-5" />
<stop
style="stop-color:#ef2929;stop-opacity:1"
offset="1"
id="stop3840-1-6" />
</linearGradient>
</defs>
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2"
transform="translate(1.1788527,3.8661511)">
<circle
cx="17.999966"
cy="54.245457"
id="circle6"
style="stroke-width:2"
r="4" />
<circle
cx="25.429577"
cy="27.690033"
id="circle8"
style="stroke-width:2"
r="4" />
<circle
cx="47.962303"
cy="50.087288"
id="circle8-8"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
<circle
cx="56.821148"
cy="23.764732"
id="circle10"
style="stroke-width:2"
r="4" />
<path
style="display:inline;fill:none;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
d="M 23.297354,48.548164 C 11.939585,38.359889 28.58861,39.65841 32.351293,32.7207 36.540231,24.99705 47.969854,12.196919 49.047349,23.560944 50.08735,34.529529 62.821147,33.092853 45.446559,42.24712 32.966441,48.822604 34.655119,58.736438 23.297354,48.548164 Z"
id="path3234-1-8"
sodipodi:nodetypes="sssss" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path13" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
height="64"
width="64"
id="svg16"
sodipodi:docname="Sketcher_Pointer_Create_Periodic_BSplineByInterpolation.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="6.607029"
inkscape:cx="34.660057"
inkscape:cy="39.049322"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs20">
<linearGradient
xlink:href="#linearGradient3836-9-3"
id="linearGradient3262"
gradientUnits="userSpaceOnUse"
x1="-18"
y1="18"
x2="-22"
y2="5" />
<linearGradient
id="linearGradient3836-9-3">
<stop
style="stop-color:#a40000;stop-opacity:1"
offset="0"
id="stop3838-8-5" />
<stop
style="stop-color:#ef2929;stop-opacity:1"
offset="1"
id="stop3840-1-6" />
</linearGradient>
</defs>
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2"
transform="translate(1.1788527,3.8661511)">
<circle
cx="23.297354"
cy="48.548164"
id="circle6"
style="stroke-width:2"
r="4" />
<circle
cx="32.351292"
cy="32.720699"
id="circle8"
style="stroke-width:2"
r="4" />
<circle
cx="41.05238"
cy="45.071671"
id="circle8-8"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
<circle
cx="50.702076"
cy="28.771776"
id="circle10"
style="stroke-width:2"
r="4" />
<path
style="display:inline;fill:none;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
d="M 23.297354,48.548164 C 11.939585,38.359889 28.58861,39.65841 32.351293,32.7207 36.540231,24.99705 47.969854,12.196919 49.047349,23.560944 50.08735,34.529529 62.821147,33.092853 45.446559,42.24712 32.966441,48.822604 34.655119,58.736438 23.297354,48.548164 Z"
id="path3234-1-8"
sodipodi:nodetypes="sssss" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path13" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,140 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
height="64"
width="64"
id="svg10"
sodipodi:docname="Sketcher_Pointer_Create_PointFillet.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="8"
inkscape:cx="33.125"
inkscape:cy="42.375"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs14">
<inkscape:path-effect
effect="dashed_stroke"
id="path-effect4"
is_visible="true"
lpeversion="1"
numberdashes="3"
holefactor="-0.16"
splitsegments="true"
halfextreme="false"
unifysegment="false"
message="Add &lt;b&gt;&quot;Fill Between Many LPE&quot;&lt;/b&gt; to add fill." />
<inkscape:path-effect
effect="dashed_stroke"
id="path-effect3"
is_visible="true"
lpeversion="1"
numberdashes="3"
holefactor="0.18"
splitsegments="true"
halfextreme="false"
unifysegment="false"
message="Add &lt;b&gt;&quot;Fill Between Many LPE&quot;&lt;/b&gt; to add fill." />
<inkscape:path-effect
effect="dashed_stroke"
id="path-effect2"
is_visible="true"
lpeversion="1"
numberdashes="3"
holefactor="0"
splitsegments="true"
halfextreme="false"
unifysegment="true"
message="Add &lt;b&gt;&quot;Fill Between Many LPE&quot;&lt;/b&gt; to add fill." />
<inkscape:path-effect
effect="dashed_stroke"
id="path-effect1"
is_visible="true"
lpeversion="1"
numberdashes="4"
holefactor="0.11"
splitsegments="true"
halfextreme="false"
unifysegment="true"
message="Add &lt;b&gt;&quot;Fill Between Many LPE&quot;&lt;/b&gt; to add fill." />
<linearGradient
xlink:href="#linearGradient3836-9"
id="linearGradient3801-7"
gradientUnits="userSpaceOnUse"
x1="-18"
y1="18"
x2="-22"
y2="5"
gradientTransform="translate(-90,-5.9999999)" />
<linearGradient
id="linearGradient3836-9">
<stop
style="stop-color:#a40000;stop-opacity:1"
offset="0"
id="stop3838-8" />
<stop
style="stop-color:#ef2929;stop-opacity:1"
offset="1"
id="stop3840-1" />
</linearGradient>
<linearGradient
y2="5"
x2="-22"
y1="18"
x1="-18"
gradientUnits="userSpaceOnUse"
id="linearGradient3082-3"
xlink:href="#linearGradient3836-9" />
</defs>
<g
id="symbol"
style="display:inline;fill:none;stroke:#cc0000;stroke-width:2"
transform="translate(4,-2)">
<circle
cx="26.439085"
cy="38.106495"
r="4"
id="circle4" />
<circle
cx="42.978943"
cy="54.646351"
r="4"
id="circle4-9"
style="display:inline;fill:none;stroke:#cc0000;stroke-width:2" />
<circle
cx="26.439085"
cy="54.646351"
r="4"
id="circle4-9-7"
style="display:inline;fill:none;stroke:#cc0000;stroke-width:2" />
<path
id="rect4"
d="M 53.021065,54.646352 H 42.978943 c -9.163081,0 -16.539858,-7.376777 -16.539858,-16.539858 V 28.064372"
sodipodi:nodetypes="cssc" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path7" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -1,67 +1,68 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
height="64"
width="64"
height="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Create_RectangleSlot.svg"
inkscape:version="1.1-beta1 (77e7b44db3, 2021-03-28)"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview10"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
objecttolerance="10.0"
gridtolerance="10.0"
guidetolerance="10.0"
inkscape:pageshadow="0"
inkscape:pageopacity="0"
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="8.3195532"
inkscape:cx="20.734287"
inkscape:cy="40.266585"
inkscape:window-width="3840"
inkscape:window-height="1570"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="47.417559"
inkscape:cy="48.239829"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
inkscape:current-layer="g6" />
<defs
id="defs16" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
<line
x1="17.351849"
y1="62.403584"
x2="17.325741"
y2="40.130707"
id="line2"
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" />
<line
x1="39.239552"
y1="18.421408"
x2="61.512409"
y2="18.3953"
id="line2-1"
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="M 60.284618,18.071227 C 62.725522,37.056618 44.867435,61.402632 17.360316,61.25051"
id="path2"
style="fill:none;stroke:#cc0000;stroke-width:2"
sodipodi:nodetypes="cc" />
<path
d="M 40.176901,17.443984 C 41.517929,27.874515 31.706735,41.250161 16.594384,41.166586"
id="path2-5"
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:nodetypes="cc" />
id="g6"
transform="translate(0,2)">
<circle
cx="39.285717"
cy="54.862953"
id="circle4"
style="stroke-width:2"
r="4" />
<circle
cx="55"
cy="21.862944"
id="circle4-1"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
<circle
cx="55"
cy="54.862953"
id="circle4-1-5"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
<path
id="path1-8"
style="fill:none;stroke-width:2"
d="m 55,39.148664 c -8.678759,0 -15.714284,7.035528 -15.714284,15.714291 H 22.000001 C 22.000001,36.637551 36.774604,21.862944 55,21.862944 Z"
sodipodi:nodetypes="ccccc" />
</g>
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="g10">
<path
d="m 16,3 v 9 m 0,8 v 9 M 3,16 h 9 m 8,0 h 9"
id="path8" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -1,12 +1,60 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg12" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs16" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<path d="m19,53l30,-30" stroke-dasharray="3 2" id="path2" />
<path d="m44,23h5v5z" id="path4" />
<circle cx="19" cy="53" r="3" id="circle6" />
<svg
version="1.1"
height="64"
width="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Extension.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="5.1596698"
inkscape:cx="36.630251"
inkscape:cy="25.970654"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<defs
id="defs16" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2"
transform="translate(8,2)">
<path
d="M 19,53 49,23"
stroke-dasharray="3 2"
id="path2"
style="stroke-dasharray:2, 2;stroke-dashoffset:0" />
<path
d="m 44,23 h 5 v 5 z"
id="path4"
style="fill:#cc0000;fill-opacity:1" />
<circle
cx="19"
cy="53"
id="circle6"
style="stroke-width:2"
r="4" />
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path9" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 609 B

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -1,22 +1,117 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg id="svg12" width="64" height="64" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata id="metadata18">
<svg
id="svg12"
width="64"
height="64"
version="1.1"
sodipodi:docname="Sketcher_Pointer_External.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="0.58984375"
inkscape:cx="-250.91391"
inkscape:cy="164.45033"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg12" />
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work rdf:about="">
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs id="defs16" />
<g transform="translate(-6.1362487,-5.2733382)" style="fill:none;stroke:#cc0000;stroke-width:2" id="symbol">
<path id="path6153" d="m 13.327165,47.273338 v 20" style="fill:none;stroke:#d60000;stroke-width:2;stroke-linecap:round;stroke-linejoin:bevel;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path id="path6155" d="m 38.136249,47.273338 v 20" style="fill:none;stroke:#d60000;stroke-width:2;stroke-linecap:round;stroke-linejoin:bevel;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path id="path6157" d="m 46.136249,39.273338 v 22" style="fill:none;stroke:#d60000;stroke-width:2;stroke-linecap:round;stroke-linejoin:bevel;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path id="path6159" d="m 13.327165,67.273338 v -20 h 24.809084 v 20 0 l 0,-20 8,-8 v 22" style="fill:none;stroke:#d60000;stroke-width:2;stroke-linecap:round;stroke-linejoin:bevel;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path id="path6161" d="m 13.327165,47.273338 9.49201,-8 h 23.317074 v 0" style="fill:none;stroke:#d60000;stroke-width:2;stroke-linecap:round;stroke-linejoin:bevel;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<defs
id="defs16">
<inkscape:path-effect
effect="dashed_stroke"
id="path-effect1"
is_visible="true"
lpeversion="1"
numberdashes="4"
holefactor="0"
splitsegments="true"
halfextreme="true"
unifysegment="false"
message="Add &lt;b&gt;&quot;Fill Between Many LPE&quot;&lt;/b&gt; to add fill." />
</defs>
<g
transform="translate(5.8637513,-1.2733382)"
style="fill:none;stroke:#cc0000;stroke-width:2"
id="symbol">
<path
id="path6153"
d="m 13.327165,47.273338 v 14"
style="fill:none;stroke:#d60000;stroke-width:2;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" />
<path
id="path6155"
d="m 38.136249,47.273338 v 14"
style="fill:none;stroke:#d60000;stroke-width:2;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" />
<path
id="path6161"
style="fill:none;stroke:#d60000;stroke-width:2;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 46.136249,39.273338 H 22.819175 l -9.49201,8 h 24.809084 l 8,-8 v 0 16"
sodipodi:nodetypes="ccccccc" />
<path
style="fill:#a76635;stroke:#cc0000;stroke-width:2;stroke-dasharray:none;stroke-dashoffset:0"
d="m 33.483443,25.311263 h 24"
id="path1"
transform="translate(-5.8637513,1.2733382)" />
<g
id="g1"
transform="rotate(-92.833867,51.460792,42.558906)">
<path
d="m 57.889834,26.483116 4.954736,4.361455"
stroke-dasharray="3 2"
id="path2"
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-dasharray:2, 2;stroke-dashoffset:0"
sodipodi:nodetypes="cc" />
<path
d="m 65.150758,28.150759 v 5 h -5 z"
id="path4"
style="fill:#cc0000;fill-opacity:1;stroke:#cc0000;stroke-width:2" />
</g>
</g>
<g style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter" id="crosshair">
<path id="path9" d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
<circle
cx="33.483452"
cy="25.311251"
id="circle4755"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
<circle
cx="57.483452"
cy="25.311251"
id="circle4755-2"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="crosshair">
<path
id="path9"
d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
width="64"
height="64"
version="1.1"
sodipodi:docname="Sketcher_Pointer_Heptagon.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="31.931478"
inkscape:cy="31.931478"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs16" />
<g
transform="rotate(30,55.977041,35.414538)"
style="fill:none;stroke:#cc0000;stroke-width:2"
id="symbol">
<circle
cx="46.010242"
cy="53.328125"
style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
id="circle4"
r="4" />
<circle
cx="46.472206"
cy="39.042294"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
id="circle4-3"
r="4" />
<path
sodipodi:type="star"
style="fill:none;stroke:#cc0000;stroke-width:1.57774"
id="path2"
inkscape:flatsided="true"
sodipodi:sides="7"
sodipodi:cx="32.205566"
sodipodi:cy="9.4561024"
sodipodi:r1="11.247711"
sodipodi:r2="7.9533324"
sodipodi:arg1="0.78539816"
sodipodi:arg2="1.2341971"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 40.158899,17.409435 -9.212677,3.223655 -8.264365,-5.192844 -1.092818,-9.6990271 6.901644,-6.9016436 9.699027,1.09281781 5.192844,8.26436509 z"
transform="matrix(1.0916218,-0.63024817,0.63740447,1.1040169,4.8265812,63.185929)" />
</g>
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="crosshair">
<path
id="path9"
d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
width="64"
height="64"
version="1.1"
sodipodi:docname="Sketcher_Pointer_Hexagon.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="31.931478"
inkscape:cy="31.931478"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs16" />
<g
transform="rotate(30,55.977041,35.414538)"
style="fill:none;stroke:#cc0000;stroke-width:2"
id="symbol">
<circle
cx="46.010242"
cy="53.328125"
style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
id="circle4"
r="4" />
<circle
cx="56.014557"
cy="43.266895"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
id="circle4-3"
r="4" />
<path
sodipodi:type="star"
style="fill:none;stroke:#cc0000;stroke-width:1.57774"
id="path2"
inkscape:flatsided="true"
sodipodi:sides="6"
sodipodi:cx="32.205566"
sodipodi:cy="9.4561024"
sodipodi:r1="11.247711"
sodipodi:r2="7.9533324"
sodipodi:arg1="0.78539816"
sodipodi:arg2="1.3089969"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 40.158899,17.409435 29.294445,20.320557 21.341112,12.367224 24.252234,1.5027695 35.116688,-1.4083524 43.070021,6.5449805 Z"
transform="matrix(1.0916218,-0.63024817,0.63740447,1.1040169,4.8265812,63.185929)" />
</g>
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="crosshair">
<path
id="path9"
d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -4,11 +4,33 @@
height="64"
width="64"
id="svg10"
sodipodi:docname="Sketcher_Pointer_InsertKnot.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="31.931478"
inkscape:cy="31.931478"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="svg10" />
<title
id="title839">Sketcher_PointerInsertKnot</title>
<metadata
@@ -42,32 +64,18 @@
<defs
id="defs14" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2">
id="g1"
inkscape:label="symbol">
<path
d="M 54.992381,9.9648713 C 63.989736,34.998545 7.0064885,30.993157 14.004432,57.028178"
id="path2"
style="stroke-width:2.00106;stroke:#dddddd;stroke-opacity:1" />
style="display:inline;fill:none;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 53.080401,28.249148 c -1.43085,26.470727 -26.470692,0 -28.616967,28.617002"
id="path3266-9-2" />
<circle
cx="46.915485"
cy="27.210726"
r="3"
id="circle4"
style="fill:#cc0000" />
<circle
id="circle4-8"
r="6.8303161"
cy="27.138775"
cx="46.828571"
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" />
<path
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 46,38 c 5.985948,0.01349 9.389948,-2.960925 11,-8"
id="path860" />
<path
id="path860-4"
d="m 36,28 c -0.01349,-5.985948 2.960925,-9.389948 8,-11"
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
cx="46.92411"
cy="40.59425"
id="circle8-8"
style="fill:#cc0000;stroke:#cc0000;stroke-width:2;fill-opacity:1"
r="4" />
</g>
<g
id="crosshair"
@@ -76,4 +84,14 @@
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path7" />
</g>
<path
id="path1"
style="fill:none;stroke:#cc0000;stroke-width:2"
d="m 55.92411,40.59425 a 9,9 0 0 1 -9,9" />
<path
id="path1-4"
style="fill:none;stroke:#cc0000;stroke-width:2"
d="M 38.230778,38.264878 A 9,9 0 0 1 49.253482,31.900917"
inkscape:transform-center-x="3.1819804"
inkscape:transform-center-y="-5.664686" />
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -1,8 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" width="64" height="64" id="svg12" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs16" />
<g style="stroke:#feffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter;fill:maroon;stroke-opacity:1" id="g10">
<path d="m 16,3 v 9 m 0,8 v 9 M 3,16 h 9 m 8,0 h 9" id="path8" style="fill:maroon;stroke:#feffff;stroke-opacity:1" />
<svg
version="1.1"
height="64"
width="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Oblong.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="5.1596698"
inkscape:cx="37.017873"
inkscape:cy="41.087901"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs16" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
transform="matrix(1.0366786,0,0,1.0366786,-0.1467704,-6.1737144)">
<path
id="rect3"
d="m 32.938626,32 h 13.504671 c 3.740792,0 6.752332,3.01154 6.752332,6.752332 v 13.504671 c 0,3.740792 -3.01154,6.752332 -6.752332,6.752332 H 32.938626 c -3.740791,0 -6.752331,-3.01154 -6.752331,-6.752332 V 38.752332 C 26.186295,35.01154 29.197835,32 32.938626,32 Z" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
<rect style="fill:none;fill-opacity:1;stroke:#c00;stroke-width:3.02362205;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" id="rect1303" width="30.236221" height="22.677166" x="18.897638" y="34.015747" ry="7.5590539" />
</svg>

Before

Width:  |  Height:  |  Size: 702 B

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -1,48 +1,54 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg12"
version="1.1"
height="64"
width="64"
version="1.1">
<metadata
id="metadata9">
<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>
id="svg12"
sodipodi:docname="Sketcher_Pointer_Oblong_Center.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="5.1596698"
inkscape:cx="37.017873"
inkscape:cy="41.087901"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs16" />
<g
id="g10"
style="stroke:#feffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter;fill:maroon;stroke-opacity:1">
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
transform="matrix(1.0366786,0,0,1.0366786,-0.1467704,-6.1737144)">
<path
style="fill:maroon;stroke:#feffff;stroke-opacity:1"
id="path8"
d="m 16,3 v 9 m 0,8 v 9 M 3,16 h 9 m 8,0 h 9" />
id="rect3"
d="m 32.938626,32 h 13.504671 c 3.740792,0 6.752332,3.01154 6.752332,6.752332 v 13.504671 c 0,3.740792 -3.01154,6.752332 -6.752332,6.752332 H 32.938626 c -3.740791,0 -6.752331,-3.01154 -6.752331,-6.752332 V 38.752332 C 26.186295,35.01154 29.197835,32 32.938626,32 Z" />
<circle
cx="39.69096"
cy="45.504665"
id="circle6"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
r="3.8584757" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
<rect
ry="7.5590539"
y="34.015747"
x="18.897638"
height="22.677166"
width="30.236221"
id="rect1303"
style="fill:none;fill-opacity:1;stroke:#c00;stroke-width:3.02362205;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<circle
cx="34.132881"
cy="45.399498"
r="5"
id="circle4"
style="fill:none;stroke:#cc0000;stroke-width:2" />
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -1,51 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg12"
version="1.1"
height="64"
width="64"
version="1.1">
<metadata
id="metadata9">
<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>
id="svg12"
sodipodi:docname="Sketcher_Pointer_Oblong_Frame.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="5.1596698"
inkscape:cx="37.017873"
inkscape:cy="41.087901"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs16" />
<g
id="g10"
style="stroke:#feffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter;fill:maroon;stroke-opacity:1">
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
transform="matrix(1.0366786,0,0,1.0366786,-0.1467704,-6.1737144)">
<path
style="fill:maroon;stroke:#feffff;stroke-opacity:1"
id="path8"
d="m 16,3 v 9 m 0,8 v 9 M 3,16 h 9 m 8,0 h 9" />
id="rect3"
d="m 33.903249,32 h 11.575426 c 4.275193,0 7.716954,3.441762 7.716954,7.716954 V 51.29238 c 0,4.275193 -3.441761,7.716955 -7.716954,7.716955 H 33.903249 c -4.275193,0 -7.716954,-3.441762 -7.716954,-7.716955 V 39.716954 C 26.186295,35.441762 29.628056,32 33.903249,32 Z" />
<path
id="rect3-1"
d="m 34.867866,36.823097 h 9.64619 c 2.137596,0 3.858476,1.72088 3.858476,3.858476 v 9.646191 c 0,2.137595 -1.72088,3.858475 -3.858476,3.858475 h -9.64619 c -2.137596,0 -3.858476,-1.72088 -3.858476,-3.858475 v -9.646191 c 0,-2.137596 1.72088,-3.858476 3.858476,-3.858476 z" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
<rect
ry="7.5590539"
y="34.015747"
x="18.897638"
height="22.677166"
width="30.236221"
id="rect1303"
style="fill:none;fill-opacity:1;stroke:#c00;stroke-width:3.024;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<rect
rx="5.1525426"
ry="4.9269509"
y="38.846859"
x="25.033438"
height="12.882548"
width="17.809498"
id="rect1303-3"
style="fill:none;fill-opacity:1;stroke:#cc0000;stroke-width:3.02399993;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -1,58 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="64"
height="64"
id="svg12">
<metadata
id="metadata9">
<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>
width="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Oblong_Frame_Center.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="5.1596698"
inkscape:cx="37.017873"
inkscape:cy="41.087901"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs16" />
<g
style="stroke:#feffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter;fill:maroon;stroke-opacity:1"
id="g10">
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
transform="matrix(1.0366786,0,0,1.0366786,-0.1467704,-6.1737144)">
<path
d="m 16,3 v 9 m 0,8 v 9 M 3,16 h 9 m 8,0 h 9"
id="path8"
style="fill:maroon;stroke:#feffff;stroke-opacity:1" />
id="rect3"
d="m 33.903245,32 h 11.575434 c 4.27519,0 7.71695,3.44176 7.71695,7.71695 v 11.575434 c 0,4.275191 -3.44176,7.716951 -7.71695,7.716951 H 33.903245 c -4.275191,0 -7.71695,-3.44176 -7.71695,-7.716951 V 39.71695 C 26.186295,35.44176 29.628054,32 33.903245,32 Z" />
<path
id="rect3-1"
d="m 34.867862,36.823097 h 9.646198 c 2.137593,0 3.858472,1.720879 3.858472,3.858473 v 9.646197 c 0,2.137594 -1.720879,3.858472 -3.858472,3.858472 h -9.646198 c -2.137593,0 -3.858472,-1.720878 -3.858472,-3.858472 V 40.68157 c 0,-2.137594 1.720879,-3.858473 3.858472,-3.858473 z" />
<circle
cx="39.69096"
cy="45.504665"
id="circle6"
style="fill:none;stroke:#cc0000;stroke-width:1.92924"
r="3.8584757" />
</g>
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
<rect
style="fill:none;fill-opacity:1;stroke:#c00;stroke-width:3.024;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
id="rect1303"
width="30.236221"
height="22.677166"
x="18.897638"
y="34.015747"
ry="7.5590539" />
<rect
style="fill:none;fill-opacity:1;stroke:#cc0000;stroke-width:3.02399993;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1303-3"
width="17.809498"
height="12.882548"
x="25.033438"
y="38.846859"
ry="4.9269509"
rx="5.1525426" />
<ellipse
ry="2.5593219"
rx="2.5593221"
cx="33.762711"
cy="45.152542"
id="circle4"
style="fill:none;stroke:#cc0000;stroke-width:2" />
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
width="64"
height="64"
version="1.1"
sodipodi:docname="Sketcher_Pointer_Oktagon.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="31.931478"
inkscape:cy="31.931478"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs16" />
<g
transform="rotate(30,55.977041,35.414538)"
style="fill:none;stroke:#cc0000;stroke-width:2"
id="symbol">
<circle
cx="46.010242"
cy="53.328125"
style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
id="circle4"
r="4" />
<circle
cx="49.622784"
cy="39.534939"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
id="circle4-3"
r="4" />
<path
sodipodi:type="star"
style="fill:none;stroke:#cc0000;stroke-width:1.57774"
id="path2"
inkscape:flatsided="true"
sodipodi:sides="8"
sodipodi:cx="32.205566"
sodipodi:cy="9.4561024"
sodipodi:r1="11.247711"
sodipodi:r2="7.9533324"
sodipodi:arg1="0.78539816"
sodipodi:arg2="1.1780972"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 40.158899,17.409435 -7.953333,3.294379 -7.953332,-3.294379 -3.294379,-7.9533326 3.294379,-7.9533329 7.953332,-3.2943783 7.953333,3.2943783 3.294379,7.9533328 z"
transform="matrix(1.0916218,-0.63024817,0.63740447,1.1040169,4.8265812,63.185929)" />
</g>
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="crosshair">
<path
id="path9"
d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
width="64"
height="64"
version="1.1"
sodipodi:docname="Sketcher_Pointer_Pentagon.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="31.931478"
inkscape:cy="31.931478"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs16" />
<g
transform="rotate(30,55.977041,35.414538)"
style="fill:none;stroke:#cc0000;stroke-width:2"
id="symbol">
<circle
cx="46.010242"
cy="53.328125"
style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
id="circle4"
r="4" />
<circle
cx="53.695427"
cy="41.374413"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
id="circle4-3"
r="4" />
<path
sodipodi:type="star"
style="fill:none;stroke:#cc0000;stroke-width:1.57774"
id="path2"
inkscape:flatsided="true"
sodipodi:sides="5"
sodipodi:cx="32.205566"
sodipodi:cy="9.4561024"
sodipodi:r1="11.247711"
sodipodi:r2="7.9533324"
sodipodi:arg1="0.78539816"
sodipodi:arg2="1.4137167"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 40.158899,17.409435 27.099212,19.477886 21.096333,7.6965727 30.446037,-1.6531308 42.22735,4.3497483 Z"
transform="matrix(1.0916218,-0.63024817,0.63740447,1.1040169,4.8265812,63.185929)" />
</g>
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="crosshair">
<path
id="path9"
d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -1,20 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg id="svg12" width="64" height="64" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata id="metadata18">
<svg
id="svg12"
width="64"
height="64"
version="1.1"
sodipodi:docname="Sketcher_Pointer_Regular_Polygon.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="31.931478"
inkscape:cy="31.931478"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work rdf:about="">
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs id="defs16" />
<g transform="translate(-6.1362487,-5.2733382)" style="fill:none;stroke:#cc0000;stroke-width:2" id="symbol">
<circle r="3.5762713" cx="46.13625" cy="53.273338" style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none" id="circle4" />
<path d="M 60.770398,53.273338 53.453324,65.946883 H 38.819175 l -7.317074,-12.673545 7.317074,-12.673544 14.634149,0 z" id="path4533" style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;fill-rule:evenodd" />
<circle r="3.5762713" cx="53.453323" cy="40.599792" style="fill:none;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;fill-rule:evenodd;fill-opacity:1;opacity:1" id="circle4-3" />
<defs
id="defs16" />
<g
transform="rotate(30,55.977041,35.414538)"
style="fill:none;stroke:#cc0000;stroke-width:2"
id="symbol">
<circle
cx="46.010242"
cy="53.328125"
style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
id="circle4"
r="4" />
<circle
cx="53.06963"
cy="41.020416"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
id="circle4-3"
r="4" />
<path
sodipodi:type="star"
style="fill:none;stroke:#cc0000;stroke-width:1.57774"
id="path2"
inkscape:flatsided="true"
sodipodi:sides="6"
sodipodi:cx="32.205566"
sodipodi:cy="9.4561024"
sodipodi:r1="11.247711"
sodipodi:r2="7.9533324"
sodipodi:arg1="0.78539816"
sodipodi:arg2="1.3089969"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 40.158899,17.409435 29.294445,20.320557 21.341112,12.367224 24.252234,1.5027695 35.116688,-1.4083524 43.070021,6.5449805 Z"
transform="matrix(0.89130546,-0.8913055,0.90142604,0.90142602,8.7812674,73.509148)" />
</g>
<g style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter" id="crosshair">
<path id="path9" d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="crosshair">
<path
id="path9"
d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -1,11 +1,59 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" width="64" height="64" id="svg12" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs16" />
<g style="fill:none;stroke:#cc0000;stroke-width:2" id="g6">
<path d="m45,35c14,0 14,20 0,20h-20c-14,0-14-20 0-20z" id="path2" />
<circle cx="25" cy="45" r="3" id="circle4" />
<svg
version="1.1"
width="64"
height="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Slot.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="32"
inkscape:cy="32.068522"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="g6" />
<defs
id="defs16" />
<g
style="fill:none;stroke:#cc0000;stroke-width:2"
id="g6">
<path
d="m 49.111349,34.862955 c 14,0 14,20 0,20 h -20 c -14,0 -14,-20 0,-20 z"
id="path2" />
<circle
cx="29.111349"
cy="44.862953"
id="circle4"
style="stroke-width:2"
r="4" />
<circle
cx="49.111347"
cy="44.862953"
id="circle4-1"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4" />
</g>
<g style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter" id="g10">
<path d="m 16,3 v 9 m 0,8 v 9 M 3,16 h 9 m 8,0 h 9" id="path8" />
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="g10">
<path
d="m 16,3 v 9 m 0,8 v 9 M 3,16 h 9 m 8,0 h 9"
id="path8" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 580 B

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -1,22 +1,101 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg id="svg8" width="64" height="64" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata id="metadata14">
<svg
id="svg8"
width="64"
height="64"
version="1.1"
sodipodi:docname="Sketcher_Pointer_Splitting.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="15.897216"
inkscape:cy="40.154176"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work rdf:about="">
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs id="defs12" />
<g style="fill:#cc0000;stroke:none" id="symbol">
<circle id="circle2" r="6" cy="32" cx="32" />
<defs
id="defs12" />
<g
style="fill:#cc0000;stroke:none;stroke-width:1.20001"
id="symbol"
transform="matrix(0.83333333,0,0,0.83333333,3.3333334,3.3333334)">
<circle
id="circle2"
r="6"
cy="29.6"
cx="29.6"
style="stroke-width:1.20001" />
<circle
cx="26"
cy="56"
id="circle4755"
style="fill:none;stroke:#cc0000;stroke-width:2"
r="4"
transform="matrix(1.2,0,0,1.2,-4.0000001,-4.0000001)" />
<circle
cx="56"
cy="-27"
id="circle4757"
style="fill:none;stroke:#cc0000;stroke-width:2"
transform="matrix(1.2,0,0,-1.2,-4.0000001,-4.0000001)"
r="4" />
<path
style="fill:none;fill-rule:evenodd;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 26,56 38.245154,44.163018"
id="path4792"
transform="matrix(1.2,0,0,1.2,-4.0000001,-4.0000001)" />
<path
id="path4794"
d="M 43.754846,38.836982 56,27"
style="fill:none;fill-rule:evenodd;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(1.2,0,0,1.2,-4.0000001,-4.0000001)" />
<path
d="M 28.193812,28.193812 38.84457,38.84457"
stroke-dasharray="3 2"
id="path2"
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-dasharray:2, 2;stroke-dashoffset:0"
sodipodi:nodetypes="cc"
transform="matrix(1.2,0,0,1.2,-4.0000001,-4.0000001)" />
<path
d="m 41.150758,36.150758 v 5 h -5 z"
id="path4"
style="fill:#cc0000;fill-opacity:1;stroke:#cc0000;stroke-width:2"
transform="matrix(1.2,0,0,1.2,-4.0000001,-4.0000001)" />
</g>
<g style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter" id="crosshair">
<path id="path5" d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="crosshair">
<path
id="path5"
d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
</g>
<circle cx="26" cy="56" r="5" id="circle4755" style="fill:none;stroke:#cc0000;stroke-width:2" />
<circle cx="56" cy="27" r="5" id="circle4757" style="fill:none;stroke:#cc0000;stroke-width:2" />
<path style="fill:none;fill-rule:evenodd;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 26,56 38.245154,44.163018" id="path4792" />
<path id="path4794" d="M 43.754846,38.836982 56,27" style="fill:none;fill-rule:evenodd;stroke:#cc0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg12"
width="64"
height="64"
version="1.1"
sodipodi:docname="Sketcher_Pointer_Triangle.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="7.296875"
inkscape:cx="31.931478"
inkscape:cy="31.931478"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<metadata
id="metadata18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs16" />
<g
transform="rotate(30,55.977041,35.414538)"
style="fill:none;stroke:#cc0000;stroke-width:2"
id="symbol">
<circle
cx="44.010242"
cy="49.864021"
style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
id="circle4"
r="4" />
<circle
cx="51.087189"
cy="37.437035"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#cc0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none"
id="circle4-3"
r="4" />
<path
sodipodi:type="star"
style="fill:none;stroke:#cc0000;stroke-width:1.57774"
id="path2"
inkscape:flatsided="true"
sodipodi:sides="3"
sodipodi:cx="32.205566"
sodipodi:cy="9.4561024"
sodipodi:r1="11.247711"
sodipodi:r2="7.9533324"
sodipodi:arg1="0.78539816"
sodipodi:arg2="1.8325957"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 40.158899,17.409435 21.341112,12.367224 35.116688,-1.4083524 Z"
transform="matrix(1.2175459,0.32624042,-0.32994481,1.2313709,7.8663306,27.714756)" />
</g>
<g
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter"
id="crosshair">
<path
id="path9"
d="m16,3v9m0,8v9m-13-13h9m8,0h9" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -1,12 +1,65 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" height="64" width="64" id="svg12" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs16" />
<g id="symbol" style="fill:none;stroke:#cc0000;stroke-width:2">
<path d="m40,40l-17-15m17,15l-17,15m17-15l17,15" stroke-dasharray="2 2" id="path2" />
<path d="m40,40l20-18" stroke-dasharray="4 2" id="path4" />
<circle cx="40" cy="40" r="3" id="circle6" />
<svg
version="1.1"
height="64"
width="64"
id="svg12"
sodipodi:docname="Sketcher_Pointer_Trimming.svg"
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="6.607029"
inkscape:cx="40.865569"
inkscape:cy="43.438586"
inkscape:window-width="1368"
inkscape:window-height="842"
inkscape:window-x="-6"
inkscape:window-y="-6"
inkscape:window-maximized="1"
inkscape:current-layer="symbol" />
<defs
id="defs16" />
<g
id="symbol"
style="fill:none;stroke:#cc0000;stroke-width:2">
<circle
id="circle6"
cy="40.971458"
cx="39.036678"
style="stroke-width:2"
r="4" />
<path
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-dasharray:none"
d="M 30.803782,58.854389 46.050537,25.73644"
id="path1"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-dasharray:none"
d="M 39.036678,40.971459 57.088949,59.988908"
id="path1-7"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#cc0000;stroke-width:2;stroke-dasharray:2, 2;stroke-dashoffset:0"
d="M 35.739389,37.497878 22.847876,23.91711"
id="path1-7-7"
sodipodi:nodetypes="cc" />
</g>
<g id="crosshair" style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path d="m16,3v9m0,8v9m-13-13h9m8,0h9" id="path9" />
<g
id="crosshair"
style="stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:miter">
<path
d="m16,3v9m0,8v9m-13-13h9m8,0h9"
id="path9" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 658 B

After

Width:  |  Height:  |  Size: 2.0 KiB