CAM: Add tapered ball nose toolbit/shape asset

Introduced new toolbit and shape models for tapered ball nose tools,
including schema, summary, and integration into CMake and module
imports. Added corresponding SVG and FCStd files to resources.

Updated SVGs so end markers (arrows) render correctly in Qt by
converting markers to paths. Kept a source SVG with markers as
strokes (not paths) for future editing and updates.

Reworked the ToolBitEditor UI to display the toolbit to the right of the
toolbit properties, improving usability. Shrunk the overall height of
the editor window to better fit typical screen sizes.

src/Mod/CAM/CMakeLists.txt:
- Registered new taperedballnose toolbit and shape models and resources
- Added updated SVGs and source SVGs for marker compatibility

src/Mod/CAM/Path/Tool/shape/__init__.py:
- Imported ToolBitShapeTaperedBallNose and added to __all__

src/Mod/CAM/Path/Tool/shape/models/taperedballnose.py:
- Added ToolBitShapeTaperedBallNose class with schema and label

src/Mod/CAM/Path/Tool/toolbit/__init__.py:
- Imported ToolBitTaperedBallNose and added to __all__

src/Mod/CAM/Path/Tool/toolbit/models/taperedballnose.py:
- Added ToolBitTaperedBallNose class with summary and integration

Tools/Shape/taperedballnose.svg, Tools/Shape/taperedballnose.fcstd:
- Added new SVG and FCStd for tapered ball nose
- Updated SVGs for correct marker rendering in Qt
- Kept editable source SVGs with markers as strokes for future updates
This commit is contained in:
Billy Huddleston
2026-01-16 20:35:29 -05:00
parent e0f3e1e5d9
commit bd699e4fe9
43 changed files with 9788 additions and 517 deletions

View File

@@ -211,6 +211,7 @@ SET(PathPythonToolsToolBitModels_SRCS
Path/Tool/toolbit/models/reamer.py
Path/Tool/toolbit/models/slittingsaw.py
Path/Tool/toolbit/models/tap.py
Path/Tool/toolbit/models/taperedballnose.py
Path/Tool/toolbit/models/threadmill.py
Path/Tool/toolbit/models/vbit.py
)
@@ -284,6 +285,7 @@ SET(PathPythonToolsShapeModels_SRCS
Path/Tool/shape/models/reamer.py
Path/Tool/shape/models/slittingsaw.py
Path/Tool/shape/models/tap.py
Path/Tool/shape/models/taperedballnose.py
Path/Tool/shape/models/threadmill.py
Path/Tool/shape/models/vbit.py
)
@@ -487,6 +489,8 @@ SET(Tools_Shape_SRCS
Tools/Shape/slittingsaw.svg
Tools/Shape/tap.fcstd
Tools/Shape/tap.svg
Tools/Shape/taperedballnose.fcstd
Tools/Shape/taperedballnose.svg
Tools/Shape/thread-mill.fcstd
Tools/Shape/thread-mill.svg
Tools/Shape/v-bit.fcstd

View File

@@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>750</width>
<height>800</height>
<width>775</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
@@ -15,24 +15,9 @@
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QScrollArea" name="scrollArea">
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents_6">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>980</width>
<height>849</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<layout class="QVBoxLayout" name="vBox">
<item>
<widget class="QTabWidget" name="tabWidget">
<layout class="QVBoxLayout" name="vBox">
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
@@ -41,14 +26,14 @@
</property>
<property name="sizeIncrement">
<size>
<width>650</width>
<height>850</height>
<width>775</width>
<height>600</height>
</size>
</property>
<property name="baseSize">
<size>
<width>650</width>
<height>850</height>
<width>775</width>
<height>600</height>
</size>
</property>
<property name="currentIndex">
@@ -170,10 +155,6 @@
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</widget>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">

View File

@@ -134,6 +134,7 @@ class CamoticsSimulation(QtCore.QObject):
SHAPEMAP = {
"ballend": "Ballnose",
"endmill": "Cylindrical",
"taperedballnose": "Ballnose",
"v-bit": "Conical",
"chamfer": "Snubnose",
}

View File

@@ -2678,6 +2678,7 @@ class OCL_Tool:
"endmill": "CylCutter",
"ballend": "BallCutter",
"bullnose": "BullCutter",
"taperedballnose": "BallCutter",
"drill": "ConeCutter",
"engraver": "ConeCutter",
"v_bit": "ConeCutter",

View File

@@ -33,11 +33,17 @@ from ..models.library import Library
SHAPEMAP = {
"ballend": "Ballnose",
"endmill": "Cylindrical",
"taperedballnose": "Ballnose",
"v-bit": "Conical",
"vbit": "Conical",
"chamfer": "Snubnose",
}
SHAPEMAP_REVERSE = dict((v, k) for k, v in SHAPEMAP.items())
SHAPEMAP_REVERSE = {
"Ballnose": "ballend", # Default to ballend when deserializing Ballnose
"Cylindrical": "endmill",
"Conical": "v-bit",
"Snubnose": "chamfer",
}
tooltemplate = {
"units": "metric",

View File

@@ -16,6 +16,7 @@ from .models.probe import ToolBitShapeProbe
from .models.reamer import ToolBitShapeReamer
from .models.slittingsaw import ToolBitShapeSlittingSaw
from .models.tap import ToolBitShapeTap
from .models.taperedballnose import ToolBitShapeTaperedBallNose
from .models.threadmill import ToolBitShapeThreadMill
from .models.vbit import ToolBitShapeVBit
from .models.icon import (
@@ -42,6 +43,7 @@ __all__ = [
"ToolBitShapeReamer",
"ToolBitShapeSlittingSaw",
"ToolBitShapeTap",
"ToolBitShapeTaperedBallNose",
"ToolBitShapeThreadMill",
"ToolBitShapeVBit",
"TOOL_BIT_SHAPE_NAMES",

View File

@@ -0,0 +1,66 @@
# SPDX-License-Identifier: LGPL-2.1-or-later
################################################################################
# #
# © 2026 Billy Huddleston <billy@ivdc.com> #
# #
# FreeCAD is free software: you can redistribute it and/or modify #
# it under the terms of the GNU Lesser General Public License as #
# published by the Free Software Foundation, either version 2.1 #
# of the License, or (at your option) any later version. #
# #
# FreeCAD is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty #
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. #
# See the GNU Lesser General Public License for more details. #
# #
# You should have received a copy of the GNU Lesser General Public #
# License along with FreeCAD. If not, see https://www.gnu.org/licenses #
# #
################################################################################
import FreeCAD
from typing import Tuple, Mapping
from .base import ToolBitShape
class ToolBitShapeTaperedBallNose(ToolBitShape):
name: str = "TaperedBallNose"
aliases = ("taperedballnose",)
@classmethod
def schema(cls) -> Mapping[str, Tuple[str, str]]:
return {
"CuttingEdgeHeight": (
FreeCAD.Qt.translate("ToolBitShape", "Cutting edge height"),
"App::PropertyLength",
),
"Diameter": (
FreeCAD.Qt.translate("ToolBitShape", "Diameter"),
"App::PropertyLength",
),
"Flutes": (
FreeCAD.Qt.translate("ToolBitShape", "Flutes"),
"App::PropertyInteger",
),
"Length": (
FreeCAD.Qt.translate("ToolBitShape", "Overall tool length"),
"App::PropertyLength",
),
"ShankDiameter": (
FreeCAD.Qt.translate("ToolBitShape", "Shank diameter"),
"App::PropertyLength",
),
"TaperAngle": (
FreeCAD.Qt.translate("ToolBitShape", "Included Taper angle"),
"App::PropertyAngle",
),
"TaperDiameter": (
FreeCAD.Qt.translate("ToolBitShape", "Diameter at top of Taper"),
"App::PropertyLength",
),
}
@property
def label(self) -> str:
return FreeCAD.Qt.translate("ToolBitShape", "Tapered Ball Nose")

View File

@@ -45,7 +45,7 @@ class ShapeWidget(QtGui.QWidget):
self.layout.setAlignment(QtCore.Qt.AlignHCenter)
self.shape = shape
self.icon_size = icon_size or QtCore.QSize(140, 165) # 200 x 235
self.icon_size = icon_size or QtCore.QSize(263, 372) # A4 aspect ratio
self.icon_widget = QtGui.QLabel()
self.layout.addWidget(self.icon_widget)

View File

@@ -15,6 +15,7 @@ from .models.radius import ToolBitRadius
from .models.probe import ToolBitProbe
from .models.reamer import ToolBitReamer
from .models.slittingsaw import ToolBitSlittingSaw
from .models.taperedballnose import ToolBitTaperedBallNose
from .models.tap import ToolBitTap
from .models.threadmill import ToolBitThreadMill
from .models.vbit import ToolBitVBit
@@ -33,6 +34,7 @@ __all__ = [
"ToolBitProbe",
"ToolBitReamer",
"ToolBitSlittingSaw",
"ToolBitTaperedBallNose",
"ToolBitTap",
"ToolBitThreadMill",
"ToolBitVBit",

View File

@@ -0,0 +1,46 @@
# SPDX-License-Identifier: LGPL-2.1-or-later
################################################################################
# #
# © 2026 Billy Huddleston <billy@ivdc.com> #
# #
# FreeCAD is free software: you can redistribute it and/or modify #
# it under the terms of the GNU Lesser General Public License as #
# published by the Free Software Foundation, either version 2.1 #
# of the License, or (at your option) any later version. #
# #
# FreeCAD is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty #
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. #
# See the GNU Lesser General Public License for more details. #
# #
# You should have received a copy of the GNU Lesser General Public #
# License along with FreeCAD. If not, see https://www.gnu.org/licenses #
# #
################################################################################
import FreeCAD
import Path
from ...shape import ToolBitShapeTaperedBallNose
from ..mixins import RotaryToolBitMixin, CuttingToolMixin
from .base import ToolBit
class ToolBitTaperedBallNose(ToolBit, CuttingToolMixin, RotaryToolBitMixin):
SHAPE_CLASS = ToolBitShapeTaperedBallNose
def __init__(self, shape: ToolBitShapeTaperedBallNose, id: str | None = None):
Path.Log.track(f"ToolBitTaperedBallNose __init__ called with shape: {shape}, id: {id}")
super().__init__(shape, id=id)
CuttingToolMixin.__init__(self, self.obj)
@property
def summary(self) -> str:
diameter = self.get_property_str("Diameter", "?", precision=3)
flutes = self.get_property("Flutes")
cutting_edge_height = self.get_property_str("CuttingEdgeHeight", "?", precision=3)
taper_angle = self.get_property_str("TaperAngle", "?", precision=1)
return FreeCAD.Qt.translate(
"CAM",
f"{diameter} tip, {taper_angle} taper, {flutes}-flute tapered ball nose, {cutting_edge_height} cutting edge",
)

View File

@@ -34,11 +34,17 @@ from ...assets.asset import Asset
SHAPEMAP = {
"ballend": "Ballnose",
"endmill": "Cylindrical",
"taperedballnose": "Ballnose",
"v-bit": "Conical",
"vbit": "Conical",
"chamfer": "Snubnose",
}
SHAPEMAP_REVERSE = dict((v, k) for k, v in SHAPEMAP.items())
SHAPEMAP_REVERSE = {
"Ballnose": "ballend", # Default to ballend when deserializing Ballnose
"Cylindrical": "endmill",
"Conical": "v-bit",
"Snubnose": "chamfer",
}
tooltemplate = {
"units": "metric",

View File

@@ -99,8 +99,6 @@ class ToolBitPropertiesWidget(QtGui.QWidget):
properties_layout.setStretchFactor(self._property_editor, 1)
main_layout.addWidget(properties_group_box)
# Add stretch before shape widget to push it towards the bottom
main_layout.addStretch(1)
# Layout for centering the shape widget (created later)
@@ -276,18 +274,36 @@ class ToolBitEditor(QtGui.QWidget):
)
self._tab_closed = False
# Get first tab from the form, add the shape widget at the top.
# Get first tab from the form, add the shape widget to the right.
tool_tab_layout = self.form.toolTabLayout
widget = ShapeWidget(toolbit._tool_bit_shape)
tool_tab_layout.addWidget(widget)
# Add tool properties editor to the same tab.
# Create a horizontal layout for the tab content
tab_content_layout = QtGui.QHBoxLayout()
# Add tool properties editor to the left with stretch
self._props = ToolBitPropertiesWidget(toolbit, tool_no, self, icon=icon)
self._last_units_value = self._get_units_value(self._props)
self._props.toolBitChanged.connect(self._on_toolbit_changed)
self._props.toolBitChanged.connect(self._update)
self._props.toolNoChanged.connect(self._on_tool_no_changed)
tool_tab_layout.addWidget(self._props)
# Wrap properties in a scroll area for vertical scrolling
scroll_area = QtGui.QScrollArea()
scroll_area.setWidget(self._props)
scroll_area.setWidgetResizable(True)
scroll_area.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
scroll_area.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAsNeeded)
scroll_area.setMinimumHeight(550) # Set minimum height for the scroll area
scroll_area.setMaximumHeight(600) # Set maximum height to prevent excessive growth
tab_content_layout.addWidget(scroll_area, 1)
# Add shape widget to the right without stretch
widget = ShapeWidget(toolbit._tool_bit_shape)
tab_content_layout.addWidget(widget, 0)
# Add the horizontal layout to the tab layout
tool_tab_layout.addLayout(tab_content_layout)
self.form.tabWidget.setCurrentIndex(0)
self.form.tabWidget.currentChanged.connect(self._on_tab_switched)
@@ -350,19 +366,27 @@ class ToolBitEditor(QtGui.QWidget):
are in sync with the current toolbit's units, and user changes are preserved
because the ToolBit object is always up to date.
"""
# Remove the current property editor widget
# Get the horizontal layout and scroll area
tool_tab_layout = self.form.toolTabLayout
tool_tab_layout.removeWidget(self._props)
tab_content_layout = tool_tab_layout.itemAt(0).layout() # Get the QHBoxLayout
scroll_area = tab_content_layout.itemAt(0).widget() # Get the scroll area
# Remove the current property editor widget from scroll area
scroll_area.takeWidget()
self._props.deleteLater()
# Restore the original schema
FreeCAD.Units.setSchema(self._original_schema)
# Recreate the property editor with the current toolbit
self._props = ToolBitPropertiesWidget(self.toolbit, self.tool_no, self, icon=False)
self._last_units_value = self._get_units_value(self._props)
self._props.toolBitChanged.connect(self._on_toolbit_changed)
self._props.toolBitChanged.connect(self._update)
self._props.toolNoChanged.connect(self._on_tool_no_changed)
tool_tab_layout.addWidget(self._props)
# Set the new widget in the scroll area
scroll_area.setWidget(self._props)
self.form.tabWidget.setCurrentIndex(0)
def _restore_original_schema(self):

View File

@@ -8,7 +8,7 @@
version="1.1"
id="svg5"
xml:space="preserve"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="ballend.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
@@ -25,14 +25,14 @@
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.74991656"
inkscape:cx="176.68632"
inkscape:cy="308.70101"
inkscape:window-width="2818"
inkscape:window-height="1645"
inkscape:window-x="1022"
inkscape:window-y="192"
inkscape:window-maximized="0"
inkscape:zoom="0.61035884"
inkscape:cx="409.59512"
inkscape:cy="577.52912"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="g547" /><defs
id="defs2"><linearGradient
id="linearGradient12"
@@ -135,7 +135,11 @@
id="marker1181-3"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -144,7 +148,11 @@
id="marker1185-7"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -297,14 +305,45 @@
ry="0.00053431751" /><path
id="path4538-5"
d="m 134.77997,269.93139 v -39.1469"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542-3"
d="M 73.662232,49.575249 H 130.70829"
style="fill:none;stroke:#000000;stroke-width:0.736568;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1185)"
sodipodi:nodetypes="cc" /><path
id="path4548"
d="M 70.526184,257.68689 H 134.18441"
style="fill:none;stroke:#000000;stroke-width:0.540802;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1173);marker-end:url(#marker1177)" /><text
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path4542-3"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 73.662109,49.207031 v 0.736328 h 57.046871 v -0.736328 z"
id="path24326" /><g
id="g24308"><g
id="path24318"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.506391;stroke-linejoin:round;-inkscape-stroke:none"
d="m 122.83405,46.307017 8.85242,3.255258 -8.85242,3.255257 c 1.41424,-1.921903 1.4061,-4.551399 0,-6.510515 z"
id="path24322" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 122.92188,46.070312 a 0.25322081,0.25322081 0 0 0 -0.29297,0.384766 c 1.34379,1.872302 1.35057,4.380158 0.002,6.212891 a 0.25322081,0.25322081 0 0 0 0.29102,0.386718 l 8.85156,-3.253906 a 0.25322081,0.25322081 0 0 0 0,-0.476562 z m 0.42187,0.695313 7.60742,2.796875 -7.60156,2.794922 c 0.97721,-1.739779 0.97046,-3.8306 -0.006,-5.591797 z"
id="path24324" /></g><g
id="path24310"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.506391;stroke-linejoin:round;-inkscape-stroke:none"
d="m 81.536473,52.843481 -8.852417,-3.255258 8.852417,-3.255257 c -1.414246,1.921903 -1.406097,4.551399 0,6.510515 z"
id="path24314" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 81.449219,46.095703 -8.853516,3.253906 a 0.25322081,0.25322081 0 0 0 0,0.476563 l 8.853516,3.255859 a 0.25322081,0.25322081 0 0 0 0.292968,-0.386719 c -1.343788,-1.872301 -1.350581,-4.380158 -0.002,-6.21289 a 0.25322081,0.25322081 0 0 0 -0.291015,-0.386719 z m -0.427735,0.695313 c -0.97858,1.740554 -0.973485,3.833587 0.0039,5.595703 l -7.605469,-2.798828 z"
id="path24316" /></g></g></g><g
id="path4548"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 70.525391,257.41602 v 0.54101 h 63.658199 v -0.54101 z"
id="path24386" /><g
id="g24368"><g
id="path24378"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.371801;stroke-linejoin:round;-inkscape-stroke:none"
d="m 128.403,255.28729 6.49961,2.39007 -6.49962,2.39007 c 1.03837,-1.41109 1.03239,-3.34172 1e-5,-4.78014 z"
id="path24382" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 128.4668,255.11328 a 0.18591908,0.18591908 0 0 0 -0.21485,0.2832 c 0.98664,1.37468 0.99215,3.21493 0.002,4.56055 a 0.18591908,0.18591908 0 0 0 0.21289,0.28516 l 6.5,-2.39063 a 0.18591908,0.18591908 0 0 0 0,-0.34961 z m 0.2207,0.47656 5.67578,2.08594 -5.67578,2.08789 c 0.75567,-1.30238 0.7539,-2.85458 0,-4.17383 z"
id="path24384" /></g><g
id="path24370"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.371801;stroke-linejoin:round;-inkscape-stroke:none"
d="m 76.307599,260.08649 -6.49961,-2.39007 6.49961,-2.39007 c -1.038366,1.41109 -1.032383,3.34172 0,4.78014 z"
id="path24374" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 76.244141,255.13281 -6.5,2.38867 a 0.18591908,0.18591908 0 0 0 0,0.34961 l 6.5,2.39063 a 0.18591908,0.18591908 0 0 0 0.214843,-0.2832 c -0.986635,-1.37468 -0.992141,-3.21689 -0.002,-4.5625 a 0.18591908,0.18591908 0 0 0 -0.21289,-0.28321 z m -0.220704,0.47461 c -0.756689,1.30276 -0.75438,2.85788 0,4.17774 l -5.675781,-2.08985 z"
id="path24376" /></g></g></g><text
transform="scale(0.97131606,1.029531)"
id="shank_diameter"
y="60.10556"
@@ -341,10 +380,26 @@
x="158.56374" /></text><path
id="path4538-8"
d="m 70.004914,272.49174 v -39.1469"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path897-5"
d="M 152.10819,100.27512 V 248.60004"
style="fill:none;stroke:#000000;stroke-width:1.13395;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow2Lstart);marker-end:url(#Arrow2Lend)" /><path
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path897-5"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 151.54102,100.27539 v 148.32422 h 1.13476 V 100.27539 Z"
id="path24356" /><g
id="g24338"><g
id="path24348"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.779591;stroke-linejoin:round;-inkscape-stroke:none"
d="m 157.13965,236.47761 -5.01149,13.62834 -5.01148,-13.62834 c 2.95878,2.17724 7.0069,2.16469 10.02297,0 z"
id="path24352" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 157.22656,236.09766 a 0.38983449,0.38983449 0 0 0 -0.31445,0.0625 c -2.88242,2.06876 -6.74295,2.08012 -9.56445,0.004 a 0.38983449,0.38983449 0 0 0 -0.59766,0.44727 l 5.01172,13.6289 a 0.38983449,0.38983449 0 0 0 0.73242,0 l 5.01172,-13.6289 a 0.38983449,0.38983449 0 0 0 -0.2793,-0.51367 z m -0.79101,1.16601 -4.30664,11.71094 -4.30469,-11.70313 c 2.67872,1.50457 5.89978,1.49579 8.61133,-0.008 z"
id="path24354" /></g><g
id="path24340"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.779591;stroke-linejoin:round;-inkscape-stroke:none"
d="m 147.07673,112.39755 5.01149,-13.628337 5.01148,13.628337 c -2.95878,-2.17724 -7.0069,-2.16469 -10.02297,0 z"
id="path24344" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 152.08789,98.378906 a 0.38983449,0.38983449 0 0 0 -0.36523,0.25586 l -5.01172,13.628904 a 0.38983449,0.38983449 0 0 0 0.59375,0.45117 c 2.88242,-2.06876 6.74295,-2.08012 9.56445,-0.004 a 0.38983449,0.38983449 0 0 0 0.5957,-0.44727 l -5.01172,-13.628904 a 0.38983449,0.38983449 0 0 0 -0.36523,-0.25586 z m 0,1.519531 4.30664,11.707033 c -2.67931,-1.50641 -5.90064,-1.49835 -8.61328,0.006 z"
id="path24346" /></g></g></g><path
id="path1187-6"
d="m 135.5716,97.506816 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
@@ -356,10 +411,26 @@
y="150.36441"
x="23.226624"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve">L</text><path
id="path543"
d="M 52.720184,40.517054 V 247.35282"
style="fill:none;stroke:#000000;stroke-width:0.943818;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow2Lstart);marker-end:url(#Arrow2Lend)" /><path
xml:space="preserve">L</text><g
id="path543"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="M 52.248047,40.517578 V 247.35352 h 0.943359 V 40.517578 Z"
id="path24296" /><g
id="g24278"><g
id="path24288"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.648875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 56.908007,237.26298 -4.171198,11.34325 -4.171197,-11.34325 c 2.462673,1.81218 5.832037,1.80174 8.342395,0 z"
id="path24292" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="M 56.980469,236.94727 A 0.32446994,0.32446994 0 0 0 56.71875,237 c -2.399117,1.7219 -5.612526,1.73005 -7.960938,0.002 a 0.32446994,0.32446994 0 0 0 -0.496093,0.37305 l 4.169922,11.34375 a 0.32446994,0.32446994 0 0 0 0.609375,0 L 57.212891,237.375 a 0.32446994,0.32446994 0 0 0 -0.232422,-0.42773 z m -0.658203,0.9707 -3.585938,9.74805 -3.583984,-9.74219 c 2.229872,1.25339 4.912392,1.24591 7.169922,-0.006 z"
id="path24294" /></g><g
id="path24280"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.648875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 48.532361,50.60689 4.171198,-11.343244 4.171197,11.343244 c -2.462673,-1.812176 -5.832037,-1.801734 -8.342395,0 z"
id="path24284" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 52.703125,38.939453 a 0.32446994,0.32446994 0 0 0 -0.304688,0.212891 l -4.169921,11.341797 a 0.32446994,0.32446994 0 0 0 0.492187,0.376953 c 2.399117,-1.721894 5.612526,-1.730049 7.960938,-0.002 a 0.32446994,0.32446994 0 0 0 0.498046,-0.375 L 53.007812,39.152344 a 0.32446994,0.32446994 0 0 0 -0.304687,-0.212891 z m 0,1.263672 3.583984,9.744141 c -2.230526,-1.253714 -4.912035,-1.245056 -7.169922,0.0078 z"
id="path24286" /></g></g></g><path
id="path545"
d="m 45.672891,37.574352 h 24.62223"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

@@ -8,7 +8,7 @@
version="1.1"
id="svg5"
xml:space="preserve"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="bullnose.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
@@ -25,14 +25,14 @@
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.8494956"
inkscape:cx="194.82149"
inkscape:cy="672.75216"
inkscape:window-width="2818"
inkscape:window-height="1645"
inkscape:window-x="206"
inkscape:window-y="182"
inkscape:window-maximized="0"
inkscape:zoom="0.5190323"
inkscape:cx="55.873208"
inkscape:cy="654.10187"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
@@ -124,7 +124,11 @@
id="marker1181-3"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -133,7 +137,11 @@
id="marker1185-7"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -312,13 +320,45 @@
r="0.00054124615" /><path
id="path4538-5"
d="m 134.2508,269.93139 v -39.1469"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542-3"
d="M 73.706102,41.302361 H 130.358"
style="fill:none;stroke:#000000;stroke-width:0.721494;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1185)" /><path
id="path4548"
d="M 71.795735,257.68689 H 132.44583"
style="fill:none;stroke:#000000;stroke-width:0.52787;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1173);marker-end:url(#marker1177)" /><text
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path4542-3"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 73.707031,40.941406 v 0.722656 h 56.650389 v -0.722656 z"
id="path30807" /><g
id="g30789"><g
id="path30799"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.496027;stroke-linejoin:round;-inkscape-stroke:none"
d="m 122.64491,38.101014 8.67125,3.188638 -8.67125,3.188638 c 1.3853,-1.88257 1.37732,-4.458254 0,-6.377276 z"
id="path30803" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 122.73047,37.869141 a 0.2480383,0.2480383 0 0 0 -0.28711,0.376953 c 1.31629,1.833984 1.32298,4.290713 0.002,6.085937 a 0.2480383,0.2480383 0 0 0 0.28516,0.378906 l 8.67187,-3.189453 a 0.2480383,0.2480383 0 0 0 0,-0.464843 z m 0.41406,0.679687 7.45313,2.740234 -7.44922,2.740235 c 0.9585,-1.704825 0.9533,-3.754472 -0.004,-5.480469 z"
id="path30805" /></g><g
id="path30791"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.496027;stroke-linejoin:round;-inkscape-stroke:none"
d="m 81.419195,44.503708 -8.67125,-3.188638 8.671251,-3.188638 c -1.385304,1.88257 -1.377321,4.458254 -10e-7,6.377276 z"
id="path30795" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 81.333984,37.894531 -8.671875,3.1875 a 0.2480383,0.2480383 0 0 0 0,0.464844 l 8.671875,3.189453 a 0.2480383,0.2480383 0 0 0 0.28711,-0.376953 c -1.316287,-1.833985 -1.322983,-4.290714 -0.002,-6.085938 a 0.2480383,0.2480383 0 0 0 -0.285157,-0.378906 z m -0.419922,0.681641 c -0.957671,1.704846 -0.951587,3.754886 0.0059,5.480469 l -7.453125,-2.742188 z"
id="path30797" /></g></g></g><g
id="path4548"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 71.794922,257.42383 v 0.52734 h 60.650388 v -0.52734 z"
id="path30867" /><g
id="g30849"><g
id="path30859"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.362911;stroke-linejoin:round;-inkscape-stroke:none"
d="m 126.80266,255.34467 6.34419,2.33292 -6.34419,2.33292 c 1.01354,-1.37735 1.0077,-3.26181 0,-4.66584 z"
id="path30863" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 126.86523,255.17383 a 0.18147364,0.18147364 0 0 0 -0.21093,0.27734 c 0.96304,1.34182 0.96846,3.13773 0.002,4.45117 a 0.18147364,0.18147364 0 0 0 0.20898,0.2793 l 6.34375,-2.33398 a 0.18147364,0.18147364 0 0 0 0,-0.33985 z m 0.21485,0.46679 5.54101,2.03711 -5.54101,2.03711 c 0.73819,-1.27092 0.73518,-2.78629 0,-4.07422 z"
id="path30865" /></g><g
id="path30851"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.362911;stroke-linejoin:round;-inkscape-stroke:none"
d="m 77.438901,260.02911 -6.344187,-2.33292 6.344187,-2.33292 c -1.013535,1.37735 -1.007695,3.26181 0,4.66584 z"
id="path30855" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 77.376953,255.19336 -6.345703,2.33203 a 0.18147364,0.18147364 0 0 0 0,0.3418 l 6.345703,2.33203 a 0.18147364,0.18147364 0 0 0 0.208984,-0.27539 c -0.963041,-1.34182 -0.966509,-3.13968 0,-4.45313 a 0.18147364,0.18147364 0 0 0 -0.208984,-0.27734 z m -0.214844,0.46484 c -0.738592,1.27163 -0.736382,2.78787 0,4.07617 l -5.539062,-2.03906 z"
id="path30857" /></g></g></g><text
transform="scale(0.97131606,1.029531)"
id="shank_diameter"
y="51.767441"
@@ -355,20 +395,44 @@
x="161.83253" /></text><path
id="path4538-8"
d="m 69.475747,272.49174 v -39.1469"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path897-5"
d="M 150.78825,100.27512 V 248.60004"
style="fill:none;stroke:#000000;stroke-width:1.13395;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow2Lstart);marker-end:url(#Arrow2Lend)" /><path
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path897-5"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 150.2207,100.27539 v 148.32422 h 1.13477 V 100.27539 Z"
id="path30837" /><g
id="g30819"><g
id="path30829"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.779591;stroke-linejoin:round;-inkscape-stroke:none"
d="m 155.81971,236.47761 -5.01149,13.62834 -5.01148,-13.62834 c 2.95878,2.17724 7.0069,2.16469 10.02297,0 z"
id="path30833" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 155.90625,236.09766 a 0.38983449,0.38983449 0 0 0 -0.31445,0.0625 c -2.88242,2.06876 -6.74296,2.08012 -9.56446,0.004 a 0.38983449,0.38983449 0 0 0 -0.5957,0.44727 l 5.00977,13.6289 a 0.38983449,0.38983449 0 0 0 0.73242,0 l 5.01172,-13.6289 a 0.38983449,0.38983449 0 0 0 -0.2793,-0.51367 z m -0.79102,1.16601 -4.30664,11.71094 -4.30664,-11.70508 c 2.67931,1.50641 5.90064,1.49835 8.61328,-0.006 z"
id="path30835" /></g><g
id="path30821"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.779591;stroke-linejoin:round;-inkscape-stroke:none"
d="m 145.75679,112.39755 5.01149,-13.628337 5.01148,13.628337 c -2.95878,-2.17724 -7.0069,-2.16469 -10.02297,0 z"
id="path30825" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 150.76758,98.378906 a 0.38983449,0.38983449 0 0 0 -0.36524,0.25586 l -5.01172,13.628904 a 0.38983449,0.38983449 0 0 0 0.59375,0.45117 c 2.88242,-2.06876 6.74296,-2.08012 9.56446,-0.004 a 0.38983449,0.38983449 0 0 0 0.59765,-0.44727 l -5.01171,-13.628904 a 0.38983449,0.38983449 0 0 0 -0.36719,-0.25586 z m 0.002,1.521485 4.30274,11.703129 c -2.67873,-1.50457 -5.89979,-1.49579 -8.61133,0.008 z"
id="path30827" /></g></g></g><path
id="path1187-6"
d="m 135.31,97.506816 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path1189"
d="m 136.10025,249.94066 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4622"
d="M 86.412536,232.7212 74.219012,245.23131"
style="fill:none;stroke:#000000;stroke-width:0.540802;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1177)"
sodipodi:nodetypes="cc" /><text
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path4622"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 86.21875,232.5332 -12.193359,12.50977 0.386718,0.37695 12.19336,-12.50976 z"
id="path30747" /><g
id="g30737"><g
id="path30739"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.371801;stroke-linejoin:round;-inkscape-stroke:none"
d="m 79.972743,242.76607 -6.248201,2.9862 2.825095,-6.32268 c 0.285734,1.72851 1.672449,3.07178 3.423106,3.33648 z"
id="path30743" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 76.574219,239.24609 a 0.18591908,0.18591908 0 0 0 -0.19336,0.10743 l -2.826172,6.32226 a 0.18591908,0.18591908 0 0 0 0.25,0.24414 l 6.248047,-2.98633 A 0.18591908,0.18591908 0 0 0 80,242.58203 c -1.67308,-0.25297 -2.995101,-1.53528 -3.267578,-3.18359 a 0.18591908,0.18591908 0 0 0 -0.158203,-0.15235 z m -0.0059,0.59766 c 0.404884,1.45072 1.518948,2.53298 2.990235,2.91406 l -5.457032,2.60742 z"
id="path30745" /></g></g></g><text
transform="scale(0.97131606,1.029531)"
id="torus_radius"
y="279.48972"
@@ -388,10 +452,26 @@
y="141.97641"
x="22.918703"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve">L</text><path
id="path448"
d="M 51.313131,32.422497 V 247.0512"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow2Lstart-5);marker-end:url(#Arrow2Lend-5)" /><path
xml:space="preserve">L</text><g
id="path448"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="M 50.8125,32.421875 V 247.05078 h 1 V 32.421875 Z"
id="path30777" /><g
id="g30759"><g
id="path30769"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 55.75024,236.36075 -4.419494,12.01847 -4.419494,-12.01847 c 2.609267,1.92005 6.179198,1.90899 8.838988,0 z"
id="path30773" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 55.828125,236.02539 a 0.34378438,0.34378438 0 0 0 -0.279297,0.0566 c -2.541927,1.8244 -5.945389,1.83292 -8.433594,0.002 a 0.34378438,0.34378438 0 0 0 -0.527343,0.39454 l 4.419921,12.01953 a 0.34378438,0.34378438 0 0 0 0.646485,0 l 4.417969,-12.01953 a 0.34378438,0.34378438 0 0 0 -0.244141,-0.45313 z m -0.699219,1.0293 -3.796875,10.32617 -3.796875,-10.32031 c 2.362037,1.32667 5.202672,1.3197 7.59375,-0.006 z"
id="path30775" /></g><g
id="path30761"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 46.876022,43.112944 4.419494,-12.018465 4.419494,12.018465 c -2.609267,-1.920048 -6.179198,-1.908985 -8.838988,0 z"
id="path30765" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 51.294922,30.75 a 0.34378438,0.34378438 0 0 0 -0.322266,0.226562 l -4.419922,12.017579 a 0.34378438,0.34378438 0 0 0 0.523438,0.398437 c 2.541927,-1.824392 5.947343,-1.832916 8.435547,-0.002 a 0.34378438,0.34378438 0 0 0 0.52539,-0.396484 L 51.617187,30.976562 A 0.34378438,0.34378438 0 0 0 51.294922,30.75 Z m 0,1.339844 3.796875,10.322265 c -2.362311,-1.327535 -5.202157,-1.318037 -7.59375,0.0078 z"
id="path30767" /></g></g></g><path
id="path450"
d="m 45.359871,28.54287 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -7,7 +7,7 @@
width="210mm"
sodipodi:docname="chamfer.svg"
xml:space="preserve"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
@@ -26,14 +26,14 @@
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.0079712"
inkscape:cx="134.42844"
inkscape:cy="467.7713"
inkscape:window-width="2368"
inkscape:window-height="1509"
inkscape:window-x="121"
inkscape:window-y="417"
inkscape:window-maximized="0"
inkscape:zoom="0.46231963"
inkscape:cx="56.238148"
inkscape:cy="608.8861"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
@@ -71,9 +71,9 @@
refX="0"
id="marker7593"
style="overflow:visible"
viewBox="0 0 12.70584107 9.5264135"
markerWidth="12.70584107"
markerHeight="9.5264135"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -83,7 +83,11 @@
id="marker4880"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -355,13 +359,38 @@
id="g7053" /><path
id="path4538"
d="M 114.39915,270.09124 V 224.56122"
style="fill:none;stroke:#000000;stroke-width:0.487252;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542"
d="M 77.321236,58.014043 H 133.53382"
style="fill:none;stroke:#000000;stroke-width:0.682912;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186);marker-end:url(#marker4584)" /><path
id="path4548"
d="M 57.508557,258.30918 H 88.755451"
style="fill:none;stroke:#000000;stroke-width:1.35384;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4328)" /><text
style="fill:none;stroke:#000000;stroke-width:0.487252;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path4542"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 77.320312,57.671875 v 0.683594 H 133.5332 v -0.683594 z"
id="path38636" /><g
id="g38618"><g
id="path38628"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.469502;stroke-linejoin:round;-inkscape-stroke:none"
d="m 126.23319,54.983888 8.20755,3.018126 -8.20755,3.018125 c 1.31122,-1.7819 1.30366,-4.219848 0,-6.036251 z"
id="path38632" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 126.31445,54.763672 a 0.23477448,0.23477448 0 0 0 -0.27148,0.357422 c 1.24589,1.735913 1.25233,4.060541 0.002,5.759765 a 0.23477448,0.23477448 0 0 0 0.26953,0.359375 l 8.20703,-3.017578 a 0.23477448,0.23477448 0 0 0 0,-0.441406 z m 0.39258,0.644531 7.05274,2.59375 -7.04883,2.59375 c 0.90699,-1.613483 0.90184,-3.553977 -0.004,-5.1875 z"
id="path38634" /></g><g
id="path38620"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.469502;stroke-linejoin:round;-inkscape-stroke:none"
d="m 84.62187,61.044198 -8.207554,-3.018126 8.207555,-3.018125 c -1.311224,1.7819 -1.303669,4.219848 -10e-7,6.036251 z"
id="path38624" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 84.541016,54.787109 -8.207032,3.019532 a 0.23477448,0.23477448 0 0 0 0,0.439453 l 8.207032,3.017578 A 0.23477448,0.23477448 0 0 0 84.8125,60.908203 c -1.245899,-1.735913 -1.25234,-4.062494 -0.002,-5.761719 a 0.23477448,0.23477448 0 0 0 -0.269531,-0.359375 z m -0.396485,0.646485 c -0.906782,1.613566 -0.902057,3.554063 0.0039,5.1875 l -7.054687,-2.59375 z"
id="path38626" /></g></g></g><g
id="path4548"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 57.507812,257.63281 v 1.35352 h 31.248047 v -1.35352 z"
id="path38688" /><g
id="g38678"><g
id="path38680"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.930765;stroke-linejoin:round;-inkscape-stroke:none"
d="m 74.282297,252.30204 16.271078,5.98329 -16.271079,5.98329 c 2.599438,-3.53253 2.58446,-8.36564 10e-7,-11.96658 z"
id="path38684" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 74.443359,251.86523 a 0.46542902,0.46542902 0 0 0 -0.539062,0.70899 c 2.469935,3.44137 2.482737,8.04934 0.0039,11.41797 a 0.46542902,0.46542902 0 0 0 0.535156,0.71289 l 16.271485,-5.98242 a 0.46542902,0.46542902 0 0 0 0,-0.875 z m 0.775391,1.27735 13.984375,5.14258 -13.972656,5.13867 c 1.79668,-3.19859 1.78414,-7.04359 -0.01172,-10.28125 z"
id="path38686" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="shank_diameter"
y="52.456436"
@@ -389,10 +418,26 @@
style="fill:none;stroke:#000000;stroke-width:0.487252;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4548-6"
d="m 175.2226,223.90008 h 18.38097"
style="fill:none;stroke:#000000;stroke-width:0.592962;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="sesr3u8"
d="M 184.26391,219.30074 V 163.87586"
style="fill:none;stroke:#000000;stroke-width:1.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker5072)" /><text
style="fill:none;stroke:#000000;stroke-width:0.592962;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="sesr3u8"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 183.73242,163.875 v 55.42578 h 1.06445 V 163.875 Z"
id="path38606" /><g
id="g38588"><g
id="path38598"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.7315;stroke-linejoin:round;-inkscape-stroke:none"
d="m 179.54283,175.2505 4.70234,-12.78765 4.70234,12.78765 c -2.77626,-2.04294 -6.57467,-2.03116 -9.40468,0 z"
id="path38602" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 184.24609,162.09766 a 0.36578659,0.36578659 0 0 0 -0.34375,0.23828 l -4.70312,12.78906 a 0.36578659,0.36578659 0 0 0 0.55664,0.42187 c 2.7046,-1.94115 6.32716,-1.9501 8.97461,-0.002 a 0.36578659,0.36578659 0 0 0 0.56055,-0.41992 l -4.70313,-12.78906 a 0.36578659,0.36578659 0 0 0 -0.3418,-0.23828 z m 0,1.42382 4.03711,10.98243 c -2.51325,-1.41147 -5.53406,-1.40076 -8.07812,0.01 z"
id="path38604" /></g><g
id="path38590"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.7315;stroke-linejoin:round;-inkscape-stroke:none"
d="m 188.98499,207.9261 -4.70234,12.78765 -4.70234,-12.78765 c 2.77626,2.04294 6.57467,2.03116 9.40468,0 z"
id="path38594" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 189.06641,207.57031 a 0.36578659,0.36578659 0 0 0 -0.29493,0.0586 c -2.7046,1.94115 -6.32716,1.9501 -8.97461,0.002 a 0.36578659,0.36578659 0 0 0 -0.56054,0.42187 l 4.70312,12.78711 a 0.36578659,0.36578659 0 0 0 0.68555,0 l 4.70312,-12.78711 a 0.36578659,0.36578659 0 0 0 -0.26171,-0.48242 z m -0.74024,1.0918 -4.04297,10.99414 -4.03906,-10.98438 c 2.51392,1.41224 5.53739,1.40177 8.08203,-0.01 z"
id="path38596" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="cutting_edge_height"
y="147.42612"
@@ -408,10 +453,26 @@
style="fill:none;stroke:#000000;stroke-width:0.987384;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path938"
d="m 19.64521,223.34176 h 83.99998"
style="fill:none;stroke:#000000;stroke-width:0.757536;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path940"
d="M 28.028504,219.65219 V 84.84232"
style="fill:none;stroke:#000000;stroke-width:1.17078;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker5072)" /><text
style="fill:none;stroke:#000000;stroke-width:0.757536;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path940"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="M 27.443359,84.841797 V 219.65234 h 1.169922 V 84.841797 Z"
id="path38666" /><g
id="g38648"><g
id="path38658"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.804911;stroke-linejoin:round;-inkscape-stroke:none"
d="m 22.833626,97.35848 5.174255,-14.070977 5.174254,14.070978 c -3.054877,-2.247954 -7.23448,-2.235001 -10.348509,-10e-7 z"
id="path38662" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 28.007812,82.884766 a 0.40249575,0.40249575 0 0 0 -0.376953,0.263671 L 22.455078,97.21875 a 0.40249575,0.40249575 0 0 0 0.613281,0.466797 c 2.976038,-2.135961 6.961861,-2.145608 9.875,-0.002 A 0.40249575,0.40249575 0 0 0 33.560547,97.21875 L 28.384766,83.148437 a 0.40249575,0.40249575 0 0 0 -0.376954,-0.263671 z m 0,1.566406 4.445313,12.08789 c -2.766561,-1.554991 -6.091938,-1.543807 -8.892578,0.0098 z"
id="path38664" /></g><g
id="path38650"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.804911;stroke-linejoin:round;-inkscape-stroke:none"
d="m 33.223382,207.13603 -5.174255,14.07098 -5.174254,-14.07098 c 3.054877,2.24795 7.23448,2.235 10.348509,0 z"
id="path38654" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 33.314453,206.74414 a 0.40249575,0.40249575 0 0 0 -0.326172,0.0645 c -2.976037,2.13596 -6.961861,2.14756 -9.875,0.004 a 0.40249575,0.40249575 0 0 0 -0.615234,0.46289 l 5.173828,14.07031 a 0.40249575,0.40249575 0 0 0 0.755859,0 l 5.173828,-14.07031 a 0.40249575,0.40249575 0 0 0 -0.287109,-0.53125 z m -0.818359,1.20313 -4.447266,12.09375 -4.445312,-12.08594 c 2.765887,1.55484 6.092211,1.54457 8.892578,-0.008 z"
id="path38656" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="length"
y="153.26979"
@@ -428,14 +489,38 @@
id="path4520"
d="M 74.787333,81.578179 V 159.26884 H 39.23214 l 54.033818,63.69413 h 20.628002 l 57.65522,-63.69413 H 136.27493 V 81.578179"
style="fill:#e4e4e4;fill-opacity:0.11114;stroke:#000000;stroke-width:1.84358;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cccccccc" /><path
id="path1"
d="m 117.83358,258.30918 h 31.24691"
style="fill:none;stroke:#000000;stroke-width:1.35384;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><path
d="m 68.609456,190.97292 c 21.466611,-11.73025 52.098084,-11.48475 70.198734,0"
id="path5698"
style="fill:none;fill-opacity:1;stroke:#000025;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Lstart-3);marker-end:url(#Arrow2Lend-7)"
sodipodi:nodetypes="cc" /><text
sodipodi:nodetypes="cccccccc" /><g
id="path1"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 117.83398,257.63281 v 1.35352 h 31.2461 v -1.35352 z"
id="path38710" /><g
id="g38700"><g
id="path38702"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.930765;stroke-linejoin:round;-inkscape-stroke:none"
d="m 132.30673,264.31632 -16.27107,-5.98329 16.27108,-5.98329 c -2.59944,3.53253 -2.58447,8.36564 -1e-5,11.96658 z"
id="path38706" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 132.14648,251.91211 -16.27148,5.98437 a 0.46542902,0.46542902 0 0 0 0,0.87305 l 16.27148,5.98438 a 0.46542902,0.46542902 0 0 0 0.53907,-0.70899 c -2.46994,-3.44137 -2.48274,-8.05129 -0.004,-11.41992 a 0.46542902,0.46542902 0 0 0 -0.53516,-0.71289 z m -0.78711,1.2832 c -1.79647,3.19783 -1.7867,7.04197 0.008,10.2793 l -13.98438,-5.14258 z"
id="path38708" /></g></g></g><g
id="path5698"><path
style="color:#000000;fill:#000025;-inkscape-stroke:none"
d="m 104.97266,181.75 c -12.681806,-0.0301 -25.781118,2.86939 -36.603519,8.7832 l 0.480468,0.87891 c 21.288378,-11.63286 51.803521,-11.36733 69.691411,-0.0176 l 0.53515,-0.84375 c -9.15669,-5.80986 -21.42171,-8.77065 -34.10351,-8.80078 z"
id="path38740" /><g
id="g38722"><g
id="path38732"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 132.15862,181.49891 7.78035,10.17062 -12.51585,-2.70719 c 3.01916,-1.17453 4.92242,-4.19482 4.7355,-7.46343 z"
id="path38736" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 132.03906,181.17578 a 0.34378438,0.34378438 0 0 0 -0.22265,0.3418 c 0.17863,3.12377 -1.6385,6.00496 -4.51758,7.125 a 0.34378438,0.34378438 0 0 0 0.0508,0.65625 l 12.51758,2.70703 a 0.34378438,0.34378438 0 0 0 0.3457,-0.54492 l -7.78125,-10.16992 a 0.34378438,0.34378438 0 0 0 -0.39258,-0.11524 z m 0.3711,1.21875 6.6875,8.74219 -10.75,-2.32617 c 2.38595,-1.28359 3.90071,-3.6867 4.0625,-6.41602 z"
id="path38738" /></g><g
id="path38724"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 80.118337,189.74034 -12.665812,1.88485 8.427345,-9.64133 c -0.433708,3.21041 1.287852,6.33783 4.238467,7.75648 z"
id="path38728" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 75.878906,181.64062 a 0.34378438,0.34378438 0 0 0 -0.257812,0.11719 l -8.427735,9.64063 a 0.34378438,0.34378438 0 0 0 0.310547,0.5664 l 12.664063,-1.88476 a 0.34378438,0.34378438 0 0 0 0.09961,-0.65039 c -2.819864,-1.35579 -4.46046,-4.33894 -4.046875,-7.40039 a 0.34378438,0.34378438 0 0 0 -0.341797,-0.38868 z m -0.314453,1.22657 c -0.03168,2.70929 1.338188,5.19754 3.648438,6.66015 l -10.886719,1.6211 z"
id="path38730" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="cutting_edge_angle"
y="175.6073"

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -7,7 +7,7 @@
width="210mm"
sodipodi:docname="dovetail.svg"
xml:space="preserve"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
@@ -26,14 +26,14 @@
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.8926347"
inkscape:cx="275.58866"
inkscape:cy="567.9815"
inkscape:window-width="2793"
inkscape:window-height="1474"
inkscape:window-x="1047"
inkscape:window-y="106"
inkscape:window-maximized="0"
inkscape:zoom="0.29929945"
inkscape:cx="136.98655"
inkscape:cy="1184.4325"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
@@ -70,7 +70,11 @@
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"><path
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
@@ -79,7 +83,11 @@
id="marker4880"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -482,13 +490,45 @@
style="fill:none;stroke:#000000;stroke-width:0.806685;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4538"
d="M 169.34872,272.73189 V 225.4483"
style="fill:none;stroke:#000000;stroke-width:0.517182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542"
d="M 71.455286,43.051593 H 135.42065"
style="fill:none;stroke:#000000;stroke-width:0.75876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186-7);marker-end:url(#marker4584-3)" /><path
id="path4548"
d="m 39.88582,261.39896 h 126.8202"
style="fill:none;stroke:#000000;stroke-width:0.75546;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3948-9);marker-end:url(#marker4328-2)" /><text
style="fill:none;stroke:#000000;stroke-width:0.517182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path4542"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 71.455078,42.671875 v 0.759766 h 63.964842 v -0.759766 z"
id="path49466" /><g
id="g49448"><g
id="path49458"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.521648;stroke-linejoin:round;-inkscape-stroke:none"
d="m 127.30917,39.684892 9.11913,3.353336 -9.11913,3.353334 c 1.45685,-1.979807 1.44846,-4.688527 0,-6.70667 z"
id="path49462" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 127.39844,39.439453 a 0.26085008,0.26085008 0 0 0 -0.30078,0.398438 c 1.38427,1.928713 1.39121,4.510488 0.002,6.398437 a 0.26085008,0.26085008 0 0 0 0.29883,0.400391 l 9.11914,-3.353516 a 0.26085008,0.26085008 0 0 0 0,-0.490234 z m 0.43554,0.716797 7.83789,2.882812 -7.83007,2.878907 c 1.00645,-1.792463 0.99845,-3.94748 -0.008,-5.761719 z"
id="path49464" /></g><g
id="path49450"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.521648;stroke-linejoin:round;-inkscape-stroke:none"
d="m 79.566769,46.418294 -9.11913,-3.353336 9.11913,-3.353334 c -1.456855,1.979807 -1.448461,4.688527 0,6.70667 z"
id="path49454" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 79.476562,39.466797 -9.11914,3.353515 a 0.26085008,0.26085008 0 0 0 0,0.490235 l 9.11914,3.353515 a 0.26085008,0.26085008 0 0 0 0.302735,-0.398437 c -1.384276,-1.928713 -1.391214,-4.512441 -0.002,-6.400391 a 0.26085008,0.26085008 0 0 0 -0.300782,-0.398437 z m -0.441406,0.71875 c -1.006529,1.792354 -1.000195,3.947473 0.0059,5.761719 l -7.837891,-2.88086 z"
id="path49456" /></g></g></g><g
id="path4548"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 39.886719,261.02148 v 0.75586 H 166.70508 v -0.75586 z"
id="path49994" /><g
id="g49976"><g
id="path49986"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.519379;stroke-linejoin:round;-inkscape-stroke:none"
d="m 158.62981,258.0469 9.07947,3.33875 -9.07947,3.33875 c 1.45052,-1.97119 1.44217,-4.66813 0,-6.6775 z"
id="path49990" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 158.71875,257.80273 a 0.25971548,0.25971548 0 0 0 -0.30078,0.39649 c 1.37826,1.92033 1.38517,4.49136 0.002,6.37109 a 0.25971548,0.25971548 0 0 0 0.29883,0.39844 l 9.08008,-3.33984 a 0.25971548,0.25971548 0 0 0 0,-0.48633 z m 0.43359,0.71289 7.80469,2.8711 -7.79687,2.86719 c 1.00253,-1.78469 0.99402,-3.9317 -0.008,-5.73829 z"
id="path49992" /></g><g
id="path49978"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.519379;stroke-linejoin:round;-inkscape-stroke:none"
d="m 47.962025,264.75102 -9.07947,-3.33875 9.079471,-3.33875 c -1.45052,1.97119 -1.442162,4.66813 -1e-6,6.6775 z"
id="path49982" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 47.873047,257.83008 -9.080078,3.33789 a 0.25971548,0.25971548 0 0 0 0,0.48828 l 9.080078,3.33789 a 0.25971548,0.25971548 0 0 0 0.300781,-0.39453 c -1.378255,-1.92033 -1.385172,-4.49332 -0.002,-6.37305 a 0.25971548,0.25971548 0 0 0 -0.298828,-0.39648 z m -0.439453,0.71289 c -1.004018,1.78542 -0.996936,3.93268 0.0059,5.74023 l -7.802734,-2.87109 z"
id="path49984" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="shank_diameter"
y="37.599888"
@@ -508,13 +548,28 @@
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.28362"
y="281.67874"
x="92.846893"
id="tspan5690">D</tspan></text><path
d="m 19.298339,235.76619 c 1.429535,1.36553 3.735303,3.55705 4.975082,5.64798 1.514039,2.5534 1.841147,5.00887 2.070406,6.27699"
id="tspan5690">D</tspan></text><g
id="path5698"
style="fill:none;fill-opacity:1;stroke:#000025;stroke-width:0.448218;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Lstart-0-7);marker-end:url(#Arrow2Lend-3-3)"
inkscape:transform-center-x="-2.9755719"
inkscape:transform-center-y="-1.0728163"
sodipodi:nodetypes="csc" /><text
inkscape:transform-center-y="-1.0728163"><path
style="color:#000000;fill:#000025;-inkscape-stroke:none"
d="m 19.453125,235.60352 -0.310547,0.32421 c 1.429969,1.36595 3.724857,3.5564 4.9375,5.60157 1.489112,2.51136 1.811339,4.91994 2.042969,6.20117 l 0.441406,-0.0801 c -0.226888,-1.255 -0.558693,-3.75418 -2.097656,-6.34961 -1.266912,-2.13669 -3.584574,-4.33215 -5.013672,-5.69726 z"
id="path49544" /><g
id="g49526"><g
id="path49536"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.30815;stroke-linejoin:round;-inkscape-stroke:none"
d="m 27.448447,242.62213 -0.990956,5.65337 -2.907639,-4.94855 c 1.303967,0.63881 2.877667,0.34927 3.898595,-0.70482 z"
id="path49540" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 27.455078,242.46875 a 0.1540904,0.1540904 0 0 0 -0.117187,0.0469 c -0.975688,1.00739 -2.477237,1.283 -3.720704,0.67383 a 0.1540904,0.1540904 0 0 0 -0.199218,0.21485 l 2.90625,4.94922 a 0.1540904,0.1540904 0 0 0 0.285156,-0.0508 l 0.990234,-5.65429 a 0.1540904,0.1540904 0 0 0 -0.144531,-0.17969 z m -0.210937,0.42773 -0.865235,4.94141 -2.539062,-4.32422 c 1.173969,0.42445 2.4394,0.19276 3.404297,-0.61719 z"
id="path49542" /></g><g
id="path49528"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.30815;stroke-linejoin:round;-inkscape-stroke:none"
d="m 21.389502,240.51406 -2.527041,-5.15331 5.263584,2.2885 c -1.430135,0.25124 -2.531797,1.41172 -2.736543,2.86481 z"
id="path49532" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 18.923828,235.21875 a 0.1540904,0.1540904 0 0 0 -0.199219,0.20898 l 2.527344,5.1543 a 0.1540904,0.1540904 0 0 0 0.291016,-0.0469 c 0.195673,-1.3887 1.245595,-2.4948 2.609375,-2.73438 a 0.1540904,0.1540904 0 0 0 0.03516,-0.29297 z m 0.259766,0.44922 4.599609,2 c -1.199036,0.34743 -2.086867,1.2795 -2.390625,2.50195 z"
id="path49534" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="cutting_angle"
y="260.09406"
@@ -540,10 +595,19 @@
id="path4548-6"
d="m 139.2642,185.32115 h 55.29328"
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path4538-7"
d="M 184.18135,244.02043 V 226.4704"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" /><text
sodipodi:nodetypes="cc" /><g
id="path4538-7"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 183.81055,226.4707 v 17.54883 h 0.74023 V 226.4707 Z"
id="path50222" /><g
id="g50212"><g
id="path50214"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.508709;stroke-linejoin:round;-inkscape-stroke:none"
d="m 180.89815,234.3807 3.27017,-8.89296 3.27016,8.89296 c -1.9307,-1.42072 -4.57224,-1.41254 -6.54033,0 z"
id="path50218" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 184.16797,225.23437 a 0.25437994,0.25437994 0 0 0 -0.23828,0.16602 l -3.26953,8.89258 a 0.25437994,0.25437994 0 0 0 0.38671,0.29492 c 1.88088,-1.34995 4.39912,-1.35675 6.24024,-0.002 a 0.25437994,0.25437994 0 0 0 0.39062,-0.29297 l -3.27148,-8.89258 a 0.25437994,0.25437994 0 0 0 -0.23828,-0.16602 z m 0,0.99024 2.80859,7.63867 c -1.74828,-0.98203 -3.84954,-0.97583 -5.61914,0.006 z"
id="path50220" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="dovetail_height"
y="210.32556"
@@ -563,10 +627,19 @@
sodipodi:nodetypes="ccccc" /><path
id="path128465"
d="m 169.78487,224.47604 h 24.60161"
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path130891"
d="M 184.18135,183.1661 V 165.61607"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186)" /><path
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path130891"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 183.81055,165.61523 v 17.55079 h 0.74023 v -17.55079 z"
id="path50236" /><g
id="g50226"><g
id="path50228"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.508709;stroke-linejoin:round;-inkscape-stroke:none"
d="m 187.46455,175.2558 -3.27017,8.89296 -3.27016,-8.89296 c 1.9307,1.42072 4.57224,1.41254 6.54033,0 z"
id="path50232" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 187.52148,175.00781 a 0.25437994,0.25437994 0 0 0 -0.20507,0.041 c -1.88088,1.34994 -4.40107,1.35675 -6.24219,0.002 a 0.25437994,0.25437994 0 0 0 -0.38867,0.29297 l 3.26953,8.89258 a 0.25437994,0.25437994 0 0 0 0.47851,0 l 3.26953,-8.89258 a 0.25437994,0.25437994 0 0 0 -0.18164,-0.33594 z m -0.51562,0.75977 -2.81055,7.64258 -2.81054,-7.63672 c 1.74855,0.9829 3.85097,0.97611 5.62109,-0.006 z"
id="path50234" /></g></g></g><path
style="fill:none;stroke:#000000;stroke-width:0.389415;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 37.217354,217.10856 -19.77792,-0.0345"
id="path140257"
@@ -574,13 +647,31 @@
style="fill:none;stroke:#000000;stroke-width:0.480086;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 36.400065,225.03912 5.692084,225.02256"
id="path140655"
sodipodi:nodetypes="cc" /><path
id="path149716"
d="m 127.43984,128.01978 v 0 h 20.17804"
style="fill:none;stroke:#000000;stroke-width:0.60268;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4732-6)" /><path
id="path149718"
d="m 62.19167,128.01978 v 0 h 17.599515"
style="fill:none;stroke:#000000;stroke-width:0.562856;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880-0)" /><text
sodipodi:nodetypes="cc" /><g
id="path149716"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 127.43945,127.71875 v 0.60156 h 20.17774 v -0.60156 z"
id="path49402" /><g
id="g49392"><g
id="path49394"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.414343;stroke-linejoin:round;-inkscape-stroke:none"
d="m 133.88276,130.69394 -7.24329,-2.66354 7.24329,-2.66354 c -1.15718,1.57255 -1.15051,3.72407 0,5.32708 z"
id="path49398" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 133.81055,125.17188 -7.24219,2.66406 a 0.20719222,0.20719222 0 0 0 0,0.38867 l 7.24219,2.66406 a 0.20719222,0.20719222 0 0 0 0.24023,-0.3164 c -1.09953,-1.53198 -1.10544,-3.58245 -0.002,-5.08204 a 0.20719222,0.20719222 0 0 0 -0.23828,-0.31835 z m -0.24414,0.53125 c -0.84336,1.45175 -0.84057,3.18338 0,4.65429 l -6.32618,-2.32617 z"
id="path49400" /></g></g></g><g
id="path149718"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 62.191406,127.73828 v 0.5625 h 17.59961 v -0.5625 z"
id="path49416" /><g
id="g49406"><g
id="path49408"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.386964;stroke-linejoin:round;-inkscape-stroke:none"
d="m 73.774003,125.52233 6.764665,2.48754 -6.764666,2.48753 c 1.080711,-1.46864 1.074484,-3.47799 10e-7,-4.97507 z"
id="path49412" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 73.839844,125.33984 a 0.19350134,0.19350134 0 0 0 -0.222657,0.29493 c 1.02687,1.43074 1.032523,3.34754 0.002,4.74804 a 0.19350134,0.19350134 0 0 0 0.220703,0.29688 l 6.765625,-2.48828 a 0.19350134,0.19350134 0 0 0 0,-0.36328 z m 0.230468,0.4961 5.908204,2.17383 -5.908204,2.17382 c 0.788054,-1.35622 0.785674,-2.97363 0,-4.34765 z"
id="path49414" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="neck_diameter"
y="136.29568"
@@ -597,10 +688,19 @@
style="fill:url(#linearGradient2124);fill-opacity:1;stroke:none;stroke-width:0.20844px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 92.096736,185.73606 -7.24171,37.32972 H 69.928559 l 13.83763,-37.32972 z"
id="path1726"
sodipodi:nodetypes="ccccc" /><path
id="path12753"
d="M 31.781364,244.5496 V 226.99957"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" /><text
sodipodi:nodetypes="ccccc" /><g
id="path12753"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 31.412109,227 v 17.54883 h 0.738282 V 227 Z"
id="path49522" /><g
id="g49512"><g
id="path49514"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.508709;stroke-linejoin:round;-inkscape-stroke:none"
d="m 28.498165,234.90987 3.270165,-8.89296 3.270164,8.89296 c -1.930703,-1.42072 -4.572241,-1.41254 -6.540329,0 z"
id="path49518" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 31.767578,225.76172 a 0.25437994,0.25437994 0 0 0 -0.238281,0.16797 l -3.269531,8.89258 a 0.25437994,0.25437994 0 0 0 0.386718,0.29492 c 1.880876,-1.34995 4.401064,-1.35676 6.242188,-0.002 a 0.25437994,0.25437994 0 0 0 0.388672,-0.29296 l -3.269532,-8.89258 a 0.25437994,0.25437994 0 0 0 -0.240234,-0.16797 z m 0,0.99414 2.808594,7.63476 c -1.748197,-0.98175 -3.849707,-0.97378 -5.619141,0.008 z"
id="path49520" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="crest"
y="189.73468"
@@ -610,16 +710,43 @@
y="189.73468"
x="21.637808"
id="tspan12755"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">C</tspan></text><path
id="path12759"
d="M 31.781364,215.44529 V 197.89526"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186)" /><path
id="path13291"
d="M 11.143866,123.62717 V 73.232952"
style="fill:none;stroke:#000000;stroke-width:1.25385;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" /><path
id="path13689"
d="M 11.143866,221.52029 V 170.03653"
style="fill:none;stroke:#000000;stroke-width:1.26734;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186)" /><text
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">C</tspan></text><g
id="path12759"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 31.412109,197.89453 v 17.55078 h 0.738282 v -17.55078 z"
id="path49508" /><g
id="g49498"><g
id="path49500"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.508709;stroke-linejoin:round;-inkscape-stroke:none"
d="m 35.064563,207.53499 -3.270165,8.89296 -3.270164,-8.89296 c 1.930703,1.42072 4.572241,1.41254 6.540329,0 z"
id="path49504" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 35.121094,207.28711 a 0.25437994,0.25437994 0 0 0 -0.205078,0.041 c -1.880876,1.34995 -4.399111,1.35676 -6.240235,0.002 a 0.25437994,0.25437994 0 0 0 -0.390625,0.29297 l 3.271485,8.89257 a 0.25437994,0.25437994 0 0 0 0.476562,0 l 3.269531,-8.89257 a 0.25437994,0.25437994 0 0 0 -0.18164,-0.33594 z m -0.515625,0.75976 -2.810547,7.64454 -2.808594,-7.63868 c 1.748285,0.98204 3.849543,0.97583 5.619141,-0.006 z"
id="path49506" /></g></g></g><g
id="path13291"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 10.517578,73.232422 v 50.394528 h 1.253906 V 73.232422 Z"
id="path49480" /><g
id="g49470"><g
id="path49472"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.862022;stroke-linejoin:round;-inkscape-stroke:none"
d="M 5.5803973,86.637168 11.12178,71.567816 16.663161,86.637169 c -3.271629,-2.407452 -7.7477858,-2.393581 -11.0827637,-10e-7 z"
id="path49476" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 11.121094,71.136719 a 0.43105409,0.43105409 0 0 0 -0.404297,0.283203 L 5.1757812,86.488281 a 0.43105409,0.43105409 0 0 0 0.65625,0.5 c 3.1871954,-2.287513 7.4563378,-2.299659 10.5761718,-0.0039 a 0.43105409,0.43105409 0 0 0 0.660156,-0.496094 L 11.525391,71.419922 a 0.43105409,0.43105409 0 0 0 -0.404297,-0.283203 z m 0,1.679687 4.759765,12.941406 c -2.962452,-1.664393 -6.5246698,-1.651581 -9.5234371,0.01172 z"
id="path49478" /></g></g></g><g
id="path13689"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 10.509766,170.03711 v 51.48242 h 1.267578 v -51.48242 z"
id="path49494" /><g
id="g49484"><g
id="path49486"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.871296;stroke-linejoin:round;-inkscape-stroke:none"
d="M 16.767191,207.97186 11.16619,223.20334 5.5651894,207.97186 c 3.3068283,2.43335 7.8311436,2.41933 11.2020016,0 z"
id="path49490" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 16.865234,207.54687 a 0.43569156,0.43569156 0 0 0 -0.351562,0.0703 c -3.221486,2.31212 -7.5360527,2.32435 -10.6894533,0.004 A 0.43569156,0.43569156 0 0 0 5.15625,208.12305 l 5.601563,15.23047 a 0.43569156,0.43569156 0 0 0 0.816406,0 l 5.601562,-15.23047 a 0.43569156,0.43569156 0 0 0 -0.310547,-0.57618 z m -0.886718,1.30274 -4.8125,13.09375 -4.8105473,-13.08399 c 2.993643,1.68166 6.5925433,1.67036 9.6230473,-0.01 z"
id="path49492" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="length"
y="152.73724"
@@ -641,10 +768,19 @@
style="fill:none;stroke:#000000;stroke-width:0.497831;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 80.961631,184.29301 -33.019962,-0.0166"
id="path17384"
sodipodi:nodetypes="cc" /><path
id="path17386"
d="M 57.181365,131.83693 V 114.2869"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" /><text
sodipodi:nodetypes="cc" /><g
id="path17386"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 56.810547,114.28711 v 17.55078 h 0.740234 v -17.55078 z"
id="path49430" /><g
id="g49420"><g
id="path49422"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.508709;stroke-linejoin:round;-inkscape-stroke:none"
d="m 53.898166,122.1972 3.270165,-8.89296 3.270164,8.89296 c -1.930703,-1.42072 -4.572241,-1.41254 -6.540329,0 z"
id="path49426" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 57.167969,113.05078 a 0.25437994,0.25437994 0 0 0 -0.238282,0.16602 l -3.269531,8.89258 a 0.25437994,0.25437994 0 0 0 0.386719,0.29492 c 1.880876,-1.34995 4.39911,-1.35676 6.240234,-0.002 a 0.25437994,0.25437994 0 0 0 0.390625,-0.29296 L 57.40625,113.2168 a 0.25437994,0.25437994 0 0 0 -0.238281,-0.16602 z m 0,0.99024 2.808593,7.63867 c -1.748284,-0.98204 -3.849542,-0.97583 -5.61914,0.006 z"
id="path49428" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="neck_length"
y="154.40077"
@@ -654,7 +790,16 @@
y="154.40077"
x="49.832695"
id="tspan17388"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">h</tspan></text><path
id="path17392"
d="M 57.181365,182.10773 V 164.55771"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186)" /></svg>
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">h</tspan></text><g
id="path17392"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 56.810547,164.55859 v 17.54883 h 0.740234 v -17.54883 z"
id="path49444" /><g
id="g49434"><g
id="path49436"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.508709;stroke-linejoin:round;-inkscape-stroke:none"
d="m 60.464564,174.19743 -3.270165,8.89296 -3.270164,-8.89296 c 1.930703,1.42072 4.572241,1.41254 6.540329,0 z"
id="path49440" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 60.521484,173.94922 a 0.25437994,0.25437994 0 0 0 -0.205078,0.041 c -1.880876,1.34995 -4.401063,1.35676 -6.242187,0.002 a 0.25437994,0.25437994 0 0 0 -0.388672,0.29297 l 3.269531,8.89257 a 0.25437994,0.25437994 0 0 0 0.478516,0 l 3.269531,-8.89257 a 0.25437994,0.25437994 0 0 0 -0.181641,-0.33594 z m -0.515625,0.75976 -2.810547,7.64258 -2.810546,-7.63672 c 1.748559,0.9829 3.85098,0.97612 5.621093,-0.006 z"
id="path49442" /></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 49 KiB

View File

@@ -6,7 +6,7 @@
height="297mm"
width="210mm"
sodipodi:docname="drill.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
@@ -24,15 +24,15 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2340"
inkscape:window-height="1659"
inkscape:window-width="1680"
inkscape:window-height="1050"
id="namedview45"
showgrid="false"
inkscape:zoom="0.35355339"
inkscape:cx="-80.610173"
inkscape:cy="442.64885"
inkscape:window-x="1500"
inkscape:window-y="263"
inkscape:cx="-82.024387"
inkscape:cy="446.89149"
inkscape:window-x="1680"
inkscape:window-y="1050"
inkscape:window-maximized="0"
inkscape:current-layer="layer1"
inkscape:showpageshadow="2"
@@ -66,14 +66,14 @@
offset="1"
id="stop17" /></linearGradient><marker
orient="auto"
refY="0.0"
refX="0.0"
refY="0"
refX="0"
id="marker8709"
style="overflow:visible;"><path
style="overflow:visible"><path
id="path8707"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" /></marker><marker
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0.0"
refX="0.0"
@@ -84,14 +84,14 @@
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" /></marker><marker
orient="auto"
refY="0.0"
refX="0.0"
refY="0"
refX="0"
id="marker8617"
style="overflow:visible"><path
id="path8615"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) translate(12.5,0)" /></marker><marker
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
@@ -101,23 +101,23 @@
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
style="overflow:visible;"
style="overflow:visible"
id="Arrow1Lend"
refX="0.0"
refY="0.0"
refX="0"
refY="0"
orient="auto"><path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path841" /></marker><marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0.0"
refY="0.0"
refX="0"
refY="0"
orient="auto"><path
transform="scale(0.8) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path838" /></marker><marker
orient="auto"
refY="0"
@@ -176,17 +176,59 @@
y1="244.90494"
x2="123.34863"
y2="244.90494"
gradientUnits="userSpaceOnUse" /></defs><metadata
gradientUnits="userSpaceOnUse" /><marker
style="overflow:visible"
id="marker1181"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1179" /></marker><marker
style="overflow:visible"
id="marker1177"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1175" /></marker></defs><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
id="layer1"><path
id="path834"
d="m 144.3418,237 v 0 l 10,-10 -50.0001,50.00001 L 54.341681,227 v 0 0"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
d="m 62.461636,234.03418 a 60,60 0 0 1 84.200524,0.43363"
id="path836"
style="opacity:1;fill:none;fill-opacity:0.137255;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow1Lstart);marker-end:url(#Arrow1Lend)" /><path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path836"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 104.65234,216.50391 c -15.339196,-0.079 -30.706694,5.63849 -42.539059,17.17187 l 0.697266,0.7168 c 23.281595,-22.69332 60.451423,-22.50222 83.498043,0.42969 l 0.70703,-0.70899 C 135.30268,222.45864 119.99154,216.5829 104.65234,216.50391 Z"
id="path123630" /><g
id="g123612"><g
id="path123622"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 142.21371,223.78208 5.40227,11.60995 -11.63677,-5.34427 c 3.20149,-0.49534 5.71166,-3.03376 6.2345,-6.26568 z"
id="path123626" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 142.16602,223.44141 a 0.34378438,0.34378438 0 0 0 -0.29102,0.28515 c -0.49967,3.08871 -2.89627,5.51007 -5.94922,5.98242 a 0.34378438,0.34378438 0 0 0 -0.0898,0.65039 l 11.63672,5.34571 a 0.34378438,0.34378438 0 0 0 0.45507,-0.45899 l -5.40234,-11.60937 a 0.34378438,0.34378438 0 0 0 -0.35937,-0.19531 z m 0.10156,1.26953 4.64258,9.97851 -9.9961,-4.58984 c 2.60789,-0.73828 4.6068,-2.75739 5.35352,-5.38867 z"
id="path123628" /></g><g
id="path123614"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 73.214132,229.74963 -11.69119,5.22412 5.521562,-11.55369 c 0.446334,3.20868 2.946074,5.75737 6.169628,6.32957 z"
id="path123618" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 67.097656,223.08008 a 0.34378438,0.34378438 0 0 0 -0.363281,0.1914 l -5.521484,11.55469 a 0.34378438,0.34378438 0 0 0 0.451171,0.46094 l 11.689454,-5.22461 a 0.34378438,0.34378438 0 0 0 -0.08008,-0.65039 c -3.080709,-0.54684 -5.463046,-2.97926 -5.888671,-6.03906 a 0.34378438,0.34378438 0 0 0 -0.28711,-0.29297 z m -0.11914,1.27734 c 0.699253,2.61727 2.688144,4.64521 5.30664,5.43164 l -10.048828,4.49024 z"
id="path123620" /></g></g></g><path
id="path8569"
d="M 84.341681,36.999999 V 17 17"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
@@ -198,14 +240,38 @@
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path8575"
d="m 104.3417,277.00001 h 70.0001"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path8577"
d="m 164.3418,41.018316 0,232.988274"
style="fill:none;stroke:#000000;stroke-width:1.09352;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker8617);marker-end:url(#marker8709)"
sodipodi:nodetypes="cc" /><path
id="path8579"
d="m 124.3418,27 h 30"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker8589)" /><text
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path8577"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="M 163.79492,41.017578 V 274.00586 h 1.09375 V 41.017578 Z"
id="path123660" /><g
id="g123642"><g
id="path123652"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.751795;stroke-linejoin:round;-inkscape-stroke:none"
d="m 169.19387,262.31637 -4.83281,13.14243 -4.8328,-13.14243 c 2.85328,2.09961 6.75707,2.08751 9.66561,0 z"
id="path123656" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 169.27734,261.94922 a 0.37593509,0.37593509 0 0 0 -0.30273,0.0625 c -2.77966,1.99501 -6.50176,2.00415 -9.22266,0.002 a 0.37593509,0.37593509 0 0 0 -0.57617,0.43164 l 4.83203,13.14258 a 0.37593509,0.37593509 0 0 0 0.70508,0 l 4.83398,-13.14258 a 0.37593509,0.37593509 0 0 0 -0.26953,-0.49609 z m -0.76172,1.12305 -4.15429,11.29687 -4.15235,-11.28711 c 2.58396,1.45199 5.69102,1.44131 8.30664,-0.01 z"
id="path123658" /></g><g
id="path123644"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.751795;stroke-linejoin:round;-inkscape-stroke:none"
d="m 159.48973,52.708534 4.83281,-13.142433 4.8328,13.142433 c -2.85328,-2.099611 -6.75707,-2.087513 -9.66561,0 z"
id="path123648" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 164.32227,39.189453 a 0.37593509,0.37593509 0 0 0 -0.35157,0.246094 l -4.83398,13.142578 a 0.37593509,0.37593509 0 0 0 0.57226,0.435547 c 2.77966,-1.99501 6.50177,-2.004148 9.22266,-0.002 a 0.37593509,0.37593509 0 0 0 0.57617,-0.433594 l -4.83203,-13.142578 a 0.37593509,0.37593509 0 0 0 -0.35351,-0.246094 z m 0,1.464844 4.15234,11.289062 c -2.58386,-1.451936 -5.69107,-1.443105 -8.30664,0.0078 z"
id="path123650" /></g></g></g><g
id="path8579"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 124.3418,26.5 v 1 h 30 v -1 z"
id="path123600" /><g
id="g123590"><g
id="path123592"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 135.03225,31.437109 -12.01847,-4.419494 12.01847,-4.419494 c -1.92005,2.609267 -1.90899,6.179198 0,8.838988 z"
id="path123596" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 134.91406,22.275391 -12.01953,4.419921 a 0.34378438,0.34378438 0 0 0 0,0.644532 l 12.01953,4.419922 a 0.34378438,0.34378438 0 0 0 0.39649,-0.523438 c -1.8244,-2.541927 -1.83292,-5.945389 -0.002,-8.433594 a 0.34378438,0.34378438 0 0 0 -0.39453,-0.527343 z m -0.58203,0.945312 c -1.32805,2.363231 -1.31958,5.205533 0.008,7.597656 l -10.33007,-3.800781 z"
id="path123598" /></g></g></g><text
id="length"
y="153.99063"
x="169.65027"
@@ -232,10 +298,19 @@
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34.925px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.264583"
y="217.77318"
x="56.409134"
id="tspan8783">α</tspan></text><path
id="path8579-9"
d="M 54.34168,27 H 84.341679"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker8663-8)" /><path
id="tspan8783">α</tspan></text><g
id="path8579-9"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 54.341797,26.5 v 1 h 30 v -1 z"
id="path123578" /><g
id="g123568"><g
id="path123570"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 73.651232,22.562891 12.018465,4.419494 -12.018465,4.419494 c 1.920048,-2.609267 1.908985,-6.179198 0,-8.838988 z"
id="path123574" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 73.769531,22.240234 a 0.34378438,0.34378438 0 0 0 -0.398437,0.523438 c 1.824392,2.541927 1.834869,5.94539 0.0039,8.433594 a 0.34378438,0.34378438 0 0 0 0.394531,0.527343 l 12.019531,-4.419922 a 0.34378438,0.34378438 0 0 0 0,-0.644531 z m 0.572266,0.941407 10.332031,3.800781 -10.322266,3.796875 c 1.328144,-2.363393 1.317897,-5.20544 -0.0098,-7.597656 z"
id="path123576" /></g></g></g><path
style="fill:url(#linearGradient6);stroke-width:1"
d="m 93.521138,160.41496 c 0,0 23.930002,-52.24121 28.232592,-73.879691 4.30259,-21.638482 -3.08812,-50.419642 -3.08812,-50.419642 0,0 -15.74327,20.932557 -23.944778,42.994787 -8.201509,22.062226 -7.285681,36.220256 -7.408333,40.983826 -0.122652,4.76357 1.463359,17.23686 2.207457,20.53113 0.744098,3.29427 4.001182,19.78959 4.001182,19.78959 z"
id="path2"

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -6,7 +6,7 @@
height="297mm"
width="210mm"
sodipodi:docname="endmill.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
@@ -24,16 +24,16 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2107"
inkscape:window-height="1421"
inkscape:window-width="1632"
inkscape:window-height="1013"
id="namedview71"
showgrid="false"
inkscape:zoom="0.75573409"
inkscape:cx="168.71013"
inkscape:cy="491.57502"
inkscape:window-x="1733"
inkscape:window-y="238"
inkscape:window-maximized="0"
inkscape:cx="207.74503"
inkscape:cy="572.29124"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="true"
@@ -58,7 +58,11 @@
id="marker1181"
refX="0"
refY="0"
orient="auto">
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid">
<path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
@@ -70,7 +74,11 @@
id="marker1177"
refX="0"
refY="0"
orient="auto">
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
@@ -534,14 +542,70 @@
id="path4538"
d="m 137.48175,191.92376 v -39.1469"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path4542"
d="m 75.30563,-39.544878 h 59.04385"
style="fill:none;stroke:#000000;stroke-width:0.736568;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1185)" />
<path
id="path4548"
d="M 73.227916,179.67926 H 136.88619"
style="fill:none;stroke:#000000;stroke-width:0.540802;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1173);marker-end:url(#marker1177)" />
<g
id="path4542">
<path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 75.304687,-39.914062 v 0.738281 h 59.044923 v -0.738281 z"
id="path68416" />
<g
id="g68398">
<g
id="path68408">
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.506391;stroke-linejoin:round;-inkscape-stroke:none"
d="m 126.47524,-42.81311 8.85242,3.255258 -8.85242,3.255257 c 1.41424,-1.921903 1.4061,-4.551399 0,-6.510515 z"
id="path68412" />
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 126.5625,-43.050781 a 0.25322081,0.25322081 0 0 0 -0.29297,0.384765 c 1.34379,1.872302 1.35058,4.380159 0.002,6.212891 a 0.25322081,0.25322081 0 0 0 0.29102,0.388672 l 8.85352,-3.255859 a 0.25322081,0.25322081 0 0 0 0,-0.47461 z m 0.42188,0.693359 7.61132,2.798828 -7.60351,2.796875 c 0.97784,-1.740683 0.96999,-3.833919 -0.008,-5.595703 z"
id="path68414" />
</g>
<g
id="path68400">
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.506391;stroke-linejoin:round;-inkscape-stroke:none"
d="m 83.179871,-36.276646 -8.852417,-3.255258 8.852417,-3.255257 c -1.414246,1.921903 -1.406097,4.551399 0,6.510515 z"
id="path68404" />
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 83.091797,-43.025391 -8.851563,3.25586 a 0.25322081,0.25322081 0 0 0 0,0.474609 l 8.851563,3.25586 a 0.25322081,0.25322081 0 0 0 0.292969,-0.384766 c -1.343789,-1.872302 -1.348629,-4.380159 0,-6.212891 a 0.25322081,0.25322081 0 0 0 -0.292969,-0.388672 z m -0.427735,0.699219 c -0.977059,1.7403 -0.971445,3.832476 0.0059,5.59375 l -7.611328,-2.798828 z"
id="path68406" />
</g>
</g>
</g>
<g
id="path4548">
<path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 73.228516,179.4082 v 0.54102 h 63.658204 v -0.54102 z"
id="path68506" />
<g
id="g68488">
<g
id="path68498">
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.371801;stroke-linejoin:round;-inkscape-stroke:none"
d="m 131.10478,177.27966 6.49961,2.39007 -6.49962,2.39007 c 1.03837,-1.41109 1.03239,-3.34172 1e-5,-4.78014 z"
id="path68502" />
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 131.16797,177.10547 a 0.18591908,0.18591908 0 0 0 -0.21485,0.2832 c 0.98664,1.37468 0.99215,3.21493 0.002,4.56055 a 0.18591908,0.18591908 0 0 0 0.21289,0.28515 l 6.5,-2.39062 a 0.18591908,0.18591908 0 0 0 0,-0.34766 z m 0.2207,0.47656 5.67969,2.08789 -5.67969,2.08789 c 0.75664,-1.30266 0.75422,-2.85597 0,-4.17578 z"
id="path68504" />
</g>
<g
id="path68490">
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.371801;stroke-linejoin:round;-inkscape-stroke:none"
d="m 79.009331,182.07886 -6.49961,-2.39007 6.49961,-2.39007 c -1.038366,1.41109 -1.032383,3.34172 0,4.78014 z"
id="path68494" />
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 78.945312,177.125 -6.5,2.38867 a 0.18591908,0.18591908 0 0 0 0,0.34961 l 6.5,2.39063 a 0.18591908,0.18591908 0 0 0 0.214844,-0.28321 c -0.986635,-1.37468 -0.992141,-3.21688 -0.002,-4.5625 a 0.18591908,0.18591908 0 0 0 -0.212891,-0.2832 z m -0.220703,0.47656 c -0.75621,1.30216 -0.753378,2.85437 0,4.17383 l -5.675781,-2.08789 z"
id="path68496" />
</g>
</g>
</g>
<text
transform="scale(0.97131606,1.029531)"
id="shank_diameter"
@@ -583,10 +647,38 @@
id="path4538-8"
d="m 72.706646,194.48411 v -39.1469"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path897"
d="M 150.31501,22.267499 V 170.59241"
style="fill:none;stroke:#000000;stroke-width:1.13395;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow2Lstart);marker-end:url(#Arrow2Lend)" />
<g
id="path897">
<path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="M 149.74805,22.267578 V 170.5918 h 1.13476 V 22.267578 Z"
id="path68476" />
<g
id="g68458">
<g
id="path68468">
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.779591;stroke-linejoin:round;-inkscape-stroke:none"
d="m 155.34647,158.46998 -5.01149,13.62834 -5.01148,-13.62834 c 2.95878,2.17724 7.0069,2.16469 10.02297,0 z"
id="path68472" />
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 155.43359,158.08984 a 0.38983449,0.38983449 0 0 0 -0.31445,0.0625 c -2.88242,2.06877 -6.74295,2.08013 -9.56445,0.004 a 0.38983449,0.38983449 0 0 0 -0.59766,0.44922 l 5.01172,13.62695 a 0.38983449,0.38983449 0 0 0 0.73242,0 l 5.01172,-13.62695 a 0.38983449,0.38983449 0 0 0 -0.2793,-0.51563 z m -0.79101,1.16602 -4.30664,11.71094 -4.30469,-11.70313 c 2.67872,1.50457 5.89979,1.49579 8.61133,-0.008 z"
id="path68474" />
</g>
<g
id="path68460">
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.779591;stroke-linejoin:round;-inkscape-stroke:none"
d="m 145.28355,34.389931 5.01149,-13.628339 5.01148,13.62834 c -2.95878,-2.177239 -7.0069,-2.164694 -10.02297,-1e-6 z"
id="path68464" />
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 150.29492,20.371094 a 0.38983449,0.38983449 0 0 0 -0.36523,0.255859 l -5.01172,13.628906 a 0.38983449,0.38983449 0 0 0 0.59375,0.451172 c 2.88242,-2.068769 6.74295,-2.080127 9.56445,-0.0039 a 0.38983449,0.38983449 0 0 0 0.5957,-0.447266 l -5.01171,-13.628906 a 0.38983449,0.38983449 0 0 0 -0.36524,-0.255859 z m 0,1.519531 4.30469,11.705078 c -2.67949,-1.505446 -5.90107,-1.495018 -8.61328,0.0098 z"
id="path68466" />
</g>
</g>
</g>
<path
id="path1187"
d="m 133.77842,19.499193 h 24.62222"
@@ -602,10 +694,38 @@
x="24.433861"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve">L</text>
<path
id="path448"
d="M 54.901487,-46.301137 V 168.32757"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow2Lstart);marker-end:url(#Arrow2Lend)" />
<g
id="path448">
<path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="M 54.402344,-46.300781 V 168.32812 h 1 V -46.300781 Z"
id="path68446" />
<g
id="g68428">
<g
id="path68438">
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 59.338596,157.63712 -4.419494,12.01847 -4.419494,-12.01847 c 2.609267,1.92005 6.179198,1.90899 8.838988,0 z"
id="path68442" />
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 59.416016,157.30273 a 0.34378438,0.34378438 0 0 0 -0.277344,0.0547 c -2.541927,1.8244 -5.947343,1.83292 -8.435547,0.002 a 0.34378438,0.34378438 0 0 0 -0.525391,0.39649 l 4.417969,12.01758 a 0.34378438,0.34378438 0 0 0 0.646484,0 l 4.419922,-12.01758 a 0.34378438,0.34378438 0 0 0 -0.246093,-0.45313 z m -0.699219,1.02735 -3.798828,10.32812 -3.794922,-10.32031 c 2.36214,1.327 5.202479,1.31786 7.59375,-0.008 z"
id="path68444" />
</g>
<g
id="path68430">
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 50.464378,-35.61069 4.419494,-12.018465 4.419494,12.018465 c -2.609267,-1.920048 -6.179198,-1.908985 -8.838988,0 z"
id="path68434" />
<path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 54.884766,-47.972656 a 0.34378438,0.34378438 0 0 0 -0.324219,0.224609 l -4.417969,12.019531 a 0.34378438,0.34378438 0 0 0 0.521484,0.396485 c 2.541927,-1.824393 5.947343,-1.832916 8.435547,-0.002 a 0.34378438,0.34378438 0 0 0 0.527344,-0.394532 l -4.419922,-12.019531 a 0.34378438,0.34378438 0 0 0 -0.322265,-0.224609 z m -0.002,1.341797 3.796875,10.320312 c -2.362139,-1.326997 -5.202478,-1.319812 -7.59375,0.0059 z"
id="path68436" />
</g>
</g>
</g>
<path
id="path450"
d="m 48.948231,-50.709931 h 24.62222"

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -7,7 +7,7 @@
width="210mm"
sodipodi:docname="probe.svg"
xml:space="preserve"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
@@ -27,13 +27,13 @@
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.89263468"
inkscape:cx="313.67816"
inkscape:cy="550.05705"
inkscape:window-width="2631"
inkscape:window-height="1298"
inkscape:window-x="1209"
inkscape:window-y="83"
inkscape:window-maximized="0"
inkscape:cx="192.68801"
inkscape:cy="573.02277"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
@@ -62,7 +62,11 @@
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"><path
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
@@ -71,7 +75,11 @@
id="marker4880"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -404,13 +412,29 @@
style="stroke-width:0.0685915;stroke-dasharray:none"><path
style="fill:none;stroke:#000000;stroke-width:0.0685915;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8,16 v 2"
id="path4536" /></g><path
id="path4542"
d="M 70.617725,58.764747 H 134.58318"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186-7);marker-end:url(#marker4584-3)" /><path
id="path4536" /></g><g
id="path4542"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 70.617187,58.265625 v 1 h 63.966793 v -1 z"
id="path75118" /><g
id="g75100"><g
id="path75110"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 123.89273,54.327638 12.01847,4.419494 -12.01847,4.419494 c 1.92005,-2.609267 1.90899,-6.179198 0,-8.838988 z"
id="path75114" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 124.01172,54.005859 a 0.34378438,0.34378438 0 0 0 -0.39844,0.521485 c 1.8244,2.541927 1.83292,5.947342 0.002,8.435547 a 0.34378438,0.34378438 0 0 0 0.39649,0.52539 l 12.01758,-4.417969 a 0.34378438,0.34378438 0 0 0 0,-0.646484 z m 0.57422,0.94336 10.32812,3.796875 -10.32031,3.796875 c 1.327,-2.36214 1.31786,-5.202479 -0.008,-7.59375 z"
id="path75116" /></g><g
id="path75102"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="M 81.308172,63.201856 69.289707,58.782362 81.308172,54.362868 c -1.920048,2.609267 -1.908985,6.179198 0,8.838988 z"
id="path75106" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 81.189453,54.041016 -12.017578,4.417968 a 0.34378438,0.34378438 0 0 0 0,0.646485 l 12.017578,4.419922 a 0.34378438,0.34378438 0 0 0 0.398438,-0.523438 c -1.824393,-2.541927 -1.832916,-5.947343 -0.002,-8.435547 a 0.34378438,0.34378438 0 0 0 -0.396484,-0.52539 z m -0.582031,0.945312 c -1.326997,2.36214 -1.317859,5.202479 0.0078,7.59375 L 70.287109,58.78125 Z"
id="path75108" /></g></g></g><path
id="path4546"
d="m 117.60648,253.80012 v 0 h 20.17804"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4732-6)" /><text
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><text
transform="scale(0.97096033,1.0299082)"
id="shaft_diameter"
y="52.856747"
@@ -430,10 +454,19 @@
style="stroke-width:3.28362"
y="254.42278"
x="50.195675"
id="tspan10475">d</tspan></text><path
id="path4546-7"
d="m 69.82078,253.80012 v 0 h 17.599515"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880-0)" /><g
id="tspan10475">d</tspan></text><g
id="path4546-7"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 69.820312,253.30078 v 1 h 17.59961 v -1 z"
id="path75154" /><g
id="g75144"><g
id="path75146"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 76.729848,249.36301 12.018465,4.4195 -12.018465,4.41949 c 1.920048,-2.60927 1.908985,-6.1792 0,-8.83899 z"
id="path75150" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 76.847656,249.04102 a 0.34378438,0.34378438 0 0 0 -0.396484,0.52148 c 1.824392,2.54193 1.832916,5.94734 0.002,8.43555 a 0.34378438,0.34378438 0 0 0 0.394531,0.52734 l 12.019531,-4.41992 a 0.34378438,0.34378438 0 0 0 0,-0.64649 z m 0.576172,0.94335 10.326172,3.79688 -10.320313,3.79687 c 1.326673,-2.36203 1.319705,-5.20267 -0.0059,-7.59375 z"
id="path75152" /></g></g></g><g
id="g7053-6"
transform="matrix(12.050135,0,0,17.638759,-7.4783305,-54.225586)"
style="stroke-width:0.0685915;stroke-dasharray:none"><path
@@ -442,10 +475,19 @@
id="path4536-1" /></g><path
id="path4548-6"
d="m 114.16017,125.89217 h 68.9765"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4538-7"
d="M 176.9939,160.14754 V 129.34615"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" /><text
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path4538-7"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 176.49414,129.3457 v 30.80274 h 1 V 129.3457 Z"
id="path75136" /><g
id="g75126"><g
id="path75128"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.6875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 172.55679,140.0366 4.4195,-12.01847 4.41949,12.01847 c -2.60927,-1.92005 -6.1792,-1.90899 -8.83899,0 z"
id="path75132" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 176.97656,127.67383 a 0.34378438,0.34378438 0 0 0 -0.32226,0.22656 l -4.41993,12.01758 a 0.34378438,0.34378438 0 0 0 0.52344,0.39844 c 2.54193,-1.8244 5.94539,-1.83488 8.4336,-0.004 a 0.34378438,0.34378438 0 0 0 0.52734,-0.39453 l -4.41992,-12.01758 a 0.34378438,0.34378438 0 0 0 -0.32227,-0.22656 z m 0,1.33984 3.79492,10.32227 c -2.36254,-1.32696 -5.20433,-1.31861 -7.5957,0.008 z"
id="path75134" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="length"
y="182.93718"
@@ -460,7 +502,7 @@
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path130891"
d="M 176.9939,236.31156 V 201.77961"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186)" /><circle
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><circle
style="opacity:1;fill:url(#radialGradient6068);fill-opacity:1;stroke-width:0.600001;stroke-linecap:round;stroke-linejoin:round"
id="path4652"
cx="102.27185"

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

@@ -7,7 +7,7 @@
width="210mm"
sodipodi:docname="radius.svg"
xml:space="preserve"
inkscape:version="1.3.2 (091e20e, 2023-11-25)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
@@ -26,14 +26,14 @@
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.41628253"
inkscape:cx="136.92624"
inkscape:cy="599.35256"
inkscape:window-width="1512"
inkscape:window-height="916"
inkscape:window-x="0"
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:zoom="0.68132595"
inkscape:cx="371.33475"
inkscape:cy="606.90481"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
@@ -70,7 +70,11 @@
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"><path
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
@@ -79,7 +83,11 @@
id="marker4880"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -98,9 +106,9 @@
refX="0"
id="marker4584"
style="overflow:visible"
viewBox="0 0 12.70584107 9.5264135"
markerWidth="12.70584106"
markerHeight="9.5264135"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path4582"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -133,9 +141,9 @@
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.70584107 9.5264135"
markerWidth="12.70584107"
markerHeight="9.5264135"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
@@ -389,13 +397,45 @@
id="g7053" /><path
id="path4538"
d="M 171.54918,270.09124 V 164.05264"
style="fill:none;stroke:#000000;stroke-width:0.743595;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542"
d="M 77.321236,58.014043 H 133.53382"
style="fill:none;stroke:#000000;stroke-width:0.65;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186);marker-end:url(#marker4584)" /><path
id="path4548"
d="M 41.274623,258.30918 H 166.88345"
style="fill:none;stroke:#000000;stroke-width:0.721845;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3948);marker-end:url(#marker4328)" /><text
style="fill:none;stroke:#000000;stroke-width:0.743595;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path4542"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 77.320312,57.689453 v 0.650391 H 133.5332 v -0.650391 z"
id="path81903" /><g
id="g81885"><g
id="path81895"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.446875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 126.58503,55.129922 7.812,2.872672 -7.812,2.87267 c 1.24803,-1.696024 1.24084,-4.016478 0,-5.745342 z"
id="path81899" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 126.66211,54.919922 a 0.22345985,0.22345985 0 0 0 -0.25781,0.339844 c 1.18585,1.652253 1.19012,3.865088 0,5.482421 a 0.22345985,0.22345985 0 0 0 0.25781,0.34375 l 7.8125,-2.873046 a 0.22345985,0.22345985 0 0 0 0,-0.419922 z m 0.37109,0.613281 6.7168,2.470703 -6.70898,2.466797 c 0.86312,-1.53604 0.8549,-3.382691 -0.008,-4.9375 z"
id="path81901" /></g><g
id="path81887"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.446875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 84.270026,60.898164 -7.812002,-2.872672 7.812002,-2.87267 c -1.248031,1.696024 -1.24084,4.016478 0,5.745342 z"
id="path81891" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 84.193359,54.943359 -7.8125,2.873047 a 0.22345985,0.22345985 0 0 0 0,0.417969 l 7.8125,2.873047 a 0.22345985,0.22345985 0 0 0 0.257813,-0.339844 c -1.185855,-1.652253 -1.192079,-3.865089 -0.002,-5.482422 a 0.22345985,0.22345985 0 0 0 -0.25586,-0.341797 z m -0.378906,0.615235 c -0.8615,1.534403 -0.856248,3.380086 0.0039,4.933593 l -6.714843,-2.466796 z"
id="path81893" /></g></g></g><g
id="path4548"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 41.275391,257.94922 v 0.7207 H 166.88281 v -0.7207 z"
id="path82045" /><g
id="g82027"><g
id="path82037"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.496268;stroke-linejoin:round;-inkscape-stroke:none"
d="m 159.1666,255.10628 8.67547,3.19018 -8.67547,3.19019 c 1.38598,-1.88348 1.378,-4.46042 0,-6.38037 z"
id="path82041" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 159.25195,254.87305 a 0.24815882,0.24815882 0 0 0 -0.28711,0.37695 c 1.31694,1.83487 1.32363,4.29375 0.002,6.08984 a 0.24815882,0.24815882 0 0 0 0.28515,0.37891 l 8.67578,-3.18945 a 0.24815882,0.24815882 0 0 0 0,-0.46485 z m 0.41602,0.68359 7.45508,2.74023 -7.45118,2.73829 c 0.95765,-1.70455 0.95211,-3.75268 -0.004,-5.47852 z"
id="path82043" /></g><g
id="path82029"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.496268;stroke-linejoin:round;-inkscape-stroke:none"
d="M 48.991468,261.51208 40.316,258.3219 l 8.675469,-3.19019 c -1.385978,1.88348 -1.377992,4.46042 -1e-6,6.38037 z"
id="path82033" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 48.90625,254.89844 -8.675781,3.1914 a 0.24815882,0.24815882 0 0 0 0,0.46485 l 8.675781,3.18945 a 0.24815882,0.24815882 0 0 0 0.287109,-0.37695 c -1.316927,-1.83487 -1.323625,-4.2918 -0.002,-6.08789 a 0.24815882,0.24815882 0 0 0 -0.285156,-0.38086 z m -0.421875,0.68359 c -0.957915,1.70568 -0.950166,3.75611 0.0078,5.48242 l -7.457031,-2.74218 z"
id="path82035" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="shank_diameter"
y="52.456436"
@@ -432,15 +472,38 @@
id="path4548-6"
d="m 118.72725,223.34176 74.87632,0"
style="fill:none;stroke:#000000;stroke-width:0.592962;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path4548-6-8"
d="m 132.26064,182.39381 39.1751,40.80318"
style="fill:none;stroke:#000000;stroke-width:0.65;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186)"
sodipodi:nodetypes="cc" /><path
id="sesr3u8"
d="m 184.26391,221.22509 0,-84.25864"
style="fill:none;stroke:#000000;stroke-width:0.65;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4584)"
sodipodi:nodetypes="cc" /><text
sodipodi:nodetypes="cc" /><g
id="path4548-6-8"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 132.49414,182.16797 -0.46875,0.45117 39.17578,40.80273 0.46875,-0.44921 z"
id="path81985" /><g
id="g81975"><g
id="path81977"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.446875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 134.99269,189.40378 -3.33814,-7.62472 7.48255,3.64568 c -2.08777,0.27434 -3.75666,1.8866 -4.14441,3.97904 z"
id="path81981" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 131.75195,181.57812 a 0.22345985,0.22345985 0 0 0 -0.30273,0.29102 l 3.33789,7.625 a 0.22345985,0.22345985 0 0 0 0.42578,-0.0488 c 0.37057,-1.99971 1.96222,-3.53721 3.95313,-3.79883 a 0.22345985,0.22345985 0 0 0 0.0684,-0.42187 z m 0.35157,0.66797 6.42773,3.13086 c -1.70644,0.44075 -3.03427,1.72433 -3.55859,3.42383 z"
id="path81983" /></g></g></g><g
id="sesr3u8"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 183.93945,136.9668 v 84.25781 h 0.65039 V 136.9668 Z"
id="path81963" /><g
id="g81945"><g
id="path81955"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.446875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 181.37979,143.91524 2.87267,-7.812 2.87267,7.812 c -1.69602,-1.24803 -4.01648,-1.24084 -5.74534,0 z"
id="path81959" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 184.25195,135.87891 a 0.22345985,0.22345985 0 0 0 -0.20898,0.14648 l -2.87305,7.8125 a 0.22345985,0.22345985 0 0 0 0.33985,0.25977 c 1.65224,-1.18586 3.86509,-1.19208 5.48242,-0.002 a 0.22345985,0.22345985 0 0 0 0.34179,-0.25781 l -2.87109,-7.8125 a 0.22345985,0.22345985 0 0 0 -0.21094,-0.14648 z m 0.002,0.87109 2.46679,6.70898 c -1.53604,-0.86312 -3.38269,-0.8549 -4.9375,0.008 z"
id="path81961" /></g><g
id="path81947"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.446875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 187.14803,214.2763 -2.87267,7.812 -2.87267,-7.812 c 1.69602,1.24803 4.01648,1.24084 5.74534,0 z"
id="path81951" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 187.19727,214.05859 a 0.22345985,0.22345985 0 0 0 -0.17969,0.0371 c -1.65225,1.18586 -3.86509,1.19013 -5.48242,0 a 0.22345985,0.22345985 0 0 0 -0.3418,0.25782 l 2.87305,7.8125 a 0.22345985,0.22345985 0 0 0 0.41796,0 l 2.87305,-7.8125 a 0.22345985,0.22345985 0 0 0 -0.16015,-0.29493 z m -0.45313,0.66797 -2.46875,6.7168 -2.4668,-6.71094 c 1.53533,0.86202 3.38151,0.85584 4.93555,-0.006 z"
id="path81953" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="cutting_edge_height"
y="180.48601"
@@ -457,10 +520,26 @@
id="path938"
d="m 21.764217,223.34176 66.827826,0"
style="fill:none;stroke:#000000;stroke-width:0.757536;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path940"
d="M 28.028504,219.65219 V 84.84232"
style="fill:none;stroke:#000000;stroke-width:0.65;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4584)" /><text
sodipodi:nodetypes="cc" /><g
id="path940"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="M 27.703125,84.841797 V 219.65234 h 0.650391 V 84.841797 Z"
id="path81933" /><g
id="g81915"><g
id="path81925"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.446875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 25.144383,91.79111 2.872672,-7.812002 2.87267,7.812002 c -1.696024,-1.248031 -4.016478,-1.24084 -5.745342,0 z"
id="path81929" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 28.017578,83.755859 a 0.22345985,0.22345985 0 0 0 -0.210937,0.146485 l -2.871094,7.8125 a 0.22345985,0.22345985 0 0 0 0.339844,0.257812 c 1.652253,-1.185855 3.865088,-1.192079 5.482421,-0.002 a 0.22345985,0.22345985 0 0 0 0.341797,-0.255859 l -2.873047,-7.8125 a 0.22345985,0.22345985 0 0 0 -0.208984,-0.146485 z m -0.002,0.871094 2.46875,6.708984 c -1.535332,-0.862865 -3.381078,-0.857594 -4.935547,0.0039 z"
id="path81931" /></g><g
id="path81917"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.446875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 30.912625,212.7034 -2.872672,7.812 -2.87267,-7.812 c 1.696024,1.24803 4.016478,1.24084 5.745342,0 z"
id="path81921" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 30.962891,212.48633 a 0.22345985,0.22345985 0 0 0 -0.179688,0.0351 c -1.652253,1.18586 -3.867042,1.19208 -5.484375,0.002 a 0.22345985,0.22345985 0 0 0 -0.341797,0.25781 l 2.873047,7.81055 a 0.22345985,0.22345985 0 0 0 0.419922,0 l 2.873047,-7.81055 a 0.22345985,0.22345985 0 0 0 -0.160156,-0.29492 z m -0.453125,0.66601 -2.470704,6.71485 -2.466796,-6.70899 c 1.536092,0.8633 3.382592,0.85692 4.9375,-0.006 z"
id="path81923" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="length"
y="153.26979"
@@ -493,8 +572,23 @@
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.02681"
y="244.40749"
x="70.96611"
id="tspan5690-9">d</tspan></text><path
id="sesr3u8-6"
d="m 112.39408,239.97586 -17.090908,0"
style="fill:none;stroke:#000000;stroke-width:0.65;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3948);marker-end:url(#marker4584)"
sodipodi:nodetypes="cc" /></svg>
id="tspan5690-9">d</tspan></text><g
id="sesr3u8-6"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 95.302734,239.65039 v 0.65039 h 17.091796 v -0.65039 z"
id="path82015" /><g
id="g81997"><g
id="path82007"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.446875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 102.25196,242.85998 -7.812,-2.87267 7.812,-2.87267 c -1.24803,1.69602 -1.24084,4.01648 0,5.74534 z"
id="path82011" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 102.17578,236.9043 -7.812499,2.87304 a 0.22345985,0.22345985 0 0 0 0,0.41993 l 7.812499,2.87304 a 0.22345985,0.22345985 0 0 0 0.25781,-0.33984 c -1.18585,-1.65225 -1.19207,-3.86705 -0.002,-5.48438 a 0.22345985,0.22345985 0 0 0 -0.25586,-0.34179 z m -0.3789,0.61523 c -0.8633,1.53609 -0.85692,3.3826 0.006,4.9375 l -6.714839,-2.46875 z"
id="path82013" /></g><g
id="path81999"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.446875;stroke-linejoin:round;-inkscape-stroke:none"
d="m 105.44529,237.09174 7.812,2.87267 -7.812,2.87267 c 1.24803,-1.69602 1.24084,-4.01648 0,-5.74534 z"
id="path82003" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 105.52148,236.88281 a 0.22345985,0.22345985 0 0 0 -0.25781,0.33985 c 1.18586,1.65224 1.19208,3.86509 0.002,5.48242 a 0.22345985,0.22345985 0 0 0 0.25585,0.34179 l 7.8125,-2.87304 a 0.22345985,0.22345985 0 0 0 0,-0.41992 z m 0.37305,0.61133 6.71485,2.4707 -6.70899,2.4668 c 0.86329,-1.53609 0.85692,-3.38259 -0.006,-4.9375 z"
id="path82005" /></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -6,7 +6,7 @@
height="297mm"
width="210mm"
sodipodi:docname="reamer.svg"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
@@ -24,17 +24,17 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2166"
inkscape:window-height="1490"
inkscape:window-width="1680"
inkscape:window-height="1050"
id="namedview71"
showgrid="false"
inkscape:zoom="0.73495371"
inkscape:cx="523.1622"
inkscape:cy="775.55905"
inkscape:window-x="1674"
inkscape:window-y="259"
inkscape:zoom="0.41052622"
inkscape:cx="187.56415"
inkscape:cy="777.05147"
inkscape:window-x="1680"
inkscape:window-y="1050"
inkscape:window-maximized="0"
inkscape:current-layer="g40"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="true"
@@ -166,7 +166,11 @@
id="marker1181"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -175,7 +179,11 @@
id="marker1177"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -522,7 +530,7 @@
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.2778px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:1.20955">H</tspan></text><path
id="path4542"
d="m 66.55728,173.49778 h 79.31396"
style="fill:none;stroke:#000000;stroke-width:0.849025;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181-3);marker-end:url(#marker1185-7)" /><path
style="fill:none;stroke:#000000;stroke-width:0.849025;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1177)" /><path
id="path4538"
d="M 148.17126,181.21137 V 142.4916"
style="fill:none;stroke:#000000;stroke-width:0.838537;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
@@ -537,7 +545,7 @@
style="fill:none;stroke:#000000;stroke-width:0.838537;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path897"
d="M 163.08122,-36.196886 V 158.31269"
style="fill:none;stroke:#000000;stroke-width:1.32896;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow2Lstart-3);marker-end:url(#Arrow2Lend-6)" /><g
style="fill:none;stroke:#000000;stroke-width:1.32896;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1177)" /><g
id="g40"
transform="matrix(1,0,0,1.0521129,0,-8.5565929)"><path
style="fill:url(#linearGradient14);fill-opacity:1;stroke-width:1"

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

@@ -7,7 +7,7 @@
width="210mm"
sodipodi:docname="slittingsaw.svg"
xml:space="preserve"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
@@ -26,14 +26,14 @@
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.0064871"
inkscape:cx="369.60235"
inkscape:cy="654.25578"
inkscape:window-width="2297"
inkscape:window-height="1597"
inkscape:window-x="1543"
inkscape:window-y="236"
inkscape:window-maximized="0"
inkscape:zoom="0.61495235"
inkscape:cx="258.55662"
inkscape:cy="592.72885"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
@@ -54,7 +54,11 @@
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"><path
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
@@ -63,7 +67,11 @@
id="marker4880"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -388,16 +396,57 @@
id="path4536" /></g><path
id="path4538"
d="M 172.52373,275.76822 V 216.92606"
style="fill:none;stroke:#000000;stroke-width:0.576943;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542"
d="M 87.011514,45.697432 H 127.22183"
style="fill:none;stroke:#000000;stroke-width:0.60159;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186-7);marker-end:url(#marker4584-3)" /><path
id="path4546"
d="m 120.56062,246.02455 v 0 h 20.17804"
style="fill:none;stroke:#000000;stroke-width:0.60268;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4732-6)" /><path
id="path4548"
d="M 45.268144,262.98652 H 168.9652"
style="fill:none;stroke:#000000;stroke-width:0.7461;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3948-9);marker-end:url(#marker4328-2)" /><text
style="fill:none;stroke:#000000;stroke-width:0.576943;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path4542"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 87.011719,45.396484 v 0.601563 h 40.210941 v -0.601563 z"
id="path116697" /><g
id="g116679"><g
id="path116689"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.413593;stroke-linejoin:round;-inkscape-stroke:none"
d="m 120.79056,43.028112 7.23019,2.658723 -7.23019,2.658723 c 1.15509,-1.569709 1.14843,-3.717343 0,-5.317446 z"
id="path116693" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 120.86133,42.833984 a 0.20681718,0.20681718 0 0 0 -0.23828,0.314453 c 1.09754,1.529199 1.10149,3.577341 0,5.074219 a 0.20681718,0.20681718 0 0 0 0.23828,0.316406 l 7.23047,-2.658203 a 0.20681718,0.20681718 0 0 0 0,-0.388672 z m 0.24609,0.53125 6.3125,2.322266 -6.3125,2.322266 c 0.84118,-1.448769 0.83852,-3.176711 0,-4.644532 z"
id="path116695" /></g><g
id="path116681"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.413593;stroke-linejoin:round;-inkscape-stroke:none"
d="m 93.44278,48.366752 -7.230189,-2.658723 7.230189,-2.658723 c -1.155082,1.569709 -1.148426,3.717343 0,5.317446 z"
id="path116685" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 93.371094,42.855469 -7.230469,2.658203 a 0.20681718,0.20681718 0 0 0 0,0.388672 l 7.230469,2.658203 a 0.20681718,0.20681718 0 0 0 0.240234,-0.314453 c -1.097536,-1.529198 -1.103442,-3.57734 -0.002,-5.074219 A 0.20681718,0.20681718 0 0 0 93.371094,42.855469 Z M 93.125,43.386719 c -0.839998,1.447967 -0.835325,3.175558 0.002,4.642578 L 86.8125,45.707031 Z"
id="path116687" /></g></g></g><g
id="path4546"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 120.56055,245.72266 v 0.60351 h 20.17773 v -0.60351 z"
id="path116807" /><g
id="g116797"><g
id="path116799"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.414343;stroke-linejoin:round;-inkscape-stroke:none"
d="m 127.00354,248.69871 -7.24329,-2.66354 7.24329,-2.66354 c -1.15718,1.57255 -1.15051,3.72407 0,5.32708 z"
id="path116803" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 126.93164,243.17773 -7.24219,2.66211 a 0.20719222,0.20719222 0 0 0 0,0.39063 l 7.24219,2.66211 a 0.20719222,0.20719222 0 0 0 0.24024,-0.31446 c -1.09953,-1.53197 -1.10545,-3.58439 -0.002,-5.08398 a 0.20719222,0.20719222 0 0 0 -0.23828,-0.31641 z m -0.24609,0.53125 c -0.84207,1.451 -0.83749,3.18228 0.002,4.65235 l -6.32422,-2.32617 z"
id="path116805" /></g></g></g><g
id="path4548"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 45.267578,262.61328 v 0.74609 H 168.96484 v -0.74609 z"
id="path116859" /><g
id="g116841"><g
id="path116851"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.512944;stroke-linejoin:round;-inkscape-stroke:none"
d="m 160.98906,259.67599 8.96697,3.29739 -8.96697,3.29738 c 1.43255,-1.94677 1.42429,-4.6103 0,-6.59477 z"
id="path116855" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 161.07812,259.43555 a 0.25649764,0.25649764 0 0 0 -0.29687,0.39062 c 1.36118,1.89653 1.36804,4.43653 0.002,6.29297 a 0.25649764,0.25649764 0 0 0 0.29492,0.39258 l 8.9668,-3.29688 a 0.25649764,0.25649764 0 0 0 0,-0.48242 z m 0.42774,0.70312 7.70508,2.83399 -7.69922,2.83203 c 0.99019,-1.76281 0.98394,-3.88171 -0.006,-5.66602 z"
id="path116857" /></g><g
id="path116843"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.512944;stroke-linejoin:round;-inkscape-stroke:none"
d="m 53.244286,266.29705 -8.966977,-3.29739 8.966978,-3.29738 c -1.432548,1.94677 -1.424294,4.6103 -10e-7,6.59477 z"
id="path116847" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 53.15625,259.46094 -8.966797,3.29883 a 0.25649764,0.25649764 0 0 0 0,0.48046 l 8.966797,3.29688 a 0.25649764,0.25649764 0 0 0 0.296875,-0.38867 c -1.361178,-1.89653 -1.368034,-4.43848 -0.002,-6.29492 a 0.25649764,0.25649764 0 0 0 -0.294922,-0.39258 z m -0.435547,0.70703 c -0.990011,1.76248 -0.983407,3.88189 0.0059,5.66601 L 45.019531,263 Z"
id="path116849" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="shank_diameter"
y="40.168922"
@@ -427,10 +476,19 @@
style="stroke-width:3.28362"
y="246.87277"
x="57.598186"
id="tspan10475">d</tspan></text><path
id="path4546-7"
d="m 74.891676,246.02455 v 0 h 17.599515"
style="fill:none;stroke:#000000;stroke-width:0.562856;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880-0)" /><g
id="tspan10475">d</tspan></text><g
id="path4546-7"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 74.892578,245.74219 v 0.56445 h 17.597656 v -0.56445 z"
id="path116829" /><g
id="g116819"><g
id="path116821"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.386964;stroke-linejoin:round;-inkscape-stroke:none"
d="m 86.474009,243.5271 6.764665,2.48754 -6.764666,2.48753 c 1.080711,-1.46864 1.074484,-3.47799 10e-7,-4.97507 z"
id="path116825" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 86.541016,243.3457 a 0.19350134,0.19350134 0 0 0 -0.22461,0.29492 c 1.02687,1.43075 1.032522,3.3456 0.002,4.7461 a 0.19350134,0.19350134 0 0 0 0.222657,0.29687 l 6.763671,-2.48828 a 0.19350134,0.19350134 0 0 0 0,-0.36133 z m 0.228515,0.4961 5.910156,2.17382 -5.910156,2.17188 c 0.786927,-1.35544 0.784456,-2.97245 0,-4.3457 z"
id="path116827" /></g></g></g><g
id="g7053-6"
transform="matrix(12.050135,0,0,15.643074,-2.4040199,-27.764503)"><path
style="fill:none;stroke:#000000;stroke-width:0.065;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
@@ -442,10 +500,19 @@
sodipodi:nodetypes="cc" /><path
id="path4548-6"
d="m 167.31007,205.95868 h 24.60161"
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4538-7"
d="M 185.76891,233.43708 V 215.88705"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" /><text
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path4538-7"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 185.39844,215.88672 v 17.55078 h 0.74023 v -17.55078 z"
id="path116881" /><g
id="g116871"><g
id="path116873"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.508709;stroke-linejoin:round;-inkscape-stroke:none"
d="m 182.48571,223.79735 3.27017,-8.89296 3.27016,8.89296 c -1.9307,-1.42072 -4.57224,-1.41254 -6.54033,0 z"
id="path116877" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 185.75586,214.65039 a 0.25437994,0.25437994 0 0 0 -0.23828,0.16602 l -3.27149,8.89257 a 0.25437994,0.25437994 0 0 0 0.38868,0.29493 c 1.88087,-1.34995 4.39911,-1.35676 6.24023,-0.002 a 0.25437994,0.25437994 0 0 0 0.39062,-0.29297 l -3.27148,-8.89257 a 0.25437994,0.25437994 0 0 0 -0.23828,-0.16602 z m 0,0.99023 2.80859,7.63868 c -1.74809,-0.98193 -3.84965,-0.97552 -5.61914,0.006 z"
id="path116879" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="blade_thickness"
y="175.90097"
@@ -457,16 +524,34 @@
id="tspan7855">T</tspan></text><path
id="path128465"
d="m 167.13907,213.6831 h 24.60161"
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path130891"
d="M 185.76891,203.8036 V 186.25357"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186)" /><path
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path130891"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 185.39844,186.25391 v 17.54882 h 0.74023 v -17.54882 z"
id="path116899" /><g
id="g116889"><g
id="path116891"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.508709;stroke-linejoin:round;-inkscape-stroke:none"
d="m 189.05211,195.8933 -3.27017,8.89296 -3.27016,-8.89296 c 1.9307,1.42072 4.57224,1.41254 6.54033,0 z"
id="path116895" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 189.10937,195.64453 a 0.25437994,0.25437994 0 0 0 -0.20507,0.043 c -1.88088,1.34995 -4.40107,1.3548 -6.24219,0 a 0.25437994,0.25437994 0 0 0 -0.38867,0.29297 l 3.26953,8.89453 a 0.25437994,0.25437994 0 0 0 0.47851,0 l 3.26954,-8.89453 a 0.25437994,0.25437994 0 0 0 -0.18165,-0.33594 z m -0.51757,0.76172 -2.81055,7.64258 -2.80859,-7.63672 c 1.7477,0.98192 3.84976,0.9748 5.61914,-0.006 z"
id="path116897" /></g></g></g><path
id="path6381"
d="m 23.053165,213.89617 h 17.51666"
style="fill:none;stroke:#000000;stroke-width:0.578853;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path6383"
d="M 34.427058,240.8454 V 223.29537"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" /><text
style="fill:none;stroke:#000000;stroke-width:0.578853;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path6383"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 34.056641,223.29492 v 17.55078 h 0.740234 v -17.55078 z"
id="path116785" /><g
id="g116775"><g
id="path116777"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.508709;stroke-linejoin:round;-inkscape-stroke:none"
d="m 31.143859,231.20567 3.270165,-8.89296 3.270164,8.89296 c -1.930703,-1.42072 -4.572241,-1.41254 -6.540329,0 z"
id="path116781" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 34.414062,222.05859 a 0.25437994,0.25437994 0 0 0 -0.238281,0.16602 l -3.271484,8.89258 a 0.25437994,0.25437994 0 0 0 0.388672,0.29492 c 1.880876,-1.34995 4.39911,-1.35676 6.240234,-0.002 a 0.25437994,0.25437994 0 0 0 0.390625,-0.29297 l -3.271484,-8.89258 a 0.25437994,0.25437994 0 0 0 -0.238282,-0.16602 z m 0,0.99024 2.808594,7.63867 c -1.748109,-0.98238 -3.84942,-0.97542 -5.61914,0.006 z"
id="path116783" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="cap_height"
y="252.97104"
@@ -479,20 +564,47 @@
id="path6389"
d="M 9.6116373,221.09142 H 93.315492"
style="fill:none;stroke:#000000;stroke-width:0.712845;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path6391"
d="M 34.427058,211.74109 V 194.19106"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186)" /><path
sodipodi:nodetypes="cc" /><g
id="path6391"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 34.056641,194.19141 v 17.54882 h 0.740234 v -17.54882 z"
id="path116763" /><g
id="g116753"><g
id="path116755"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.508709;stroke-linejoin:round;-inkscape-stroke:none"
d="m 37.710257,203.83079 -3.270165,8.89296 -3.270164,-8.89296 c 1.930703,1.42072 4.572241,1.41254 6.540329,0 z"
id="path116759" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 37.767578,203.58203 a 0.25437994,0.25437994 0 0 0 -0.205078,0.043 c -1.880876,1.34995 -4.401064,1.3548 -6.242188,0 a 0.25437994,0.25437994 0 0 0 -0.388671,0.29297 l 3.269531,8.89453 a 0.25437994,0.25437994 0 0 0 0.478515,0 l 3.269532,-8.89453 a 0.25437994,0.25437994 0 0 0 -0.181641,-0.33594 z m -0.517578,0.76172 -2.810547,7.64258 -2.808594,-7.63672 c 1.747702,0.98192 3.84977,0.9748 5.619141,-0.006 z"
id="path116761" /></g></g></g><path
id="path7410"
d="M 9.6116373,70.807979 H 86.05246"
style="fill:none;stroke:#000000;stroke-width:0.681216;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path7808"
d="M 18.552057,127.82258 V 77.442522"
style="fill:none;stroke:#000000;stroke-width:1.25368;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" /><path
id="path8206"
d="M 18.552057,213.9386 V 159.99608"
style="fill:none;stroke:#000000;stroke-width:1.29725;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186)" /><text
sodipodi:nodetypes="cc" /><g
id="path7808"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 17.925781,77.443359 v 50.378911 h 1.253906 V 77.443359 Z"
id="path116719" /><g
id="g116709"><g
id="path116711"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.861905;stroke-linejoin:round;-inkscape-stroke:none"
d="m 12.989343,90.844921 5.540631,-15.067309 5.54063,15.06731 c -3.271186,-2.407126 -7.746736,-2.393256 -11.081261,-10e-7 z"
id="path116715" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="M 18.529297,75.347656 A 0.43099558,0.43099558 0 0 0 18.125,75.628906 l -5.541016,15.066406 a 0.43099558,0.43099558 0 0 0 0.65625,0.5 c 3.186763,-2.287202 7.454807,-2.299348 10.574219,-0.0039 a 0.43099558,0.43099558 0 0 0 0.660156,-0.496094 L 18.933594,75.628906 a 0.43099558,0.43099558 0 0 0 -0.404297,-0.28125 z m 0,1.677735 4.759765,12.941406 c -2.96129,-1.663741 -6.521609,-1.653987 -9.519531,0.0078 z"
id="path116717" /></g></g></g><g
id="path8206"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 17.904297,159.99609 v 53.94336 h 1.296875 v -53.94336 z"
id="path116741" /><g
id="g116731"><g
id="path116733"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.891859;stroke-linejoin:round;-inkscape-stroke:none"
d="m 24.308096,200.07042 -5.733188,15.59095 -5.733188,-15.59095 c 3.384872,2.49078 8.015963,2.47643 11.466376,0 z"
id="path116737" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 24.408203,199.63672 a 0.44597409,0.44597409 0 0 0 -0.359375,0.0723 c -3.297515,2.3667 -7.715536,2.37717 -10.943359,0.002 a 0.44597409,0.44597409 0 0 0 -0.681641,0.51367 l 5.732422,15.58984 a 0.44597409,0.44597409 0 0 0 0.837891,0 l 5.732421,-15.58984 a 0.44597409,0.44597409 0 0 0 -0.318359,-0.58789 z M 23.5,200.9707 18.574219,214.36914 13.650391,200.97852 c 3.064128,1.72192 6.747337,1.71151 9.849609,-0.008 z"
id="path116739" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="length"
y="151.75241"

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -0,0 +1,376 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg5"
xml:space="preserve"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="ballend.svg"
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="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.61035884"
inkscape:cx="409.59512"
inkscape:cy="577.52912"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="g547" /><defs
id="defs2"><linearGradient
id="linearGradient12"
inkscape:collect="always"><stop
style="stop-color:#ababab;stop-opacity:1;"
offset="0"
id="stop12" /><stop
style="stop-color:#c8c8c8;stop-opacity:1;"
offset="0.4613452"
id="stop14" /><stop
style="stop-color:#878787;stop-opacity:1;"
offset="1"
id="stop13" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient3234"><stop
style="stop-color:#939393;stop-opacity:1;"
offset="0"
id="stop3230" /><stop
style="stop-color:#a6a6a6;stop-opacity:1;"
offset="1"
id="stop3232" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient3197"><stop
style="stop-color:#c2c2c2;stop-opacity:1;"
offset="0"
id="stop3193" /><stop
style="stop-color:#bcbcbc;stop-opacity:1;"
offset="1"
id="stop3195" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient3164"><stop
style="stop-color:#7f7f7f;stop-opacity:1;"
offset="0"
id="stop3160" /><stop
style="stop-color:#d1d1d1;stop-opacity:1;"
offset="1"
id="stop3162" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient2387"><stop
style="stop-color:#757575;stop-opacity:1;"
offset="0"
id="stop2383" /><stop
style="stop-color:#e2e2e2;stop-opacity:1;"
offset="1"
id="stop2385" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient1597"><stop
style="stop-color:#a2a2a2;stop-opacity:1;"
offset="0"
id="stop1593" /><stop
style="stop-color:#f9f9f9;stop-opacity:1;"
offset="1"
id="stop1595" /></linearGradient><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1597"
id="linearGradient1599"
x1="87.435623"
y1="79.357056"
x2="111.22856"
y2="73.90403"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1039352,0,0,2.0769214,-118.55184,-31.78813)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2387"
id="linearGradient2389"
x1="96.292923"
y1="98.227234"
x2="115.44387"
y2="101.37556"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1039352,0,0,2.0769214,-118.55184,-31.78813)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3164"
id="linearGradient3166"
x1="105.2982"
y1="113.63973"
x2="121.38458"
y2="107.85011"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1039352,0,0,2.0769214,-118.55184,-31.78813)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3197"
id="linearGradient3199"
x1="114.56518"
y1="99.303268"
x2="106.60018"
y2="108.47805"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1039352,0,0,2.0769214,-118.55184,-31.78813)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3234"
id="linearGradient3236"
x1="117.31676"
y1="115.81714"
x2="120.31398"
y2="115.81714"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1039352,0,0,2.0769214,-118.55184,-31.78813)" /><marker
style="overflow:visible"
id="marker1181-3"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1179-6" /></marker><marker
style="overflow:visible"
id="marker1185-7"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1183-5" /></marker><marker
style="overflow:visible"
id="marker1181-3-6"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1179-6-7" /></marker><marker
style="overflow:visible"
id="marker1185-7-5"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1183-5-3" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart-3"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917-5" /></marker><marker
style="overflow:visible"
id="Arrow2Lend-6"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920-2" /></marker><marker
style="overflow:visible"
id="marker1181"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1179" /></marker><marker
style="overflow:visible"
id="marker1185"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1183" /></marker><marker
style="overflow:visible"
id="marker1173"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1171" /></marker><marker
style="overflow:visible"
id="marker1177"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1175" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917" /></marker><marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient12"
id="linearGradient13"
x1="69.704971"
y1="103.07113"
x2="134.92827"
y2="103.07113"
gradientUnits="userSpaceOnUse" /></defs><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"><g
id="g547"
transform="matrix(1.0595259,0,0,1.0595259,-5.9958564,-17.148658)"><rect
style="fill:url(#linearGradient13);stroke-width:0.47190918;stroke:#000000;stroke-opacity:1;stroke-dasharray:none"
id="rect11"
width="64.890305"
height="122.62204"
x="70.037964"
y="37.431164"
ry="0" /><path
style="fill:url(#linearGradient1599);fill-opacity:1;stroke:#000000;stroke-width:0.55308px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 75.590637,186.41788 c 0,0 -5.447171,-16.7828 -5.299906,-25.4492 0.133579,-7.86093 2.795594,-15.52796 5.225715,-23.01507 1.910547,-5.88632 4.124428,-11.76003 7.308898,-17.08204 4.512228,-7.54104 7.604423,-20.45456 16.474719,-20.63685 9.532697,-0.19589 18.624667,21.43132 18.624667,21.43132"
id="path718"
sodipodi:nodetypes="cssssc" /><path
style="fill:#efecec;fill-opacity:1;stroke:#000000;stroke-width:0.55308px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 70.474864,221.21789 c 0,0 -0.7884,-5.92662 -0.290152,-10.53629 1.114419,-10.31033 1.370615,-18.36403 15.86117,-44.12409 14.490478,-25.76007 31.664138,-45.12505 31.664138,-45.12505 l 9.37558,-2.02296"
id="path716"
sodipodi:nodetypes="cszcc" /><path
style="fill:url(#linearGradient2389);fill-opacity:1;stroke:#000000;stroke-width:0.55308px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 87.862083,186.92143 c -5.37805,10.34989 -17.386266,34.24406 -17.386266,34.24406 0,0 2.388991,10.09811 4.762209,14.06439 4.507111,7.53258 15.592667,13.73588 27.289344,14.25327 11.69668,0.51738 29.08156,-11.32492 31.55034,-29.86748 1.79685,-13.49571 -4.27271,-26.10448 -4.27271,-26.10448 l 4.87524,-31.48276 0.5117,-43.92025 -0.33436,-16.66509 c 0,0 -6.87663,17.86859 -17.13756,34.48204 -8.66778,14.03401 -22.25846,36.3714 -29.857937,50.9963 z"
id="path726"
sodipodi:nodetypes="scszsccccss" /><path
style="fill:url(#linearGradient3199);fill-opacity:1;stroke:#000000;stroke-width:0.55308px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 132.84346,129.82269 c 0,0 -5.1591,19.43052 -9.41698,30.47643 -4.53773,11.77184 -14.58501,32.76751 -20.5614,43.89565 -3.446334,6.41713 -14.608004,24.18762 -14.923174,25.47563 -0.188723,0.77105 1.912877,17.01659 1.912877,17.01659 l 2.95525,0.91646"
id="path728-3"
sodipodi:nodetypes="cssscc" /><path
style="fill:url(#linearGradient3236);fill-opacity:1;stroke:#000000;stroke-width:0.55308px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 129.786,193.23179 c 0,0 -1.42885,24.72795 -1.20989,25.30915 0.25634,0.6804 4.69796,5.23465 4.69796,5.23465 0,0 1.40133,-9.48222 0.93038,-14.20392 -0.55956,-5.61022 -4.41845,-16.33988 -4.41845,-16.33988 z"
id="path732"
sodipodi:nodetypes="cscsc" /><path
style="fill:url(#linearGradient3166);fill-opacity:1;stroke:#000000;stroke-width:0.55308px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 92.659876,247.68958 c 0,0 0.899095,-11.30036 1.845508,-15.05594 1.776227,-7.04834 3.405935,-13.97614 6.852266,-20.39327 5.9764,-11.12814 16.42885,-26.70021 22.24419,-38.07133 4.97046,-9.7191 11.03163,-25.77799 11.03163,-25.77799 l -0.19378,14.05333 -3.64675,23.7098 c 0,0 -11.36827,21.04638 -16.12681,32.01626 -4.37023,10.07473 -11.61218,31.31532 -11.61218,31.31532 0,0 -3.633331,-0.29976 -5.367773,-0.59994 -1.734442,-0.30019 -5.026301,-1.19624 -5.026301,-1.19624 z"
id="path728"
sodipodi:nodetypes="sssccccscss" /><ellipse
id="path948"
style="fill:#e33636;stroke:#000000;stroke-width:0.55308"
cx="128.36887"
cy="218.98636"
rx="0.00054126716"
ry="0.00053431751" /><ellipse
id="path950"
style="fill:#e33636;stroke:#000000;stroke-width:0.55308"
cx="133.53671"
cy="222.83725"
rx="0.00054126716"
ry="0.00053431751" /><path
id="path4538-5"
d="m 134.77997,269.93139 v -39.1469"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542-3"
d="M 73.662232,49.575249 H 130.70829"
style="fill:none;stroke:#000000;stroke-width:0.736568;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181-3);marker-end:url(#marker1185-7)"
sodipodi:nodetypes="cc" /><path
id="path4548"
d="M 70.526184,257.68689 H 134.18441"
style="fill:none;stroke:#000000;stroke-width:0.540802;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181-3);marker-end:url(#marker1185-7)" /><text
transform="scale(0.97131606,1.029531)"
id="shank_diameter"
y="60.10556"
x="143.20679"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.35351"
y="60.10556"
x="143.20679"
id="tspan5678">S</tspan></text><text
transform="scale(0.97131606,1.029531)"
id="diameter"
y="279.82401"
x="91.862976"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.35351"
y="279.82401"
x="91.862976"
id="tspan5690">D</tspan></text><text
transform="scale(0.97131606,1.029531)"
id="cutting_edge_height"
y="177.09491"
x="158.56374"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve"><tspan
style="stroke-width:3.35351"
y="177.09491"
x="158.56374"
id="tspan10475">H</tspan><tspan
style="stroke-width:3.35351"
id="tspan895"
y="221.80833"
x="158.56374" /></text><path
id="path4538-8"
d="m 70.004914,272.49174 v -39.1469"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path897-5"
d="M 152.10819,100.27512 V 248.60004"
style="fill:none;stroke:#000000;stroke-width:1.13395;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181-3);marker-end:url(#marker1185-7)" /><path
id="path1187-6"
d="m 135.5716,97.506816 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path1189"
d="m 137.42019,249.94066 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><text
transform="scale(0.97131606,1.029531)"
id="length"
y="150.36441"
x="23.226624"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve">L</text><path
id="path543"
d="M 52.720184,40.517054 V 247.35282"
style="fill:none;stroke:#000000;stroke-width:0.943818;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181-3);marker-end:url(#marker1185-7)" /><path
id="path545"
d="m 45.672891,37.574352 h 24.62223"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path547"
d="m 47.521481,249.94066 h 24.62223"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g></g></svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1,408 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg5"
xml:space="preserve"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="bullnose.svg"
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="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.6932246"
inkscape:cx="315.37457"
inkscape:cy="765.69876"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient3234"><stop
style="stop-color:#939393;stop-opacity:1;"
offset="0"
id="stop3230" /><stop
style="stop-color:#a6a6a6;stop-opacity:1;"
offset="1"
id="stop3232" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient3197"><stop
style="stop-color:#c2c2c2;stop-opacity:1;"
offset="0"
id="stop3193" /><stop
style="stop-color:#bcbcbc;stop-opacity:1;"
offset="1"
id="stop3195" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient3164"><stop
style="stop-color:#7f7f7f;stop-opacity:1;"
offset="0"
id="stop3160" /><stop
style="stop-color:#d1d1d1;stop-opacity:1;"
offset="1"
id="stop3162" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient2387"><stop
style="stop-color:#757575;stop-opacity:1;"
offset="0"
id="stop2383" /><stop
style="stop-color:#e2e2e2;stop-opacity:1;"
offset="1"
id="stop2385" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient1597"><stop
style="stop-color:#a2a2a2;stop-opacity:1;"
offset="0"
id="stop1593" /><stop
style="stop-color:#f9f9f9;stop-opacity:1;"
offset="1"
id="stop1595" /></linearGradient><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1597"
id="linearGradient1599"
x1="87.435623"
y1="79.357056"
x2="111.22856"
y2="73.90403"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1038534,0,0,2.1038534,-119.07238,-35.438004)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2387"
id="linearGradient2389"
x1="96.292923"
y1="98.227234"
x2="115.44387"
y2="101.37556"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1038534,0,0,2.1038534,-119.07238,-35.438004)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3164"
id="linearGradient3166"
x1="105.2982"
y1="113.63973"
x2="121.38458"
y2="107.85011"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1038534,0,0,2.1038534,-119.07238,-35.438004)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3197"
id="linearGradient3199"
x1="113.28134"
y1="102.62177"
x2="105.23079"
y2="108.07093"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1038534,0,0,2.1038534,-119.07238,-35.438004)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3234"
id="linearGradient3236"
x1="117.31676"
y1="115.81714"
x2="120.31398"
y2="115.81714"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1038534,0,0,2.1038534,-119.07238,-35.438004)" /><marker
style="overflow:visible"
id="marker1181-3"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1179-6" /></marker><marker
style="overflow:visible"
id="marker1185-7"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1183-5" /></marker><marker
style="overflow:visible"
id="marker1181-3-6"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1179-6-7" /></marker><marker
style="overflow:visible"
id="marker1185-7-5"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1183-5-3" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart-3"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917-5" /></marker><marker
style="overflow:visible"
id="Arrow2Lend-6"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920-2" /></marker><marker
style="overflow:visible"
id="marker1181"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1179" /></marker><marker
style="overflow:visible"
id="marker1185"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1183" /></marker><marker
style="overflow:visible"
id="marker1173"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1171" /></marker><marker
style="overflow:visible"
id="marker1177"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1175" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917" /></marker><marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart-5"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917-3" /></marker><marker
style="overflow:visible"
id="Arrow2Lend-5"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920-6" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient12"
id="linearGradient13"
x1="69.704971"
y1="103.07113"
x2="134.92827"
y2="103.07113"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.99704654,0,0,1.0823424,-0.27976643,-12.033523)" /><linearGradient
id="linearGradient12"
inkscape:collect="always"><stop
style="stop-color:#ababab;stop-opacity:1;"
offset="0"
id="stop12" /><stop
style="stop-color:#c8c8c8;stop-opacity:1;"
offset="0.4613452"
id="stop14" /><stop
style="stop-color:#878787;stop-opacity:1;"
offset="1"
id="stop13" /></linearGradient></defs><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"><rect
style="fill:url(#linearGradient13);stroke:#000000;stroke-width:0.505334;stroke-dasharray:none;stroke-opacity:1"
id="rect11"
width="64.698654"
height="132.71904"
x="69.551346"
y="28.479811"
ry="0" /><path
style="fill:url(#linearGradient1599);fill-opacity:1;stroke:#000000;stroke-width:0.556644px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 72.352852,194.41154 c 0,0 -2.737277,-25.81442 -2.590018,-34.5932 0.133574,-7.96287 2.795485,-15.72932 5.225511,-23.31352 1.910474,-5.96265 4.124268,-11.91252 7.308614,-17.30354 4.51207,-7.63883 7.604191,-20.719807 16.474161,-20.904453 9.53233,-0.198436 18.62394,21.709223 18.62394,21.709223"
id="path718"
sodipodi:nodetypes="cssssc" /><path
style="fill:#efecec;fill-opacity:1;stroke:#000000;stroke-width:0.556644px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 69.946959,220.84881 c 0,0 -0.788368,-6.00347 -0.29014,-10.67291 1.114375,-10.44403 1.370561,-18.60217 15.860557,-44.69626 14.489994,-26.09411 31.662984,-45.7102 31.662984,-45.7102 l 9.37522,-2.04919"
id="path716"
sodipodi:nodetypes="cszcc" /><path
style="fill:url(#linearGradient2389);fill-opacity:1;stroke:#000000;stroke-width:0.556644px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 87.123765,186.57489 c -5.377881,10.48409 -17.787064,33.49585 -17.787064,33.49585 0,0 -0.292486,17.27337 1.72043,21.4831 4.878422,10.20255 14.597532,9.44769 28.78058,9.37143 14.183039,-0.0762 30.154199,0.82868 34.229169,-9.37143 1.51825,-3.80034 -4.79201,-48.771 -4.79201,-48.771 l 4.87505,-31.89101 0.17733,-61.370969 c 0,0 -7.08613,18.567549 -17.34667,35.396439 -8.66743,14.21599 -22.257589,36.84304 -29.856815,51.65759 z"
id="path726"
sodipodi:nodetypes="scszscccss" /><path
style="fill:url(#linearGradient3199);fill-opacity:1;stroke:#000000;stroke-width:0.556644px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 134.1396,139.95736 c 0,0 -19.41394,36.21877 -21.05826,39.50949 -1.64432,3.29073 -24.428986,42.92437 -25.227507,46.3102 -3.857842,16.35774 1.472347,24.86117 1.472347,24.86117 l 2.955163,0.0585"
id="path728-3"
sodipodi:nodetypes="czscc" /><path
style="fill:url(#linearGradient3236);fill-opacity:1;stroke:#000000;stroke-width:0.556644px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 129.25587,192.49981 c 0,0 -1.42879,25.0486 -1.20984,25.63734 0.25633,0.68923 4.69778,5.30253 4.69778,5.30253 0,0 1.40127,-9.60518 0.93034,-14.3881 -0.55954,-5.68297 -4.41828,-16.55177 -4.41828,-16.55177 z"
id="path732"
sodipodi:nodetypes="cscsc" /><path
style="fill:url(#linearGradient3166);fill-opacity:1;stroke:#000000;stroke-width:0.556644px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 92.131191,250.63822 c 0,0 0.89906,-14.42135 1.845437,-18.22562 1.776157,-7.13974 3.405802,-14.15738 6.852002,-20.65772 5.97616,-11.27244 16.42821,-27.04644 22.24332,-38.56501 4.97027,-9.84514 11.0312,-26.11227 11.0312,-26.11227 l -0.19376,14.23558 -3.64661,24.01724 c 0,0 -11.36784,21.31929 -16.12619,32.43143 -4.37006,10.20537 -11.61173,32.93477 -11.61173,32.93477 z"
id="path728"
sodipodi:nodetypes="cssccccscc" /><circle
id="path948"
style="fill:#e33636;stroke:#000000;stroke-width:0.556644"
cx="127.8387"
cy="218.58835"
r="0.00054124615" /><circle
id="path950"
style="fill:#e33636;stroke:#000000;stroke-width:0.556644"
cx="133.00632"
cy="222.48917"
r="0.00054124615" /><path
id="path4538-5"
d="m 134.2508,269.93139 v -39.1469"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542-3"
d="M 73.706102,41.302361 H 130.358"
style="fill:none;stroke:#000000;stroke-width:0.721494;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181-3);marker-end:url(#marker1185-7)" /><path
id="path4548"
d="M 71.795735,257.68689 H 132.44583"
style="fill:none;stroke:#000000;stroke-width:0.52787;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181-3);marker-end:url(#marker1185-7)" /><text
transform="scale(0.97131606,1.029531)"
id="shank_diameter"
y="51.767441"
x="143.3033"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.35351"
y="51.767441"
x="143.3033"
id="tspan5678">S</tspan></text><text
transform="scale(0.97131606,1.029531)"
id="diameter"
y="279.82401"
x="90.773392"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.35351"
y="279.82401"
x="90.773392"
id="tspan5690">D</tspan></text><text
transform="scale(0.97131606,1.029531)"
id="cutting_edge_height"
y="177.09491"
x="161.83253"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve"><tspan
style="stroke-width:3.35351"
y="177.09491"
x="161.83253"
id="tspan10475">H</tspan><tspan
style="stroke-width:3.35351"
id="tspan895"
y="221.80833"
x="161.83253" /></text><path
id="path4538-8"
d="m 69.475747,272.49174 v -39.1469"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path897-5"
d="M 150.78825,100.27512 V 248.60004"
style="fill:none;stroke:#000000;stroke-width:1.13395;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181-3);marker-end:url(#marker1185-7)" /><path
id="path1187-6"
d="m 135.31,97.506816 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path1189"
d="m 136.10025,249.94066 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4622"
d="M 86.412536,232.7212 74.219012,245.23131"
style="fill:none;stroke:#000000;stroke-width:0.540802;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1185-7)"
sodipodi:nodetypes="cc" /><text
transform="scale(0.97131606,1.029531)"
id="torus_radius"
y="279.48972"
x="34.310169"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.35351"
y="279.48972"
x="34.310169"
id="tspan4624">R</tspan></text><path
id="path4732"
d="M 86.412536,232.7212 59.863539,259.96635"
style="fill:none;stroke:#000000;stroke-width:0.540802;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><text
transform="scale(0.97131606,1.029531)"
id="length"
y="141.97641"
x="22.918703"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve">L</text><path
id="path448"
d="M 51.313131,32.422497 V 247.0512"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181-3);marker-end:url(#marker1185-7)" /><path
id="path450"
d="m 45.359871,28.54287 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path452"
d="M 47.208461,250.82671 H 66.483557"
style="fill:none;stroke:#000000;stroke-width:0.728929;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></g></svg>

After

Width:  |  Height:  |  Size: 23 KiB

View File

@@ -0,0 +1,452 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 210 297"
height="297mm"
width="210mm"
sodipodi:docname="chamfer.svg"
xml:space="preserve"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
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="namedview81"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.46231963"
inkscape:cx="56.238148"
inkscape:cy="608.8861"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient36360"><stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop36356" /><stop
style="stop-color:#adadad;stop-opacity:1;"
offset="0.5"
id="stop38296" /><stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop36358" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient16058"><stop
style="stop-color:#424242;stop-opacity:1;"
offset="0"
id="stop16054" /><stop
style="stop-color:#a5a5a5;stop-opacity:1;"
offset="1"
id="stop16056" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient2248"><stop
style="stop-color:#ededed;stop-opacity:1;"
offset="0"
id="stop2244" /><stop
style="stop-color:#969696;stop-opacity:1;"
offset="0.5"
id="stop12188" /><stop
style="stop-color:#f5f5f5;stop-opacity:1;"
offset="1"
id="stop2246" /></linearGradient><marker
orient="auto"
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4880"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878" /></marker><marker
style="overflow:visible"
id="marker4732"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4730" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4584"
style="overflow:visible"><path
id="path4582"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4328"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4326" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4186"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path4184"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker3948"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3946" /></marker><marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917" /></marker><marker
style="overflow:visible"
id="marker7497"
refX="0"
refY="0"
orient="auto"><path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path7495" /></marker><marker
style="overflow:visible"
id="marker7379"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7377" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480"
style="overflow:visible"><path
id="path5478"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5470"
style="overflow:visible"><path
id="path5468"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220"
style="overflow:visible"><path
id="path5218"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5210"
style="overflow:visible"><path
id="path5208"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible"><path
id="path5070"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5014"
style="overflow:visible"><path
id="path5012"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4968"
style="overflow:visible"><path
id="path4966"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4884"
style="overflow:visible"><path
id="path4882"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4856"
style="overflow:visible"><path
id="path4854"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4834"
style="overflow:visible"><path
id="path4832"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220-5"
style="overflow:visible"><path
id="path5218-3"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480-5"
style="overflow:visible"><path
id="path5478-7"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2248"
id="linearGradient2250"
x1="15.027481"
y1="135.52368"
x2="135.74386"
y2="135.52368"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.50606229,0,0,3.2109501,67.672483,-314.74842)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient16058"
id="linearGradient16060"
x1="79.854721"
y1="162.59952"
x2="146.84238"
y2="155.66852"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.92256195,0,0,0.92774555,25.742762,21.241463)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient36360"
id="linearGradient36362"
x1="17.011291"
y1="-6.2249015"
x2="161.61291"
y2="-6.2249015"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.92179124,0,0,0.92179124,23.063493,196.80696)" /><marker
style="overflow:visible"
id="Arrow2Lstart-3"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917-6" /></marker><marker
style="overflow:visible"
id="Arrow2Lend-7"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920-5" /></marker></defs><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><path
id="path3652"
d="m 38.74436,159.17482 h 133.29261 l -57.61384,63.78815 H 93.795122 Z"
style="fill:url(#linearGradient36362);fill-opacity:1;stroke:none;stroke-width:1.84358;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc" /><path
style="fill:url(#linearGradient2250);fill-opacity:1;stroke:none;stroke-width:0.337272px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 75.344277,159.23431 H 134.4782 l 1.73604,-77.645894 H 75.344277 Z"
id="path1389"
sodipodi:nodetypes="ccccc" /><path
style="fill:url(#linearGradient16060);fill-opacity:1;stroke:none;stroke-width:0.244779px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 107.13175,222.79217 37.48083,-63.72137 27.0511,0.0147 -57.12923,63.70671 z"
id="path1249"
sodipodi:nodetypes="ccccc" /><path
id="path4528"
d="M 74.119996,79.774981 V 46.231974"
style="fill:none;stroke:#000000;stroke-width:0.72438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4530"
d="M 136.89801,79.774981 V 46.231974"
style="fill:none;stroke:#000000;stroke-width:0.72438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
transform="matrix(11.107709,0,0,11.782067,27.148865,34.449906)"
id="g7053" /><path
id="path4538"
d="M 114.39915,270.09124 V 224.56122"
style="fill:none;stroke:#000000;stroke-width:0.487252;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542"
d="M 77.321236,58.014043 H 133.53382"
style="fill:none;stroke:#000000;stroke-width:0.682912;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><path
id="path4548"
d="M 57.508557,258.30918 H 88.755451"
style="fill:none;stroke:#000000;stroke-width:1.35384;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="shank_diameter"
y="52.456436"
x="97.074303"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.02681"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.02681"
y="52.456436"
x="97.074303"
id="tspan5678">S</tspan></text><text
transform="scale(0.97096033,1.0299082)"
id="diameter"
y="279.30444"
x="96.625793"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.7949px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.60577"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:27.7949px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:2.60577"
y="279.30444"
x="96.625793"
id="tspan5690">D</tspan></text><g
id="g7053-6"
transform="matrix(11.107709,0,0,11.782067,4.9334458,34.449906)" /><path
id="path4538-8"
d="M 92.719364,270.09124 V 224.56122"
style="fill:none;stroke:#000000;stroke-width:0.487252;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4548-6"
d="m 175.2226,223.90008 h 18.38097"
style="fill:none;stroke:#000000;stroke-width:0.592962;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="sesr3u8"
d="M 184.26391,219.30074 V 163.87586"
style="fill:none;stroke:#000000;stroke-width:1.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="cutting_edge_height"
y="147.42612"
x="180.79047"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="147.42612"
x="180.79047"
id="tspan7855"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">h</tspan></text><path
id="path936"
d="M 21.764217,82.083367 H 72.731009"
style="fill:none;stroke:#000000;stroke-width:0.987384;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path938"
d="m 19.64521,223.34176 h 83.99998"
style="fill:none;stroke:#000000;stroke-width:0.757536;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path940"
d="M 28.028504,219.65219 V 84.84232"
style="fill:none;stroke:#000000;stroke-width:1.17078;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="length"
y="153.26979"
x="7.001987"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="153.26979"
x="7.001987"
id="tspan942"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">L</tspan></text><path
id="path922"
d="m 175.2226,159.87087 h 18.38097"
style="fill:none;stroke:#000000;stroke-width:0.592962;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4520"
d="M 74.787333,81.578179 V 159.26884 H 39.23214 l 54.033818,63.69413 h 20.628002 l 57.65522,-63.69413 H 136.27493 V 81.578179"
style="fill:#e4e4e4;fill-opacity:0.11114;stroke:#000000;stroke-width:1.84358;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cccccccc" /><path
id="path1"
d="m 117.83358,258.30918 h 31.24691"
style="fill:none;stroke:#000000;stroke-width:1.35384;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><path
d="m 68.609456,190.97292 c 21.466611,-11.73025 52.098084,-11.48475 70.198734,0"
id="path5698"
style="fill:none;fill-opacity:1;stroke:#000025;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)"
sodipodi:nodetypes="cc" /><text
transform="scale(0.97096033,1.0299082)"
id="cutting_edge_angle"
y="175.6073"
x="129.30106"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.02681"
xml:space="preserve"><tspan
style="stroke-width:3.02681"
y="175.6073"
x="129.30106"
id="tspan5718">α</tspan></text></svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@@ -0,0 +1,668 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 210 297"
height="297mm"
width="210mm"
sodipodi:docname="dovetail.svg"
xml:space="preserve"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
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="namedview81"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.54058751"
inkscape:cx="129.48875"
inkscape:cy="674.26641"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient82685"><stop
style="stop-color:#cccccc;stop-opacity:1;"
offset="0"
id="stop82681" /><stop
style="stop-color:#fcfcfc;stop-opacity:1;"
offset="0.25040859"
id="stop87441" /><stop
style="stop-color:#6b6b6b;stop-opacity:1;"
offset="0.55378878"
id="stop92591" /><stop
style="stop-color:#c2c2c2;stop-opacity:1;"
offset="1"
id="stop82683" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient36741"><stop
style="stop-color:#f8f8f8;stop-opacity:1;"
offset="0"
id="stop36737" /><stop
style="stop-color:#565656;stop-opacity:1;"
offset="1"
id="stop36739" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient20895"><stop
style="stop-color:#767676;stop-opacity:1;"
offset="0"
id="stop20891" /><stop
style="stop-color:#bfbfbf;stop-opacity:1;"
offset="1"
id="stop20893" /></linearGradient><marker
orient="auto"
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4880"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878" /></marker><marker
style="overflow:visible"
id="marker4732"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4730" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4584"
style="overflow:visible"><path
id="path4582"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4328"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4326" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4186"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path4184"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker3948"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3946" /></marker><marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917" /></marker><marker
style="overflow:visible"
id="marker7497"
refX="0"
refY="0"
orient="auto"><path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path7495" /></marker><marker
style="overflow:visible"
id="marker7379"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7377" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480"
style="overflow:visible"><path
id="path5478"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5470"
style="overflow:visible"><path
id="path5468"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220"
style="overflow:visible"><path
id="path5218"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5210"
style="overflow:visible"><path
id="path5208"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible"><path
id="path5070"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5014"
style="overflow:visible"><path
id="path5012"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4968"
style="overflow:visible"><path
id="path4966"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4884"
style="overflow:visible"><path
id="path4882"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4856"
style="overflow:visible"><path
id="path4854"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4834"
style="overflow:visible"><path
id="path4832"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220-5"
style="overflow:visible"><path
id="path5218-3"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480-5"
style="overflow:visible"><path
id="path5478-7"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient36360"
id="linearGradient36362"
x1="83.83268"
y1="-3.8552091"
x2="46.759789"
y2="-3.9131644"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1183959,0,0,1,8.7097889,204.73286)" /><linearGradient
inkscape:collect="always"
id="linearGradient36360"><stop
style="stop-color:#929292;stop-opacity:1;"
offset="0"
id="stop36356" /><stop
style="stop-color:#454545;stop-opacity:1;"
offset="0.33737543"
id="stop38296" /></linearGradient><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient16058"
id="linearGradient16060"
x1="79.854721"
y1="162.59952"
x2="146.84238"
y2="155.66852"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.92855971,0,0,1.0064595,32.52907,14.271573)" /><linearGradient
inkscape:collect="always"
id="linearGradient16058"><stop
style="stop-color:#424242;stop-opacity:1;"
offset="0"
id="stop16054" /><stop
style="stop-color:#a5a5a5;stop-opacity:1;"
offset="1"
id="stop16056" /></linearGradient><marker
orient="auto"
refY="0"
refX="0"
id="marker4186-7"
style="overflow:visible"><path
id="path4184-5"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4584-3"
style="overflow:visible"><path
id="path4582-5"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4732-6"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4730-2" /></marker><marker
style="overflow:visible"
id="marker3948-9"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3946-1" /></marker><marker
style="overflow:visible"
id="marker4328-2"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4326-7" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart-0"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917-9" /></marker><marker
style="overflow:visible"
id="Arrow2Lend-3"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920-6" /></marker><marker
style="overflow:visible"
id="marker4880-0"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878-6" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker7593-2"
style="overflow:visible"><path
id="path7591-6"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072-1"
style="overflow:visible"><path
id="path5070-8"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient20895"
id="linearGradient20691"
gradientUnits="userSpaceOnUse"
x1="88.003334"
y1="210.563"
x2="114.51674"
y2="205.59695"
gradientTransform="matrix(0.85795068,0,0,-0.88988678,30.851441,397.38744)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient36741"
id="linearGradient36743"
x1="83.864883"
y1="184.47689"
x2="87.814056"
y2="184.47688"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(19.050002,16.404171)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient82685"
id="linearGradient82687"
x1="62.931042"
y1="139.99037"
x2="103.97852"
y2="139.99037"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(19.050002,16.404171)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient20895"
id="linearGradient2124"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.69743733,0,0,-0.88988678,152.63783,397.38744)"
x1="88.003334"
y1="210.563"
x2="114.51674"
y2="205.59695" /><marker
style="overflow:visible"
id="Arrow2Lstart-0-7"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917-9-5" /></marker><marker
style="overflow:visible"
id="Arrow2Lend-3-3"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920-6-5" /></marker></defs><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><path
id="path4520"
d="M 70.19816,70.202519 V 99.71427 l 11.919592,11.52011 v 74.30089 H 69.726311 l -31.824323,32.02862 v 6.56022 H 167.83564 v -6.56022 l -30.766,-32.02862 H 124.73173 V 111.23438 L 136.90256,99.71427 V 70.202519"
style="opacity:1;fill:url(#linearGradient82687);fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cccccccccccccc" /><path
id="path3652"
d="m 48.909997,223.06578 28.012444,-37.32972 h 26.076819 l -0.56306,37.32972 h -7.908766 z"
style="fill:url(#linearGradient36362);fill-opacity:1;stroke:none;stroke-width:2.11508;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cccccc" /><path
id="path4528"
d="M 69.474203,68.615013 V 30.269883"
style="fill:none;stroke:#000000;stroke-width:0.806685;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4530"
d="M 137.57851,68.615013 V 30.269883"
style="fill:none;stroke:#000000;stroke-width:0.806685;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4538"
d="M 169.34872,272.73189 V 225.4483"
style="fill:none;stroke:#000000;stroke-width:0.517182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542"
d="M 71.455286,43.051593 H 135.42065"
style="fill:none;stroke:#000000;stroke-width:0.75876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><path
id="path4548"
d="m 39.88582,261.39896 h 126.8202"
style="fill:none;stroke:#000000;stroke-width:0.75546;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="shank_diameter"
y="37.599888"
x="94.049088"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.28362"
y="37.599888"
x="94.049088"
id="tspan5678">S</tspan></text><text
transform="scale(0.97096033,1.0299082)"
id="diameter"
y="281.67874"
x="92.846893"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.28362"
y="281.67874"
x="92.846893"
id="tspan5690">D</tspan></text><path
d="m 19.298339,235.76619 c 1.429535,1.36553 3.735303,3.55705 4.975082,5.64798 1.514039,2.5534 1.841147,5.00887 2.070406,6.27699"
id="path5698"
style="fill:none;fill-opacity:1;stroke:#000025;stroke-width:0.448218;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)"
inkscape:transform-center-x="-2.9755719"
inkscape:transform-center-y="-1.0728163"
sodipodi:nodetypes="csc" /><text
transform="scale(0.97096033,1.0299082)"
id="cutting_angle"
y="260.09406"
x="4.3604145"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
style="stroke-width:3.28362"
y="260.09406"
x="4.3604145"
id="tspan5718">α</tspan></text><path
style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 3.3829526,249.20002 36.214843,218.00071"
id="path140257-6"
sodipodi:nodetypes="cc" /><path
style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 62.754374,248.9732 3.4093862,248.9348"
id="path140655-2"
sodipodi:nodetypes="cc" /><path
id="path4538-8"
d="M 37.447153,272.73189 V 225.4483"
style="fill:none;stroke:#000000;stroke-width:0.517182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path4548-6"
d="m 139.2642,185.32115 h 55.29328"
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path4538-7"
d="M 184.18135,244.02043 V 226.4704"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="dovetail_height"
y="210.32556"
x="176.63176"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0252px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="210.32556"
x="176.63176"
id="tspan7855">H</tspan></text><path
id="rect6239"
style="opacity:1;fill:url(#linearGradient36743);fill-opacity:1;stroke-width:1.98452;stroke-linecap:round;stroke-linejoin:round"
d="m 102.91489,185.57561 h 3.34627 l 10.05418,37.49017 h -10.05418 -3.34627 z"
sodipodi:nodetypes="cccccc" /><path
style="fill:url(#linearGradient20691);fill-opacity:1;stroke:none;stroke-width:0.231185px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 105.3259,185.73606 8.90838,37.32972 h 18.36179 L 115.5737,185.73606 Z"
id="path20293"
sodipodi:nodetypes="ccccc" /><path
id="path128465"
d="m 169.78487,224.47604 h 24.60161"
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path130891"
d="M 184.18135,183.1661 V 165.61607"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><path
style="fill:none;stroke:#000000;stroke-width:0.389415;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 37.217354,217.10856 -19.77792,-0.0345"
id="path140257"
sodipodi:nodetypes="cc" /><path
style="fill:none;stroke:#000000;stroke-width:0.480086;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 36.400065,225.03912 5.692084,225.02256"
id="path140655"
sodipodi:nodetypes="cc" /><path
id="path149716"
d="m 127.43984,128.01978 v 0 h 20.17804"
style="fill:none;stroke:#000000;stroke-width:0.60268;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><path
id="path149718"
d="m 62.19167,128.01978 v 0 h 17.599515"
style="fill:none;stroke:#000000;stroke-width:0.562856;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="neck_diameter"
y="136.29568"
x="155.36356"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0252px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="136.29568"
x="155.36356"
id="tspan150142">N</tspan></text><path
style="fill:url(#linearGradient16060);fill-opacity:1;stroke:none;stroke-width:0.255779px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 133.41037,223.06578 -19.26943,-37.32972 h 12.36938 l 31.28927,37.32972 z"
id="path1249"
sodipodi:nodetypes="ccccc" /><path
style="fill:url(#linearGradient2124);fill-opacity:1;stroke:none;stroke-width:0.20844px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 92.096736,185.73606 -7.24171,37.32972 H 69.928559 l 13.83763,-37.32972 z"
id="path1726"
sodipodi:nodetypes="ccccc" /><path
id="path12753"
d="M 31.781364,244.5496 V 226.99957"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="crest"
y="189.73468"
x="21.637808"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="189.73468"
x="21.637808"
id="tspan12755"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">C</tspan></text><path
id="path12759"
d="M 31.781364,215.44529 V 197.89526"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><path
id="path13291"
d="M 11.143866,123.62717 V 73.232952"
style="fill:none;stroke:#000000;stroke-width:1.25385;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><path
id="path13689"
d="M 11.143866,221.52029 V 170.03653"
style="fill:none;stroke:#000000;stroke-width:1.26734;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><text
transform="scale(0.97096033,1.0299082)"
id="length"
y="152.73724"
x="2.7655475"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="152.73724"
x="2.7655475"
id="tspan14087"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">L</tspan></text><path
style="fill:none;stroke:#000000;stroke-width:0.685444;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 68.709128,69.463483 5.6901778,69.447083"
id="path14589"
sodipodi:nodetypes="cc" /><path
style="fill:none;stroke:#000000;stroke-width:0.512609;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 80.962038,111.80401 -34.734734,-0.034"
id="path17382"
sodipodi:nodetypes="cc" /><path
style="fill:none;stroke:#000000;stroke-width:0.497831;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="m 80.961631,184.29301 -33.019962,-0.0166"
id="path17384"
sodipodi:nodetypes="cc" /><path
id="path17386"
d="M 57.181365,131.83693 V 114.2869"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="neck_length"
y="154.40077"
x="49.832695"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="154.40077"
x="49.832695"
id="tspan17388"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">h</tspan></text><path
id="path17392"
d="M 57.181365,182.10773 V 164.55771"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /></svg>

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -0,0 +1,284 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 210 297"
height="297mm"
width="210mm"
sodipodi:docname="drill.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xml:space="preserve"
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"
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
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1050"
id="namedview45"
showgrid="false"
inkscape:zoom="0.35355339"
inkscape:cx="-82.024387"
inkscape:cy="446.89149"
inkscape:window-x="1680"
inkscape:window-y="1050"
inkscape:window-maximized="0"
inkscape:current-layer="layer1"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm" /><defs
id="defs2"><linearGradient
id="linearGradient24"
inkscape:collect="always"><stop
style="stop-color:#747474;stop-opacity:1;"
offset="0"
id="stop22" /><stop
style="stop-color:#d0d0d0;stop-opacity:1;"
offset="0.5"
id="stop23" /><stop
style="stop-color:#888888;stop-opacity:1;"
offset="1"
id="stop24" /></linearGradient><linearGradient
id="linearGradient17"
inkscape:collect="always"><stop
style="stop-color:#353535;stop-opacity:1;"
offset="0"
id="stop14" /><stop
style="stop-color:#8c8c8c;stop-opacity:1;"
offset="0.19591366"
id="stop15" /><stop
style="stop-color:#787878;stop-opacity:1;"
offset="0.59795684"
id="stop16" /><stop
style="stop-color:#c2c2c2;stop-opacity:1;"
offset="1"
id="stop17" /></linearGradient><marker
orient="auto"
refY="0"
refX="0"
id="marker8709"
style="overflow:visible"><path
id="path8707"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0.0"
refX="0.0"
id="marker8663"
style="overflow:visible;"><path
id="path8661"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker8617"
style="overflow:visible"><path
id="path8615"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker8589"
style="overflow:visible"><path
id="path8587"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
style="overflow:visible"
id="Arrow1Lend"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path841" /></marker><marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path838" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker8589-7"
style="overflow:visible"><path
id="path8587-0"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker8663-8"
style="overflow:visible"><path
id="path8661-1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient17"
id="linearGradient6"
x1="94.449516"
y1="81.596542"
x2="120.08757"
y2="93.767372"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient17"
id="linearGradient10"
x1="94.17083"
y1="212.90689"
x2="121.95435"
y2="223.75481"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient24"
id="linearGradient22"
gradientUnits="userSpaceOnUse"
x1="86.6043"
y1="160.5684"
x2="120.07901"
y2="166.74232" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient24"
id="linearGradient25"
gradientUnits="userSpaceOnUse"
x1="85.585648"
y1="56.254807"
x2="119.9315"
y2="55.827442" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient24"
id="linearGradient27"
x1="87.973953"
y1="244.90494"
x2="123.34863"
y2="244.90494"
gradientUnits="userSpaceOnUse" /><marker
style="overflow:visible"
id="marker1181"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1179" /></marker><marker
style="overflow:visible"
id="marker1177"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1175" /></marker></defs><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
id="layer1"><path
id="path834"
d="m 144.3418,237 v 0 l 10,-10 -50.0001,50.00001 L 54.341681,227 v 0 0"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
d="m 62.461636,234.03418 a 60,60 0 0 1 84.200524,0.43363"
id="path836"
style="opacity:1;fill:none;fill-opacity:0.137255;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1177)" /><path
id="path8569"
d="M 84.341681,36.999999 V 17 17"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path8571"
d="M 124.3418,36.999999 V 17"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path8573"
d="m 124.07122,37.830996 h 50.00001"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path8575"
d="m 104.3417,277.00001 h 70.0001"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path8577"
d="m 164.3418,41.018316 0,232.988274"
style="fill:none;stroke:#000000;stroke-width:1.09352;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1177)"
sodipodi:nodetypes="cc" /><path
id="path8579"
d="m 124.3418,27 h 30"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181)" /><text
id="length"
y="153.99063"
x="169.65027"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34.925px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34.925px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.264583"
y="153.99063"
x="169.65027"
id="tspan8765">H</tspan></text><text
id="diameter"
y="33.728676"
x="154.29016"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34.925px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34.925px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.264583"
y="33.728676"
x="154.29016"
id="tspan8769">D</tspan></text><text
id="tip_angle"
y="217.77318"
x="56.409134"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34.925px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34.925px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.264583"
y="217.77318"
x="56.409134"
id="tspan8783">α</tspan></text><path
id="path8579-9"
d="M 54.34168,27 H 84.341679"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1177)" /><path
style="fill:url(#linearGradient6);stroke-width:1"
d="m 93.521138,160.41496 c 0,0 23.930002,-52.24121 28.232592,-73.879691 4.30259,-21.638482 -3.08812,-50.419642 -3.08812,-50.419642 0,0 -15.74327,20.932557 -23.944778,42.994787 -8.201509,22.062226 -7.285681,36.220256 -7.408333,40.983826 -0.122652,4.76357 1.463359,17.23686 2.207457,20.53113 0.744098,3.29427 4.001182,19.78959 4.001182,19.78959 z"
id="path2"
sodipodi:nodetypes="czczzzc" /><path
style="fill:url(#linearGradient22);stroke-width:1"
d="m 89.240798,231.4386 c 0,0 6.184338,-24.30953 11.276812,-35.31234 5.09248,-11.0028 18.81165,-42.68518 21.04903,-62.19336 1.79654,-15.66437 -0.16668,-44.763867 -0.16668,-44.763867 0,0 -15.85838,44.211327 -22.937357,58.977097 -7.078978,14.76577 -11.58872,34.34936 -11.71137,39.11293 -0.12265,4.76357 -0.354666,24.99701 0.257132,29.68034 0.611798,4.68334 2.232433,14.4992 2.232433,14.4992 z"
id="path3"
sodipodi:nodetypes="czsczzzc" /><path
style="fill:url(#linearGradient25);stroke-width:1"
d="m 88.447048,100.99902 c 0,0 6.430122,-24.372129 13.922652,-37.693593 7.49252,-13.321464 21.1929,-29.456013 21.04903,-37.057943 H 86.424061 v 30.571993 c -0.07271,4.764594 -0.556658,24.20325 -0.209446,29.68034 0.347215,5.47709 2.232433,14.499203 2.232433,14.499203 z"
id="path4"
sodipodi:nodetypes="czccszc" /><path
style="fill:url(#linearGradient27);fill-opacity:1;stroke-width:1"
d="m 87.973957,250.03125 11.972395,14.75052 22.026568,-50.86615 c 0,0 2.17121,25.40167 1.05833,33.3375 -1.11288,7.93583 -2.50285,12.56362 -3.96875,14.02292 l -14.68438,14.61823 -12.832288,-12.63386 c -2.151374,-2.11811 -3.571875,-13.22916 -3.571875,-13.22916 z"
id="path5"
sodipodi:nodetypes="ccczscsc" /><path
style="fill:url(#linearGradient10);fill-opacity:1;stroke-width:1"
d="m 99.946352,264.81484 c 0,0 20.443408,-34.21973 23.349478,-57.24922 2.90607,-23.02949 -7.54063,-48.15416 -7.54063,-48.15416 0,0 -12.30369,28.34089 -20.505201,50.40312 -8.201509,22.06223 -7.408333,38.36459 -7.408333,38.36459 0,0 1.650448,7.13407 3.704166,10.05416 2.053718,2.92009 8.40052,6.58151 8.40052,6.58151 z"
id="path1"
sodipodi:nodetypes="czczczc" /></g></svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -0,0 +1,626 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 210 297.00001"
height="297mm"
width="210mm"
sodipodi:docname="endmill.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
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
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1632"
inkscape:window-height="1013"
id="namedview71"
showgrid="false"
inkscape:zoom="0.75573409"
inkscape:cx="207.74503"
inkscape:cy="625.21991"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm" />
<defs
id="defs2">
<marker
style="overflow:visible"
id="marker1185"
refX="0"
refY="0"
orient="auto">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1183" />
</marker>
<marker
style="overflow:visible"
id="marker1181"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid">
<path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1179" />
</marker>
<marker
style="overflow:visible"
id="marker1177"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1175" />
</marker>
<marker
style="overflow:visible"
id="marker1173"
refX="0"
refY="0"
orient="auto">
<path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1171" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto">
<path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path899" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Mstart"
refX="0"
refY="0"
orient="auto">
<path
transform="scale(0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path923" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Mend"
refX="0"
refY="0"
orient="auto">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path908" />
</marker>
<marker
style="overflow:visible"
id="marker7497"
refX="0"
refY="0"
orient="auto">
<path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path7495" />
</marker>
<marker
style="overflow:visible"
id="marker7379"
refX="0"
refY="0"
orient="auto">
<path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7377" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="marker5480"
style="overflow:visible">
<path
id="path5478"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="marker5470"
style="overflow:visible">
<path
id="path5468"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="marker5220"
style="overflow:visible">
<path
id="path5218"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="marker5210"
style="overflow:visible">
<path
id="path5208"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible">
<path
id="path5070"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="marker5014"
style="overflow:visible">
<path
id="path5012"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="marker4968"
style="overflow:visible">
<path
id="path4966"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="marker4884"
style="overflow:visible">
<path
id="path4882"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="marker4856"
style="overflow:visible">
<path
id="path4854"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="marker4834"
style="overflow:visible">
<path
id="path4832"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="marker5220-5"
style="overflow:visible">
<path
id="path5218-3"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="marker5480-5"
style="overflow:visible">
<path
id="path5478-7"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient12"
id="linearGradient13"
x1="69.704971"
y1="103.07113"
x2="134.92827"
y2="103.07113"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.99704654,0,0,1.0823424,2.9509263,-91.058424)" />
<linearGradient
id="linearGradient12"
inkscape:collect="always">
<stop
style="stop-color:#ababab;stop-opacity:1;"
offset="0"
id="stop12" />
<stop
style="stop-color:#c8c8c8;stop-opacity:1;"
offset="0.4613452"
id="stop14" />
<stop
style="stop-color:#878787;stop-opacity:1;"
offset="1"
id="stop13" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1597"
id="linearGradient1599"
x1="87.435623"
y1="79.357056"
x2="111.22856"
y2="73.90403"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1038534,0,0,2.1038534,-115.84169,-114.4629)" />
<linearGradient
inkscape:collect="always"
id="linearGradient1597">
<stop
style="stop-color:#a2a2a2;stop-opacity:1;"
offset="0"
id="stop1593" />
<stop
style="stop-color:#f9f9f9;stop-opacity:1;"
offset="1"
id="stop1595" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2387"
id="linearGradient2389"
x1="96.292923"
y1="98.227234"
x2="115.44387"
y2="101.37556"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1038534,0,0,2.1038534,-115.84169,-114.4629)" />
<linearGradient
inkscape:collect="always"
id="linearGradient2387">
<stop
style="stop-color:#757575;stop-opacity:1;"
offset="0"
id="stop2383" />
<stop
style="stop-color:#e2e2e2;stop-opacity:1;"
offset="1"
id="stop2385" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3197"
id="linearGradient3199"
x1="111.11802"
y1="111.02544"
x2="106.31245"
y2="108.40375"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1038534,0,0,2.1038534,-115.84169,-114.4629)" />
<linearGradient
inkscape:collect="always"
id="linearGradient3197">
<stop
style="stop-color:#f1f1f1;stop-opacity:1;"
offset="0"
id="stop3193" />
<stop
style="stop-color:#bcbcbc;stop-opacity:1;"
offset="1"
id="stop3195" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3234"
id="linearGradient3236"
x1="112.84533"
y1="125.81902"
x2="123.96173"
y2="122.40662"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1038534,0,0,2.1038534,-115.84169,-114.4629)" />
<linearGradient
inkscape:collect="always"
id="linearGradient3234">
<stop
style="stop-color:#939393;stop-opacity:1;"
offset="0"
id="stop3230" />
<stop
style="stop-color:#a6a6a6;stop-opacity:1;"
offset="1"
id="stop3232" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3164"
id="linearGradient3166"
x1="105.2982"
y1="113.63973"
x2="121.38458"
y2="107.85011"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.1038534,0,0,2.1038534,-115.84169,-114.4629)" />
<linearGradient
inkscape:collect="always"
id="linearGradient3164">
<stop
style="stop-color:#7f7f7f;stop-opacity:1;"
offset="0"
id="stop3160" />
<stop
style="stop-color:#d1d1d1;stop-opacity:1;"
offset="1"
id="stop3162" />
</linearGradient>
<marker
style="overflow:visible"
id="marker1177-3"
refX="0"
refY="0"
orient="auto">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1175-6" />
</marker>
</defs>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0.19510138,82.181594)"
id="layer1">
<rect
style="fill:url(#linearGradient13);stroke:#000000;stroke-width:0.505334;stroke-dasharray:none;stroke-opacity:1"
id="rect11"
width="64.698654"
height="132.71904"
x="72.782036"
y="-50.545094"
ry="0" />
<path
style="fill:url(#linearGradient1599);fill-opacity:1;stroke:#000000;stroke-width:0.556644px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 73.466879,130.73247 c 0,0 -0.620613,-41.160251 -0.473353,-49.939031 0.13357,-7.96287 2.79549,-15.72932 5.22551,-23.31352 1.91048,-5.96265 4.12427,-11.91252 7.30861,-17.30354 4.51207,-7.63883 7.60419,-20.719807 16.474164,-20.904453 9.53233,-0.198436 18.62394,21.709223 18.62394,21.709223"
id="path718"
sodipodi:nodetypes="cssssc" />
<path
style="fill:#efecec;fill-opacity:1;stroke:#000000;stroke-width:0.556644px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 73.177656,141.82391 c 0,0 -0.78837,-6.00347 -0.29014,-10.67291 1.11437,-10.44403 1.37056,-18.60217 15.86055,-44.696261 14.489994,-26.09411 31.662984,-45.7102 31.662984,-45.7102 l 9.37522,-2.04919"
id="path716"
sodipodi:nodetypes="cszcc" />
<path
style="fill:url(#linearGradient2389);fill-opacity:1;stroke:#000000;stroke-width:0.556644px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 90.354456,107.54999 c -5.37788,10.48409 -17.78706,33.49585 -17.78706,33.49585 l 0.133446,31.04019 64.640488,-0.36694 -0.28446,-57.96115 0.32374,-31.891011 0.17733,-54.368947 c 0,0 -7.08613,11.565527 -17.34667,28.394417 -8.66743,14.21599 -22.257594,36.843037 -29.856814,51.657591 z"
id="path726"
sodipodi:nodetypes="sccccccss" />
<path
style="fill:url(#linearGradient3199);fill-opacity:1;stroke:#000000;stroke-width:0.556644px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 137.34361,83.190894 v -9.144041 c -9.14336,10.161663 -21.70648,35.009887 -28.86885,48.174127 -7.16238,13.16425 -19.643941,49.67367 -19.643941,49.67367 h 6.659336"
id="path728-3"
sodipodi:nodetypes="cczcc" />
<path
style="fill:url(#linearGradient3236);fill-opacity:1;stroke:#000000;stroke-width:0.556644px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 126.87106,151.60714 c -2.15464,5.10718 -9.05702,20.16289 -8.31277,20.16289 h 18.90156 l -0.32247,-39.6761 c 0,0 -8.11168,14.40604 -10.26632,19.51321 z"
id="path732"
sodipodi:nodetypes="zsccz" />
<path
style="fill:url(#linearGradient3166);fill-opacity:1;stroke:#000000;stroke-width:0.556644px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 96.267051,171.76649 c 0,0 11.411119,-27.20449 15.839639,-38.67662 8.23859,-20.46077 18.66102,-34.124096 25.47471,-45.859091 l -0.0912,35.393001 c 0,0 -9.03799,15.25364 -13.23571,23.11519 -4.19773,7.86154 -10.71459,26.02752 -10.71459,26.02752 z"
id="path728"
sodipodi:nodetypes="czcczcc" />
<circle
id="path948"
style="fill:#e33636;stroke:#000000;stroke-width:0.556644"
cx="131.06938"
cy="139.56345"
r="0.00054124615" />
<circle
id="path950"
style="fill:#e33636;stroke:#000000;stroke-width:0.556644"
cx="136.23701"
cy="143.46426"
r="0.00054124615" />
<path
id="path4538"
d="m 137.48175,191.92376 v -39.1469"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path4542"
d="m 75.30563,-39.544878 h 59.04385"
style="fill:none;stroke:#000000;stroke-width:0.736568;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1177)" />
<path
id="path4548"
d="M 73.227916,179.67926 H 136.88619"
style="fill:none;stroke:#000000;stroke-width:0.540802;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1177)" />
<text
transform="scale(0.97131606,1.029531)"
id="shank_diameter"
y="-26.972244"
x="144.89879"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.35351"
y="-26.972244"
x="144.89879"
id="tspan5678">S</tspan></text>
<text
transform="scale(0.97131606,1.029531)"
id="diameter"
y="204.05394"
x="94.644455"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.35351"
y="204.05394"
x="94.644455"
id="tspan5690">D</tspan></text>
<text
transform="scale(0.97131606,1.029531)"
id="cutting_edge_height"
y="101.32485"
x="161.34537"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve"><tspan
style="stroke-width:3.35351"
y="101.32485"
x="161.34537"
id="tspan10475">H</tspan><tspan
style="stroke-width:3.35351"
id="tspan895"
y="146.03827"
x="161.34537" /></text>
<path
id="path4538-8"
d="m 72.706646,194.48411 v -39.1469"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path897"
d="M 150.31501,22.267499 V 170.59241"
style="fill:none;stroke:#000000;stroke-width:1.13395;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1177)" />
<path
id="path1187"
d="m 133.77842,19.499193 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path1189"
d="m 135.62701,171.93303 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
transform="scale(0.97131606,1.029531)"
id="length"
y="65.51088"
x="24.433861"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.7707px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.35351"
xml:space="preserve">L</text>
<path
id="path448"
d="M 54.901487,-46.301137 V 168.32757"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1177)" />
<path
id="path450"
d="m 48.948231,-50.709931 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path452"
d="m 50.796821,172.10308 h 24.62222"
style="fill:none;stroke:#000000;stroke-width:0.823854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -0,0 +1,476 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 210 297"
height="297mm"
width="210mm"
sodipodi:docname="probe.svg"
xml:space="preserve"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
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="namedview81"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.89263468"
inkscape:cx="192.68801"
inkscape:cy="573.02277"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient6066"><stop
style="stop-color:#ff8a8a;stop-opacity:1;"
offset="0"
id="stop6062" /><stop
style="stop-color:#d03a3a;stop-opacity:1;"
offset="0.71559364"
id="stop6064" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient82685"><stop
style="stop-color:#e5e5e5;stop-opacity:1;"
offset="0"
id="stop82681" /><stop
style="stop-color:#fcfcfc;stop-opacity:1;"
offset="0.25040859"
id="stop87441" /><stop
style="stop-color:#6b6b6b;stop-opacity:1;"
offset="0.51371443"
id="stop92591" /><stop
style="stop-color:#c2c2c2;stop-opacity:1;"
offset="1"
id="stop82683" /></linearGradient><marker
orient="auto"
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4880"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878" /></marker><marker
style="overflow:visible"
id="marker4732"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4730" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4584"
style="overflow:visible"><path
id="path4582"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4328"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4326" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4186"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path4184"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker3948"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3946" /></marker><marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917" /></marker><marker
style="overflow:visible"
id="marker7497"
refX="0"
refY="0"
orient="auto"><path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path7495" /></marker><marker
style="overflow:visible"
id="marker7379"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7377" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480"
style="overflow:visible"><path
id="path5478"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5470"
style="overflow:visible"><path
id="path5468"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220"
style="overflow:visible"><path
id="path5218"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5210"
style="overflow:visible"><path
id="path5208"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible"><path
id="path5070"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5014"
style="overflow:visible"><path
id="path5012"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4968"
style="overflow:visible"><path
id="path4966"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4884"
style="overflow:visible"><path
id="path4882"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4856"
style="overflow:visible"><path
id="path4854"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4834"
style="overflow:visible"><path
id="path4832"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220-5"
style="overflow:visible"><path
id="path5218-3"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480-5"
style="overflow:visible"><path
id="path5478-7"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4186-7"
style="overflow:visible"><path
id="path4184-5"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4584-3"
style="overflow:visible"><path
id="path4582-5"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4732-6"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4730-2" /></marker><marker
style="overflow:visible"
id="marker3948-9"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3946-1" /></marker><marker
style="overflow:visible"
id="marker4328-2"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4326-7" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart-0"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917-9" /></marker><marker
style="overflow:visible"
id="Arrow2Lend-3"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920-6" /></marker><marker
style="overflow:visible"
id="marker4880-0"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878-6" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker7593-2"
style="overflow:visible"><path
id="path7591-6"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072-1"
style="overflow:visible"><path
id="path5070-8"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient82685"
id="linearGradient82687"
x1="63.574368"
y1="139.99037"
x2="105.00958"
y2="139.99037"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(18.212441,21.00482)" /><radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6066"
id="radialGradient6068"
cx="111.5761"
cy="191.32919"
fx="111.5761"
fy="191.32919"
r="13.077827"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-9.3042326,36.879824)" /></defs><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><path
id="path4520"
d="m 69.360599,84.328167 v 29.511743 l 26.736259,11.52007 v 94.93839 h 12.980732 v -94.93839 l 26.9875,-11.52007 V 84.328167"
style="opacity:1;fill:url(#linearGradient82687);fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cccccccc" /><path
id="path4528"
d="M 68.636642,84.328167 V 45.983037"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4530"
d="M 136.74104,84.328167 V 45.983037"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
transform="matrix(12.050135,0,0,17.638759,19.26778,-54.225586)"
id="g7053"
style="stroke-width:0.0685915;stroke-dasharray:none"><path
style="fill:none;stroke:#000000;stroke-width:0.0685915;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8,16 v 2"
id="path4536" /></g><path
id="path4542"
d="M 70.617725,58.764747 H 134.58318"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><path
id="path4546"
d="m 117.60648,253.80012 v 0 h 20.17804"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><text
transform="scale(0.97096033,1.0299082)"
id="shaft_diameter"
y="52.856747"
x="93.186386"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.28362"
y="52.856747"
x="93.186386"
id="tspan5678">S</tspan></text><text
transform="scale(0.97096033,1.0299082)"
id="diameter"
y="254.42278"
x="50.195675"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
style="stroke-width:3.28362"
y="254.42278"
x="50.195675"
id="tspan10475">d</tspan></text><path
id="path4546-7"
d="m 69.82078,253.80012 v 0 h 17.599515"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><g
id="g7053-6"
transform="matrix(12.050135,0,0,17.638759,-7.4783305,-54.225586)"
style="stroke-width:0.0685915;stroke-dasharray:none"><path
style="fill:none;stroke:#000000;stroke-width:0.0685915;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8,16 v 2"
id="path4536-1" /></g><path
id="path4548-6"
d="m 114.16017,125.89217 h 68.9765"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4538-7"
d="M 176.9939,160.14754 V 129.34615"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="length"
y="182.93718"
x="169.22942"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0252px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="182.93718"
x="169.22942"
id="tspan7855">L</tspan></text><path
id="path128465"
d="m 106.00367,241.03793 h 76.962"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path130891"
d="M 176.9939,236.31156 V 201.77961"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><circle
style="opacity:1;fill:url(#radialGradient6068);fill-opacity:1;stroke-width:0.600001;stroke-linecap:round;stroke-linejoin:round"
id="path4652"
cx="102.27185"
cy="228.20888"
r="13.077827" /></svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@@ -0,0 +1,508 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 210 297"
height="297mm"
width="210mm"
sodipodi:docname="radius.svg"
xml:space="preserve"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
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="namedview81"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.68132595"
inkscape:cx="371.33475"
inkscape:cy="606.90481"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient36360"><stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop36356" /><stop
style="stop-color:#adadad;stop-opacity:1;"
offset="0.5"
id="stop38296" /><stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop36358" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient16058"><stop
style="stop-color:#424242;stop-opacity:1;"
offset="0"
id="stop16054" /><stop
style="stop-color:#a5a5a5;stop-opacity:1;"
offset="1"
id="stop16056" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient2248"><stop
style="stop-color:#ededed;stop-opacity:1;"
offset="0"
id="stop2244" /><stop
style="stop-color:#969696;stop-opacity:1;"
offset="0.5"
id="stop12188" /><stop
style="stop-color:#f5f5f5;stop-opacity:1;"
offset="1"
id="stop2246" /></linearGradient><marker
orient="auto"
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4880"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878" /></marker><marker
style="overflow:visible"
id="marker4732"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4730" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4584"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path4582"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4328"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4326" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4186"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path4184"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker3948"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3946" /></marker><marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917" /></marker><marker
style="overflow:visible"
id="marker7497"
refX="0"
refY="0"
orient="auto"><path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path7495" /></marker><marker
style="overflow:visible"
id="marker7379"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7377" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480"
style="overflow:visible"><path
id="path5478"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5470"
style="overflow:visible"><path
id="path5468"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220"
style="overflow:visible"><path
id="path5218"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5210"
style="overflow:visible"><path
id="path5208"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible"><path
id="path5070"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5014"
style="overflow:visible"><path
id="path5012"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4968"
style="overflow:visible"><path
id="path4966"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4884"
style="overflow:visible"><path
id="path4882"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4856"
style="overflow:visible"
viewBox="0 0 17.77385393 10.15648796"
markerWidth="17.77385393"
markerHeight="10.15648796"
preserveAspectRatio="xMidYMid"><path
id="path4854"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4834"
style="overflow:visible"><path
id="path4832"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220-5"
style="overflow:visible"><path
id="path5218-3"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480-5"
style="overflow:visible"><path
id="path5478-7"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2248"
id="linearGradient2250"
x1="15.027481"
y1="135.52368"
x2="135.74386"
y2="135.52368"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.92179124,0,0,0.94768482,25.802601,19.342312)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient16058"
id="linearGradient16060"
x1="79.854721"
y1="162.59952"
x2="146.84238"
y2="155.66852"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.92256195,0,0,0.92774555,25.742762,21.241463)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient36360"
id="linearGradient36362"
x1="17.011291"
y1="-6.2249015"
x2="161.61291"
y2="-6.2249015"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.92179124,0,0,0.92179124,23.063493,196.80696)" /><linearGradient
inkscape:collect="always"
id="linearGradient82685"><stop
style="stop-color:#cecece;stop-opacity:1;"
offset="0"
id="stop82681" /><stop
style="stop-color:#fdfdfd;stop-opacity:1;"
offset="0.25040859"
id="stop87441" /><stop
style="stop-color:#6d6d6d;stop-opacity:1;"
offset="0.55378878"
id="stop92591" /><stop
style="stop-color:#bebebe;stop-opacity:1;"
offset="1"
id="stop82683" /></linearGradient><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient82685"
id="linearGradient2"
x1="75.059082"
y1="117.03271"
x2="136.77219"
y2="117.03271"
gradientUnits="userSpaceOnUse" /><marker
orient="auto"
refY="0"
refX="0"
id="marker7593-1"
style="overflow:visible"><path
id="path7591-7"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072-2"
style="overflow:visible"><path
id="path5070-3"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker></defs><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><path
id="path4520"
d="M 74.787333,81.578179 V 135.98551 H 39.23214 v 23.6771 c 0,0 28.032999,2.91704 40.749846,20.12996 12.716847,17.21292 13.283972,43.1704 13.283972,43.1704 h 20.628002 c 0,0 -0.57373,-21.91786 16.2888,-43.1704 16.86253,-21.25254 41.36642,-20.12996 41.36642,-20.12996 v -23.6771 H 136.27493 V 81.578179"
style="fill:url(#linearGradient2);fill-opacity:1;stroke:#000000;stroke-width:1.84358;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cccczcczcccc" /><path
id="path3652"
d="m 38.74436,159.17482 133.50588,-0.45936 c 0,0 -25.05385,-0.82392 -42.47198,20.88845 -17.41813,21.71237 -16.41346,43.35906 -16.41346,43.35906 H 93.795122 c 0,0 -0.878536,-22.59405 -12.042101,-41.13734 C 70.589456,163.28234 38.74436,159.17482 38.74436,159.17482 Z"
style="fill:url(#linearGradient36362);fill-opacity:1;stroke:none;stroke-width:1.84358;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cczcczc" /><path
style="fill:url(#linearGradient2250);fill-opacity:1;stroke:none;stroke-width:0.247292px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 39.776752,159.23431 h 90.249798 l 20.62469,-22.91653 H 39.776752 Z"
id="path1389"
sodipodi:nodetypes="ccccc" /><path
style="fill:url(#linearGradient16060);fill-opacity:1;stroke:none;stroke-width:0.244779px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 95.986441,222.98904 c 0,0 8.170309,-31.76518 19.240429,-49.96406 11.07012,-18.19888 34.67738,-36.70835 34.67738,-36.70835 h 20.99825 v 22.25432 c 0,0 -25.20163,-0.42111 -41.57234,16.60663 -16.37071,17.02774 -25.94102,47.81146 -25.94102,47.81146 z"
id="path1249"
sodipodi:nodetypes="czccczcc" /><path
id="path4528"
d="M 74.119996,79.774981 V 46.231974"
style="fill:none;stroke:#000000;stroke-width:0.72438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4530"
d="M 136.89801,79.774981 V 46.231974"
style="fill:none;stroke:#000000;stroke-width:0.72438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
transform="matrix(11.107709,0,0,11.782067,27.148865,34.449906)"
id="g7053" /><path
id="path4538"
d="M 171.54918,270.09124 V 164.05264"
style="fill:none;stroke:#000000;stroke-width:0.743595;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542"
d="M 77.321236,58.014043 H 133.53382"
style="fill:none;stroke:#000000;stroke-width:0.65;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><path
id="path4548"
d="M 41.274623,258.30918 H 166.88345"
style="fill:none;stroke:#000000;stroke-width:0.721845;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="shank_diameter"
y="52.456436"
x="97.074303"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.02681"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.02681"
y="52.456436"
x="97.074303"
id="tspan5678">S</tspan></text><text
transform="scale(0.97096033,1.0299082)"
id="diameter"
y="279.81418"
x="95.966133"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.02681"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.02681"
y="279.81418"
x="95.966133"
id="tspan5690">D</tspan></text><g
id="g7053-6"
transform="matrix(11.107709,0,0,11.782067,4.9334458,34.449906)" /><path
id="path4538-8"
d="M 38.74436,270.09124 V 164.05264"
style="fill:none;stroke:#000000;stroke-width:0.743595;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4538-8-9"
d="m 93.265958,250.35549 0,-23.30956"
style="fill:none;stroke:#000000;stroke-width:0.743595;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path4538-8-9-3"
d="M 114.22859,250.35549 V 227.04593"
style="fill:none;stroke:#000000;stroke-width:0.743595;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path4548-6"
d="m 118.72725,223.34176 74.87632,0"
style="fill:none;stroke:#000000;stroke-width:0.592962;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path4548-6-8"
d="m 132.26064,182.39381 39.1751,40.80318"
style="fill:none;stroke:#000000;stroke-width:0.65;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)"
sodipodi:nodetypes="cc" /><path
id="sesr3u8"
d="m 184.26391,221.22509 0,-84.25864"
style="fill:none;stroke:#000000;stroke-width:0.65;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)"
sodipodi:nodetypes="cc" /><text
transform="scale(0.97096033,1.0299082)"
id="cutting_edge_height"
y="180.48601"
x="191.77032"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="180.48601"
x="191.77032"
id="tspan7855"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">h</tspan></text><path
id="path936"
d="M 21.764217,82.083367 H 72.731009"
style="fill:none;stroke:#000000;stroke-width:0.987384;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path938"
d="m 21.764217,223.34176 66.827826,0"
style="fill:none;stroke:#000000;stroke-width:0.757536;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path940"
d="M 28.028504,219.65219 V 84.84232"
style="fill:none;stroke:#000000;stroke-width:0.65;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="length"
y="153.26979"
x="7.001987"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="153.26979"
x="7.001987"
id="tspan942"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">L</tspan></text><path
id="path922"
d="m 175.2226,135.00003 h 18.38097"
style="fill:none;stroke:#000000;stroke-width:0.592962;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><text
transform="scale(0.97096033,1.0299082)"
id="cutting_edge_height-7"
y="195.87868"
x="156.38969"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="195.87868"
x="156.38969"
id="tspan7855-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">r</tspan></text><text
transform="scale(0.97096033,1.0299082)"
id="diameter-9"
y="244.40749"
x="70.96611"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.02681"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.02681"
y="244.40749"
x="70.96611"
id="tspan5690-9">d</tspan></text><path
id="sesr3u8-6"
d="m 112.39408,239.97586 -17.090908,0"
style="fill:none;stroke:#000000;stroke-width:0.65;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)"
sodipodi:nodetypes="cc" /></svg>

After

Width:  |  Height:  |  Size: 28 KiB

View File

@@ -0,0 +1,594 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 210 297.00001"
height="297mm"
width="210mm"
sodipodi:docname="reamer.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xml:space="preserve"
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"
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
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1050"
id="namedview71"
showgrid="false"
inkscape:zoom="0.41052622"
inkscape:cx="187.56415"
inkscape:cy="777.05147"
inkscape:window-x="1680"
inkscape:window-y="1050"
inkscape:window-maximized="0"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm" /><defs
id="defs2"><linearGradient
id="linearGradient38"
inkscape:collect="always"><stop
style="stop-color:#d6d6d6;stop-opacity:1;"
offset="0"
id="stop39" /><stop
style="stop-color:#d6d6d6;stop-opacity:0;"
offset="1"
id="stop40" /></linearGradient><linearGradient
id="linearGradient35"
inkscape:collect="always"><stop
style="stop-color:#686868;stop-opacity:1;"
offset="0"
id="stop35" /><stop
style="stop-color:#7d7d7d;stop-opacity:1;"
offset="0.76353073"
id="stop38" /><stop
style="stop-color:#909090;stop-opacity:1;"
offset="0.90878952"
id="stop37" /><stop
style="stop-color:#979797;stop-opacity:1;"
offset="1"
id="stop36" /></linearGradient><linearGradient
id="linearGradient33"
inkscape:collect="always"><stop
style="stop-color:#e4e4e4;stop-opacity:1;"
offset="0"
id="stop33" /><stop
style="stop-color:#a4a4a4;stop-opacity:1;"
offset="1"
id="stop34" /></linearGradient><linearGradient
id="linearGradient31"
inkscape:collect="always"><stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop31" /><stop
style="stop-color:#cecece;stop-opacity:1;"
offset="1"
id="stop32" /></linearGradient><linearGradient
id="linearGradient29"
inkscape:collect="always"><stop
style="stop-color:#4a4a4a;stop-opacity:1;"
offset="0"
id="stop29" /><stop
style="stop-color:#9d9d9d;stop-opacity:1;"
offset="1"
id="stop30" /></linearGradient><linearGradient
id="linearGradient27"
inkscape:collect="always"><stop
style="stop-color:#c9c9c9;stop-opacity:1;"
offset="0"
id="stop27" /><stop
style="stop-color:#6f6f6f;stop-opacity:1;"
offset="1"
id="stop28" /></linearGradient><linearGradient
id="linearGradient24"
inkscape:collect="always"><stop
style="stop-color:#232323;stop-opacity:1;"
offset="0"
id="stop25" /><stop
style="stop-color:#ededed;stop-opacity:1;"
offset="1"
id="stop26" /></linearGradient><linearGradient
id="linearGradient20"
inkscape:collect="always"><stop
style="stop-color:#545454;stop-opacity:1;"
offset="0"
id="stop21" /><stop
style="stop-color:#919191;stop-opacity:1;"
offset="0.88995075"
id="stop24" /><stop
style="stop-color:#bebebe;stop-opacity:1;"
offset="0.9470486"
id="stop23" /><stop
style="stop-color:#676767;stop-opacity:1;"
offset="1"
id="stop22" /></linearGradient><linearGradient
id="linearGradient16"
inkscape:collect="always"><stop
style="stop-color:#6c6c6c;stop-opacity:1;"
offset="0"
id="stop17" /><stop
style="stop-color:#737373;stop-opacity:1;"
offset="0.60383546"
id="stop20" /><stop
style="stop-color:#afafaf;stop-opacity:1;"
offset="0.94051778"
id="stop19" /><stop
style="stop-color:#929292;stop-opacity:1;"
offset="1"
id="stop18" /></linearGradient><linearGradient
id="linearGradient13"
inkscape:collect="always"><stop
style="stop-color:#585858;stop-opacity:1;"
offset="0"
id="stop13" /><stop
style="stop-color:#bebebe;stop-opacity:1;"
offset="0.69244355"
id="stop16" /><stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0.95509887"
id="stop15" /><stop
style="stop-color:#a6a6a6;stop-opacity:1;"
offset="1"
id="stop14" /></linearGradient><linearGradient
id="linearGradient11"
inkscape:collect="always"><stop
style="stop-color:#c2c2c2;stop-opacity:1;"
offset="0"
id="stop11" /><stop
style="stop-color:#a1a1a1;stop-opacity:1;"
offset="1"
id="stop12" /></linearGradient><marker
style="overflow:visible"
id="marker1185"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1183" /></marker><marker
style="overflow:visible"
id="marker1181"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1179" /></marker><marker
style="overflow:visible"
id="marker1177"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1175" /></marker><marker
style="overflow:visible"
id="marker1173"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1171" /></marker><marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917" /></marker><marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path899" /></marker><marker
style="overflow:visible"
id="Arrow2Mstart"
refX="0"
refY="0"
orient="auto"><path
transform="scale(0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path923" /></marker><marker
style="overflow:visible"
id="Arrow1Mend"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path908" /></marker><marker
style="overflow:visible"
id="marker7497"
refX="0"
refY="0"
orient="auto"><path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path7495" /></marker><marker
style="overflow:visible"
id="marker7379"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7377" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480"
style="overflow:visible"><path
id="path5478"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5470"
style="overflow:visible"><path
id="path5468"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220"
style="overflow:visible"><path
id="path5218"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5210"
style="overflow:visible"><path
id="path5208"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible"><path
id="path5070"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5014"
style="overflow:visible"><path
id="path5012"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4968"
style="overflow:visible"><path
id="path4966"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4884"
style="overflow:visible"><path
id="path4882"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4856"
style="overflow:visible"><path
id="path4854"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4834"
style="overflow:visible"><path
id="path4832"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220-5"
style="overflow:visible"><path
id="path5218-3"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480-5"
style="overflow:visible"><path
id="path5478-7"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
style="overflow:visible"
id="marker1181-3"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1179-6" /></marker><marker
style="overflow:visible"
id="marker1185-7"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1183-5" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart-3"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917-5" /></marker><marker
style="overflow:visible"
id="Arrow2Lend-6"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920-2" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient11"
id="linearGradient12"
x1="66.444857"
y1="74.626402"
x2="83.500565"
y2="74.626402"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient13"
id="linearGradient14"
x1="67.058281"
y1="-20.541794"
x2="85.09156"
y2="158.4128"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient16"
id="linearGradient18"
x1="74.591019"
y1="-28.087925"
x2="99.79232"
y2="160.79443"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient20"
id="linearGradient22"
x1="87.064384"
y1="-29.506783"
x2="115.74937"
y2="164.21219"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient24"
id="linearGradient26"
x1="104.62892"
y1="157.63483"
x2="112.23611"
y2="157.1257"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient27"
id="linearGradient28"
x1="90.373643"
y1="66.194155"
x2="127.0937"
y2="66.194155"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient29"
id="linearGradient30"
x1="117.35683"
y1="67.530586"
x2="130.53024"
y2="66.25779"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient31"
id="linearGradient32"
x1="125.64605"
y1="66.448715"
x2="136.95784"
y2="65.430481"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient33"
id="linearGradient34"
x1="122.95712"
y1="33.515216"
x2="137.2124"
y2="33.515216"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient35"
id="linearGradient36"
x1="132.63036"
y1="5.0046735"
x2="142.28397"
y2="152.64857"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient38"
id="linearGradient40"
x1="141.85458"
y1="-4.1594329"
x2="145.86738"
y2="-2.6320825"
gradientUnits="userSpaceOnUse" /><filter
style="color-interpolation-filters:sRGB;"
inkscape:label="Lightness-Contrast"
id="filter1"
x="0"
y="0"
width="1"
height="1"><feColorMatrix
values="0.836573 0 0 0.117315 0.0817135 0 0.836573 0 0.117315 0.0817135 0 0 0.836573 0.117315 0.0817135 0 0 0 1 0"
id="feColorMatrix1" /></filter></defs><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
transform="translate(-5.0965655,82.181594)"
id="layer1"><text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.2778px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;stroke-width:1.18572"
x="91.9468"
y="209.41005"
id="diameter"
transform="scale(1.0169499,0.98333262)"><tspan
sodipodi:role="line"
id="tspan14"
x="91.9468"
y="209.41005"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.2778px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:1.18572">D</tspan></text><text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.2778px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;stroke-width:1.20955"
x="175.11391"
y="70.791611"
id="cutting_edge_height"
transform="scale(0.9835924,1.0166813)"><tspan
sodipodi:role="line"
id="tspan18"
x="175.11391"
y="70.791611"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.2778px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:1.20955">H</tspan></text><path
id="path4542"
d="m 66.55728,173.49778 h 79.31396"
style="fill:none;stroke:#000000;stroke-width:0.849025;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1177)" /><path
id="path4538"
d="M 148.17126,181.21137 V 142.4916"
style="fill:none;stroke:#000000;stroke-width:0.838537;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4538-1"
d="M 64.832629,180.07843 V 141.35867"
style="fill:none;stroke:#000000;stroke-width:0.838537;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path1187"
d="M 147.50451,-40.728779 H 173.2932"
style="fill:none;stroke:#000000;stroke-width:0.838537;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path1187-4"
d="m 145.1128,162.56265 h 25.78874"
style="fill:none;stroke:#000000;stroke-width:0.838537;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path897"
d="M 163.08122,-36.196886 V 158.31269"
style="fill:none;stroke:#000000;stroke-width:1.32896;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1181);marker-end:url(#marker1177)" /><g
id="g40"
transform="matrix(1,0,0,1.0521129,0,-8.5565929)"><path
style="fill:url(#linearGradient14);fill-opacity:1;stroke-width:1"
d="m 80.317221,152.49482 c 0.320947,4.77443 2.625405,7.19127 3.215163,8.04506 1.179515,1.70759 3.43654,3.02288 3.43654,3.02288 l 10.086879,0.15909 c 0,0 -3.779112,-2.11415 -4.613872,-2.89559 -0.83476,-0.78144 -5.348398,-8.97697 -6.395781,-11.58241 C 84.998767,146.63841 67.567399,-31.196595 67.567399,-31.196595 v 15.39 c 0,0 12.428875,163.526985 12.749822,168.301415 z"
id="path1"
sodipodi:nodetypes="zscczzccz" /><path
style="fill:url(#linearGradient32);stroke-width:1"
d="m 117.6074,-30.76079 18.95083,180.84283 c 0,0 0.13719,5.99365 -0.49135,7.97589 -0.62853,1.98224 -2.75966,3.99838 -2.75966,3.99838 0,0 3.45037,-1.4126 4.94525,-3.17106 1.49488,-1.75846 3.4147,-7.50948 3.4147,-7.50948 L 123.23173,-30.76079 Z"
id="path3"
sodipodi:nodetypes="cczczccc" /><path
style="fill:url(#linearGradient30);stroke-width:1"
d="m 126.64822,161.49448 7.70039,0.25455 c 0,0 1.52319,-1.78675 2.09559,-3.6911 0.5724,-1.90435 0.30267,-7.44583 0.30267,-7.44583 L 117.6114,-30.76079 h -5.60029 z"
id="path4"
sodipodi:nodetypes="cczcccc" /><path
style="fill:url(#linearGradient26);fill-opacity:1;stroke-width:1"
d="m 107.46181,163.51203 4.7743,-0.85341 -10.66189,-73.013267 z"
id="path5"
sodipodi:nodetypes="cccc" /><path
style="fill:url(#linearGradient18);stroke-width:1"
d="m 107.42906,163.4673 -10.691457,0.50912 c 0,0 -4.588878,-2.97465 -5.906901,-4.82117 -1.318023,-1.84652 -5.079703,-8.41435 -5.548229,-10.45234 -0.468526,-2.03799 -18.073648,-179.4637 -18.073648,-179.4637 H 85.282473 L 102.08333,92.445497 Z"
id="path6"
sodipodi:nodetypes="cczzcccc" /><path
style="fill:url(#linearGradient28);stroke-width:1"
d="m 90.373643,-30.76079 h 21.637467 l 15.08259,192.6371 -4.70934,1.27279 c 0,0 -2.2542,-1.46274 -3.43654,-3.62745 -1.18234,-2.16471 -2.60922,-8.78227 -2.60922,-8.78227 z"
id="path7"
sodipodi:nodetypes="cccczcc" /><path
style="fill:url(#linearGradient34);stroke-width:1"
d="m 122.95712,-30.76079 h 8.65499 l 5.09117,131.73399 z"
id="path8"
sodipodi:nodetypes="cccc" /><path
style="fill:url(#linearGradient36);stroke-width:1"
d="M 130.59388,-30.76079 H 141.58 l 4.03282,57.530209 0.99818,117.351441 c 0.0239,2.81179 -0.88347,5.04806 -2.36643,7.92313 -1.48296,2.87507 -4.74115,3.78656 -4.74115,3.78656 z"
id="path9"
sodipodi:nodetypes="cccszcc" /><path
style="fill:url(#linearGradient40);stroke-width:1"
d="m 141.34548,-30.76079 h 3.77828 l 0.74362,56.257415 z"
id="path10"
sodipodi:nodetypes="cccc" /><path
style="fill:url(#linearGradient12);stroke-width:1"
d="m 83.373286,160.34896 c 0,0 -8.659065,0.61388 -12.493878,-3.45385 -3.834813,-4.06773 -4.450091,-7.56788 -4.434258,-11.75602 0.219392,-58.032586 1.52735,-157.062555 1.52735,-157.062555 z"
id="path11"
sodipodi:nodetypes="czscc" /><path
style="fill:url(#linearGradient22);stroke-width:1"
d="m 85.262426,-30.76079 24.966774,183.79119 1.74236,7.923 0.49501,3.24 10.10815,-1.04365 c 0,0 -2.03656,-1.58411 -3.20771,-3.57591 -1.17115,-1.9918 -2.40045,-8.07044 -2.40045,-8.07044 L 90.416564,-30.76079 Z"
id="path2"
sodipodi:nodetypes="ccccczccc" /></g></g></svg>

After

Width:  |  Height:  |  Size: 27 KiB

View File

@@ -0,0 +1,512 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 210 297"
height="297mm"
width="210mm"
sodipodi:docname="slittingsaw.svg"
xml:space="preserve"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
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="namedview81"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.61495235"
inkscape:cx="258.55662"
inkscape:cy="592.72885"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient82685"><stop
style="stop-color:#d9d9d9;stop-opacity:1;"
offset="0"
id="stop82681" /><stop
style="stop-color:#fbfbfb;stop-opacity:1;"
offset="0.25040859"
id="stop87441" /><stop
style="stop-color:#6b6b6b;stop-opacity:1;"
offset="0.55378878"
id="stop92591" /><stop
style="stop-color:#c2c2c2;stop-opacity:1;"
offset="1"
id="stop82683" /></linearGradient><marker
orient="auto"
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4880"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878" /></marker><marker
style="overflow:visible"
id="marker4732"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4730" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4584"
style="overflow:visible"><path
id="path4582"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4328"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4326" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4186"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path4184"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker3948"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3946" /></marker><marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917" /></marker><marker
style="overflow:visible"
id="marker7497"
refX="0"
refY="0"
orient="auto"><path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path7495" /></marker><marker
style="overflow:visible"
id="marker7379"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7377" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480"
style="overflow:visible"><path
id="path5478"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5470"
style="overflow:visible"><path
id="path5468"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220"
style="overflow:visible"><path
id="path5218"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5210"
style="overflow:visible"><path
id="path5208"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible"><path
id="path5070"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5014"
style="overflow:visible"><path
id="path5012"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4968"
style="overflow:visible"><path
id="path4966"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4884"
style="overflow:visible"><path
id="path4882"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4856"
style="overflow:visible"><path
id="path4854"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4834"
style="overflow:visible"><path
id="path4832"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220-5"
style="overflow:visible"><path
id="path5218-3"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480-5"
style="overflow:visible"><path
id="path5478-7"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4186-7"
style="overflow:visible"><path
id="path4184-5"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4584-3"
style="overflow:visible"><path
id="path4582-5"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4732-6"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4730-2" /></marker><marker
style="overflow:visible"
id="marker3948-9"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3946-1" /></marker><marker
style="overflow:visible"
id="marker4328-2"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4326-7" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart-0"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917-9" /></marker><marker
style="overflow:visible"
id="Arrow2Lend-3"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920-6" /></marker><marker
style="overflow:visible"
id="marker4880-0"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878-6" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker7593-2"
style="overflow:visible"><path
id="path7591-6"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072-1"
style="overflow:visible"><path
id="path5070-8"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient82685"
id="linearGradient82687"
x1="62.931042"
y1="139.99037"
x2="103.97852"
y2="139.99037"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(22.76869,7.9375004)" /></defs><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><path
id="path4520"
d="M 85.83644,71.017665 V 206.70193 H 41.694999 v 6.62862 h 52.673386 v 7.08939 h 24.269295 v -7.08939 h 53.90067 v -6.62862 H 128.45044 V 71.017665"
style="opacity:1;fill:url(#linearGradient82687);fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cccccccccccc" /><path
id="path4528"
d="M 85.349212,69.673351 V 31.328221"
style="fill:none;stroke:#000000;stroke-width:0.806685;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4530"
d="M 129.11178,69.673351 V 31.328221"
style="fill:none;stroke:#000000;stroke-width:0.806685;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
transform="matrix(12.050135,0,0,12.781708,22.222008,14.842342)"
id="g7053"><path
style="fill:none;stroke:#000000;stroke-width:0.0719085;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8,16.2484 v 2.447728"
id="path4536" /></g><path
id="path4538"
d="M 172.52373,275.76822 V 216.92606"
style="fill:none;stroke:#000000;stroke-width:0.576943;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542"
d="M 87.011514,45.697432 H 127.22183"
style="fill:none;stroke:#000000;stroke-width:0.60159;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><path
id="path4546"
d="m 120.56062,246.02455 v 0 h 20.17804"
style="fill:none;stroke:#000000;stroke-width:0.60268;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><path
id="path4548"
d="M 45.268144,262.98652 H 168.9652"
style="fill:none;stroke:#000000;stroke-width:0.7461;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="shank_diameter"
y="40.168922"
x="98.726952"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.28362"
y="40.168922"
x="98.726952"
id="tspan5678">S</tspan></text><text
transform="scale(0.97096033,1.0299082)"
id="diameter"
y="283.73383"
x="96.607918"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.28362"
y="283.73383"
x="96.607918"
id="tspan5690">D</tspan></text><text
transform="scale(0.97096033,1.0299082)"
id="cap_diameter"
y="246.87277"
x="57.598186"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
style="stroke-width:3.28362"
y="246.87277"
x="57.598186"
id="tspan10475">d</tspan></text><path
id="path4546-7"
d="m 74.891676,246.02455 v 0 h 17.599515"
style="fill:none;stroke:#000000;stroke-width:0.562856;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><g
id="g7053-6"
transform="matrix(12.050135,0,0,15.643074,-2.4040199,-27.764503)"><path
style="fill:none;stroke:#000000;stroke-width:0.065;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8,16 v 2"
id="path4536-1" /></g><path
id="path4538-8"
d="M 41.680488,275.76822 V 216.92606"
style="fill:none;stroke:#000000;stroke-width:0.576943;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path4548-6"
d="m 167.31007,205.95868 h 24.60161"
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4538-7"
d="M 185.76891,233.43708 V 215.88705"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="blade_thickness"
y="175.90097"
x="180.99182"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0252px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="175.90097"
x="180.99182"
id="tspan7855">T</tspan></text><path
id="path128465"
d="m 167.13907,213.6831 h 24.60161"
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path130891"
d="M 185.76891,203.8036 V 186.25357"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><path
id="path6381"
d="m 23.053165,213.89617 h 17.51666"
style="fill:none;stroke:#000000;stroke-width:0.578853;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path6383"
d="M 34.427058,240.8454 V 223.29537"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="cap_height"
y="252.97104"
x="16.948652"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0252px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="252.97104"
x="16.948652"
id="tspan6385">h</tspan></text><path
id="path6389"
d="M 9.6116373,221.09142 H 93.315492"
style="fill:none;stroke:#000000;stroke-width:0.712845;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path6391"
d="M 34.427058,211.74109 V 194.19106"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><path
id="path7410"
d="M 9.6116373,70.807979 H 86.05246"
style="fill:none;stroke:#000000;stroke-width:0.681216;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path7808"
d="M 18.552057,127.82258 V 77.442522"
style="fill:none;stroke:#000000;stroke-width:1.25368;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><path
id="path8206"
d="M 18.552057,213.9386 V 159.99608"
style="fill:none;stroke:#000000;stroke-width:1.29725;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><text
transform="scale(0.97096033,1.0299082)"
id="length"
y="151.75241"
x="7.6837687"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0252px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="151.75241"
x="7.6837687"
id="tspan8604">L</tspan></text></svg>

After

Width:  |  Height:  |  Size: 28 KiB

View File

@@ -0,0 +1,454 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 210 297"
height="297mm"
width="210mm"
sodipodi:docname="tap.svg"
xml:space="preserve"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
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="namedview81"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.81750039"
inkscape:cx="299.69405"
inkscape:cy="538.83766"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient36360"><stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop36356" /><stop
style="stop-color:#adadad;stop-opacity:1;"
offset="0.5"
id="stop38296" /><stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop36358" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient16058"><stop
style="stop-color:#424242;stop-opacity:1;"
offset="0"
id="stop16054" /><stop
style="stop-color:#a5a5a5;stop-opacity:1;"
offset="1"
id="stop16056" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient2248"><stop
style="stop-color:#ededed;stop-opacity:1;"
offset="0"
id="stop2244" /><stop
style="stop-color:#969696;stop-opacity:1;"
offset="0.5"
id="stop12188" /><stop
style="stop-color:#f5f5f5;stop-opacity:1;"
offset="1"
id="stop2246" /></linearGradient><marker
orient="auto"
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4880"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878" /></marker><marker
style="overflow:visible"
id="marker4732"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4730" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4584"
style="overflow:visible"><path
id="path4582"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4328"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4326" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4186"
style="overflow:visible"><path
id="path4184"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker3948"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3946" /></marker><marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917" /></marker><marker
style="overflow:visible"
id="marker7497"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 6.93045877 5.19622555"
markerWidth="6.93045877"
markerHeight="5.19622555"
preserveAspectRatio="xMidYMid"><path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path7495" /></marker><marker
style="overflow:visible"
id="marker7379"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 8.886927 5.078244"
markerWidth="8.8869267"
markerHeight="5.0782437"
preserveAspectRatio="xMidYMid"><path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7377" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480"
style="overflow:visible"
viewBox="0 0 6.9304588 5.1962256"
markerWidth="6.9304585"
markerHeight="5.1962252"
preserveAspectRatio="xMidYMid"><path
id="path5478"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5470"
style="overflow:visible"><path
id="path5468"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220"
style="overflow:visible"
viewBox="0 0 8.88692697 5.07824398"
markerWidth="8.88692665"
markerHeight="5.0782438"
preserveAspectRatio="xMidYMid"><path
id="path5218"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5210"
style="overflow:visible"><path
id="path5208"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible"><path
id="path5070"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5014"
style="overflow:visible"><path
id="path5012"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4968"
style="overflow:visible"><path
id="path4966"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4884"
style="overflow:visible"><path
id="path4882"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4856"
style="overflow:visible"><path
id="path4854"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4834"
style="overflow:visible"><path
id="path4832"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220-5"
style="overflow:visible"><path
id="path5218-3"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480-5"
style="overflow:visible"><path
id="path5478-7"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2248"
id="linearGradient2250"
x1="15.027481"
y1="135.52368"
x2="135.74386"
y2="135.52368"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.49702748,0,0,1.0855632,62.476981,36.729604)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient16058"
id="linearGradient16060"
x1="79.854721"
y1="162.59952"
x2="152.31955"
y2="148.93861"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.49744304,0,0,1.062723,62.444716,38.905061)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient36360"
id="linearGradient36362"
x1="17.011291"
y1="-6.2249015"
x2="161.61291"
y2="-6.2249015"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.48828362,0,0,0.90614893,61.780998,243.57292)" /><marker
orient="auto"
refY="0"
refX="0"
id="marker7593-3"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591-6"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4880-7"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878-5" /></marker></defs><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><path
id="path4520"
d="m 76.189424,29.220002 v 51.739706 h -6.471269 l -0.04257,146.513992 35.625025,43.01486 35.76255,-43.18515 V 80.959708 h -6.31978 V 29.220002"
style="fill:#e4e4e4;fill-opacity:1;stroke:#000000;stroke-width:1.44887;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccccccc" /><path
id="path3652"
d="m 70.087337,227.38686 h 70.606653 l -35.56171,41.89821 z"
style="fill:url(#linearGradient36362);fill-opacity:1;stroke:none;stroke-width:1.33035;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cccc" /><path
style="fill:url(#linearGradient2250);fill-opacity:1;stroke:none;stroke-width:0.194347px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 70.01379,227.48096 70.69325,-0.13068 -0.11267,-145.811109 -70.404972,0.08278 z"
id="path1389"
sodipodi:nodetypes="ccccc" /><path
style="fill:url(#linearGradient16060);fill-opacity:1;stroke:none;stroke-width:0.192373px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 105.04679,269.90115 c 0,0 3.36583,-9.68019 7.12191,-18.85411 3.75608,-9.17391 9.47164,-23.74348 9.47164,-23.74348 h 19.15667 z"
id="path1249"
sodipodi:nodetypes="czccc" /><path
id="path4542"
d="M 78.908736,70.533135 H 131.94632"
style="fill:none;stroke:#000000;stroke-width:0.730434;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)"
sodipodi:nodetypes="cc" /><path
id="path4542-3"
d="M 71.573739,110.00789 H 139.3307"
style="fill:none;stroke:#000000;stroke-width:0.825593;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593-3);marker-end:url(#marker4880-7)"
sodipodi:nodetypes="cc" /><text
transform="scale(0.9316925,1.0733155)"
id="shank_diameter"
y="61.487053"
x="101.16568"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:33.6467px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.15438"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:33.6467px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.15438"
y="61.487053"
x="101.16568"
id="tspan5678">S</tspan></text><text
transform="scale(0.91996447,1.0869985)"
id="diameter"
y="133.0817"
x="101.28577"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34.0757px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.1946"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:34.0757px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.1946"
y="133.0817"
x="101.28577"
id="tspan5690">D</tspan></text><path
d="m 70.391848,220.93815 a 49.287517,49.590925 89.920721 0 1 69.329632,0.11418"
id="path5698"
style="fill:none;fill-opacity:1;stroke:#000025;stroke-width:1.06959;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><text
transform="scale(1.0847256,0.92189217)"
id="cutting_edge_angle"
y="213.85809"
x="97.841621"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.8517px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.06252;stroke-dasharray:none"
xml:space="preserve"><tspan
style="stroke-width:2.06252;stroke-dasharray:none"
y="213.85809"
x="97.841621"
id="tspan5718">α</tspan></text><path
id="path4548-6"
d="m 145.5928,227.48015 h 18.38097"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><text
transform="scale(0.93489136,1.069643)"
id="cutting_edge_height"
y="157.95256"
x="173.49055"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:29.311px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.41031"
xml:space="preserve"><tspan
y="157.95256"
x="173.49055"
id="tspan7855"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:29.311px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:3.41031">h</tspan></text><path
id="sesr3u8"
d="M 154.37002,224.09829 V 85.722855"
style="fill:none;stroke:#000000;stroke-width:1.16605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><path
id="path936"
d="M 21.764217,29.347942 H 72.731009"
style="fill:none;stroke:#000000;stroke-width:1.05609;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path938"
d="m 19.64521,270.25431 h 83.99998"
style="fill:none;stroke:#000000;stroke-width:0.810251;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path940"
d="M 28.028504,266.05447 V 33.680591"
style="fill:none;stroke:#000000;stroke-width:1.24592;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)"
sodipodi:nodetypes="cc" /><text
transform="scale(0.95174658,1.0506999)"
id="length"
y="144.60545"
x="7.1433425"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.7919px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.34991"
xml:space="preserve"><tspan
y="144.60545"
x="7.1433425"
id="tspan942"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.7919px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:3.34991">L</tspan></text><path
id="path1164"
d="m 145.5928,82.449104 h 18.38097"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /></svg>

After

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -0,0 +1,610 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 210 297"
height="297mm"
width="210mm"
sodipodi:docname="thread-mill.svg"
xml:space="preserve"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
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="namedview81"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.71628115"
inkscape:cx="256.88237"
inkscape:cy="573.09898"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient82685"><stop
style="stop-color:#d3d3d3;stop-opacity:1;"
offset="0"
id="stop82681" /><stop
style="stop-color:#fbfbfb;stop-opacity:1;"
offset="0.25040859"
id="stop87441" /><stop
style="stop-color:#6b6b6b;stop-opacity:1;"
offset="0.55378878"
id="stop92591" /><stop
style="stop-color:#bababa;stop-opacity:1;"
offset="1"
id="stop82683" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient36741"><stop
style="stop-color:#f8f8f8;stop-opacity:1;"
offset="0"
id="stop36737" /><stop
style="stop-color:#565656;stop-opacity:1;"
offset="1"
id="stop36739" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient20895"><stop
style="stop-color:#767676;stop-opacity:1;"
offset="0"
id="stop20891" /><stop
style="stop-color:#bfbfbf;stop-opacity:1;"
offset="1"
id="stop20893" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient16329"><stop
style="stop-color:#d2d2d2;stop-opacity:1;"
offset="0"
id="stop16325" /><stop
style="stop-color:#f8f8f8;stop-opacity:1;"
offset="1"
id="stop16327" /></linearGradient><marker
orient="auto"
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4880"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878" /></marker><marker
style="overflow:visible"
id="marker4732"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4730" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4584"
style="overflow:visible"><path
id="path4582"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4328"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4326" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4186"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path4184"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker3948"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3946" /></marker><marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917" /></marker><marker
style="overflow:visible"
id="marker7497"
refX="0"
refY="0"
orient="auto"><path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path7495" /></marker><marker
style="overflow:visible"
id="marker7379"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7377" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480"
style="overflow:visible"><path
id="path5478"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5470"
style="overflow:visible"><path
id="path5468"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220"
style="overflow:visible"><path
id="path5218"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5210"
style="overflow:visible"><path
id="path5208"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible"><path
id="path5070"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5014"
style="overflow:visible"><path
id="path5012"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4968"
style="overflow:visible"><path
id="path4966"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4884"
style="overflow:visible"><path
id="path4882"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4856"
style="overflow:visible"><path
id="path4854"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4834"
style="overflow:visible"><path
id="path4832"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220-5"
style="overflow:visible"><path
id="path5218-3"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480-5"
style="overflow:visible"><path
id="path5478-7"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient36360"
id="linearGradient36362"
x1="83.83268"
y1="-3.8552091"
x2="46.759789"
y2="-3.9131644"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1183959,0,0,1,12.943123,205.26204)" /><linearGradient
inkscape:collect="always"
id="linearGradient36360"><stop
style="stop-color:#929292;stop-opacity:1;"
offset="0"
id="stop36356" /><stop
style="stop-color:#454545;stop-opacity:1;"
offset="0.33737543"
id="stop38296" /></linearGradient><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient16058"
id="linearGradient16060"
x1="79.854721"
y1="162.59952"
x2="146.84238"
y2="155.66852"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0008361,0,0,1.0064595,21.225774,14.80074)" /><linearGradient
inkscape:collect="always"
id="linearGradient16058"><stop
style="stop-color:#424242;stop-opacity:1;"
offset="0"
id="stop16054" /><stop
style="stop-color:#a5a5a5;stop-opacity:1;"
offset="1"
id="stop16056" /></linearGradient><marker
orient="auto"
refY="0"
refX="0"
id="marker4186-7"
style="overflow:visible"><path
id="path4184-5"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4584-3"
style="overflow:visible"><path
id="path4582-5"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4732-6"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4730-2" /></marker><marker
style="overflow:visible"
id="marker3948-9"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3946-1" /></marker><marker
style="overflow:visible"
id="marker4328-2"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4326-7" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart-0"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917-9" /></marker><marker
style="overflow:visible"
id="Arrow2Lend-3"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920-6" /></marker><marker
style="overflow:visible"
id="marker4880-0"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878-6" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker7593-2"
style="overflow:visible"><path
id="path7591-6"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072-1"
style="overflow:visible"><path
id="path5070-8"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient16329"
id="linearGradient16331"
x1="87.334213"
y1="208.6756"
x2="118.59026"
y2="208.6756"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(23.283337,16.933338)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient20895"
id="linearGradient20691"
gradientUnits="userSpaceOnUse"
x1="88.003334"
y1="210.563"
x2="114.51674"
y2="205.59695"
gradientTransform="matrix(1,0,0,-0.88988678,23.283337,397.91662)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient36741"
id="linearGradient36743"
x1="83.864883"
y1="184.47689"
x2="87.814056"
y2="184.47688"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(23.283337,16.933338)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient82685"
id="linearGradient82687"
x1="62.931042"
y1="139.99037"
x2="103.97852"
y2="139.99037"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(23.283337,16.933338)" /></defs><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><path
id="path4520"
d="m 74.431495,54.32752 v 36.39096 l 11.919592,14.69508 v 91.23422 L 52.792979,209.4162 v 8.67687 l 42.259011,14.49772 h 24.10033 l 43.31734,-14.49772 V 209.4162 L 128.96508,196.64778 V 105.41356 L 141.13591,90.71848 V 54.32752"
style="opacity:1;fill:url(#linearGradient82687);fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cccccccccccccc" /><path
id="path3652"
d="m 63.726665,213.12037 26.954111,-16.47259 c 7.157139,-2.1013 9.394664,-34.73956 16.551834,-36.84087 l -0.56306,72.78388 h -7.908781 z"
style="fill:url(#linearGradient36362);fill-opacity:1;stroke:none;stroke-width:2.11508;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cccccc" /><path
style="fill:url(#linearGradient16060);fill-opacity:1;stroke:none;stroke-width:0.265547px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 141.97802,213.12037 -13.63495,-16.47259 32.6315,16.47259 -41.59087,19.47042 z"
id="path1249"
sodipodi:nodetypes="ccccc" /><path
id="path4528"
d="M 73.707538,68.615014 V 30.269884"
style="fill:none;stroke:#000000;stroke-width:0.806685;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4530"
d="M 141.81186,68.615014 V 30.269884"
style="fill:none;stroke:#000000;stroke-width:0.806685;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4538"
d="M 162.99873,276.00247 V 220.5193"
style="fill:none;stroke:#000000;stroke-width:0.560233;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542"
d="M 75.688621,43.051594 H 139.654"
style="fill:none;stroke:#000000;stroke-width:0.75876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><path
id="path4548"
d="M 54.546337,264.57399 H 160.51219"
style="fill:none;stroke:#000000;stroke-width:0.690558;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="shank_diameter"
y="37.599903"
x="98.409019"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.28362"
y="37.599903"
x="98.409019"
id="tspan5678">S</tspan></text><text
transform="scale(0.97096033,1.0299082)"
id="diameter"
y="280.09338"
x="99.203911"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.28362"
y="280.09338"
x="99.203911"
id="tspan5690">D</tspan></text><path
d="m 6.0565504,223.60314 c -0.703433,-2.57791 -1.8448091,-6.72069 -1.8966227,-10.21223 -0.063275,-4.26386 1.0952574,-7.8221 1.6284317,-9.68871"
id="path5698"
style="fill:none;fill-opacity:1;stroke:#000025;stroke-width:0.6;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)"
inkscape:transform-center-x="4.6903494"
inkscape:transform-center-y="0.05713891"
sodipodi:nodetypes="csc" /><text
transform="scale(0.97096033,1.0299082)"
id="cutting_angle"
y="190.67944"
x="4.0550423"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0253px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
style="stroke-width:3.28362"
y="190.67944"
x="4.0550423"
id="tspan5718">α</tspan></text><path
id="path4538-8"
d="M 52.263822,276.00247 V 220.5193"
style="fill:none;stroke:#000000;stroke-width:0.560233;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path4548-6"
d="m 163.60588,209.13366 h 24.60161"
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4538-7"
d="M 182.06472,238.19957 V 220.64954"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="crest"
y="178.9838"
x="174.45184"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0252px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="178.9838"
x="174.45184"
id="tspan7855">C</tspan></text><path
id="rect6239"
style="opacity:1;fill:url(#linearGradient36743);fill-opacity:1;stroke-width:1.98452;stroke-linecap:round;stroke-linejoin:round"
d="m 107.14824,160.70479 h 3.34627 v 35.94299 l 10.05418,16.47259 -10.05418,19.47042 h -3.34627 z"
sodipodi:nodetypes="ccccccc" /><path
style="fill:url(#linearGradient16331);fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 110.61759,232.49124 10.38331,-18.66058 20.87276,-0.59842 -21.9574,19.46187 z"
id="path15927"
sodipodi:nodetypes="ccccc" /><path
style="fill:url(#linearGradient20691);fill-opacity:1;stroke:none;stroke-width:0.249591px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 110.08842,196.64778 10.38332,16.5811 21.40192,0.003 -13.49073,-16.5841 z"
id="path20293"
sodipodi:nodetypes="ccccc" /><path
id="path128465"
d="m 163.43488,218.44559 h 24.60161"
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path130891"
d="M 182.06472,206.97858 V 189.42855"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><path
style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 52.03577,217.63758 3.9218984,201.46797"
id="path140257"
sodipodi:nodetypes="cc" /><path
style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 52.03577,209.48416 3.9218984,226.08075"
id="path140655"
sodipodi:nodetypes="cc" /><path
id="path149716"
d="m 131.67319,128.01979 v 0 h 20.17804"
style="fill:none;stroke:#000000;stroke-width:0.60268;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><path
id="path149718"
d="m 66.425005,128.01979 v 0 H 84.02452"
style="fill:none;stroke:#000000;stroke-width:0.562856;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="neck_diameter"
y="137.32324"
x="165.17346"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0252px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="137.32324"
x="165.17346"
id="tspan150142">N</tspan></text><path
id="path1019"
d="M 50.852551,106.75249 H 80.506778"
style="fill:none;stroke:#000000;stroke-width:0.753157;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path1021"
d="M 53.642557,133.70707 V 109.23138"
style="fill:none;stroke:#000000;stroke-width:0.873827;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="neck_length"
y="155.9395"
x="43.349792"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.0252px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="155.9395"
x="43.349792"
id="tspan1023">n</tspan></text><path
id="path1027"
d="M 51.348964,195.84193 H 81.003191"
style="fill:none;stroke:#000000;stroke-width:0.753157;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path1029"
d="M 53.642557,193.38741 V 166.30105"
style="fill:none;stroke:#000000;stroke-width:0.91925;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /></svg>

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1,467 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="svg8"
version="1.1"
viewBox="0 0 210 297"
height="297mm"
width="210mm"
sodipodi:docname="v-bit.svg"
xml:space="preserve"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
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="namedview81"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.71907494"
inkscape:cx="333.76215"
inkscape:cy="581.99776"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
id="linearGradient36360"><stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop36356" /><stop
style="stop-color:#adadad;stop-opacity:1;"
offset="0.5"
id="stop38296" /><stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="1"
id="stop36358" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient16058"><stop
style="stop-color:#424242;stop-opacity:1;"
offset="0"
id="stop16054" /><stop
style="stop-color:#a5a5a5;stop-opacity:1;"
offset="1"
id="stop16056" /></linearGradient><linearGradient
inkscape:collect="always"
id="linearGradient2248"><stop
style="stop-color:#ededed;stop-opacity:1;"
offset="0"
id="stop2244" /><stop
style="stop-color:#969696;stop-opacity:1;"
offset="0.5"
id="stop12188" /><stop
style="stop-color:#f5f5f5;stop-opacity:1;"
offset="1"
id="stop2246" /></linearGradient><marker
orient="auto"
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4880"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"
markerUnits="strokeWidth"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878" /></marker><marker
style="overflow:visible"
id="marker4732"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4730" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4584"
style="overflow:visible"><path
id="path4582"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4328"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4326" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4186"
style="overflow:visible"><path
id="path4184"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker3948"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3946" /></marker><marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path920" /></marker><marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path917" /></marker><marker
style="overflow:visible"
id="marker7497"
refX="0"
refY="0"
orient="auto"><path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path7495" /></marker><marker
style="overflow:visible"
id="marker7379"
refX="0"
refY="0"
orient="auto"><path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:1.00000003pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7377" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480"
style="overflow:visible"><path
id="path5478"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5470"
style="overflow:visible"><path
id="path5468"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220"
style="overflow:visible"><path
id="path5218"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5210"
style="overflow:visible"><path
id="path5208"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible"><path
id="path5070"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5014"
style="overflow:visible"><path
id="path5012"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4968"
style="overflow:visible"><path
id="path4966"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4884"
style="overflow:visible"><path
id="path4882"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4856"
style="overflow:visible"><path
id="path4854"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker4834"
style="overflow:visible"><path
id="path4832"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.8,0,0,0.8,10,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5220-5"
style="overflow:visible"><path
id="path5218-3"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" /></marker><marker
orient="auto"
refY="0"
refX="0"
id="marker5480-5"
style="overflow:visible"><path
id="path5478-7"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="scale(-0.6)" /></marker><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2248"
id="linearGradient2250"
x1="15.027481"
y1="135.52368"
x2="135.74386"
y2="135.52368"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.92179124,0,0,0.96939476,25.802601,16.662586)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient16058"
id="linearGradient16060"
x1="79.854721"
y1="162.59952"
x2="146.84238"
y2="155.66852"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.92256195,0,0,0.92774555,25.742762,21.241463)" /><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient36360"
id="linearGradient36362"
x1="17.011291"
y1="-6.2249015"
x2="161.61291"
y2="-6.2249015"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.90363856,0,0,0.91089963,24.947239,196.73916)" /><linearGradient
inkscape:collect="always"
id="linearGradient82685"><stop
style="stop-color:#cecece;stop-opacity:1;"
offset="0"
id="stop82681" /><stop
style="stop-color:#fdfdfd;stop-opacity:1;"
offset="0.25040859"
id="stop87441" /><stop
style="stop-color:#6d6d6d;stop-opacity:1;"
offset="0.55378878"
id="stop92591" /><stop
style="stop-color:#bebebe;stop-opacity:1;"
offset="1"
id="stop82683" /></linearGradient><linearGradient
inkscape:collect="always"
xlink:href="#linearGradient82685"
id="linearGradient3"
x1="74.164757"
y1="124.51889"
x2="136.98778"
y2="124.51889"
gradientUnits="userSpaceOnUse" /></defs><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><path
id="path4520"
d="M 74.547826,81.021321 V 135.32528 H 38.714372 v 24.39157 l 55.519171,63.79576 h 21.860197 l 40.47697,-46.13384 15.49624,-17.66192 V 135.32528 H 136.51664 V 81.021321"
style="fill:url(#linearGradient3);fill-opacity:1;stroke:#000000;stroke-width:1.85801;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccccccccc" /><path
id="path3652"
d="m 39.534927,159.52847 131.452083,0.0232 -54.92303,63.03445 H 94.285963 Z"
style="fill:url(#linearGradient36362);fill-opacity:1;stroke:none;stroke-width:1.81452;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc" /><path
style="fill:url(#linearGradient2250);fill-opacity:1;stroke:none;stroke-width:0.250108px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 39.53894,159.55048 90.48761,0.20881 20.62469,-23.44151 -111.1123,-0.20881 z"
id="path1389"
sodipodi:nodetypes="ccccc" /><path
style="fill:url(#linearGradient16060);fill-opacity:1;stroke:none;stroke-width:0.244779px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 97.369676,223.32134 c 0,0 11.912804,-35.59142 21.572994,-51.09707 8.37621,-13.44479 30.96158,-35.90764 30.96158,-35.90764 h 21.23026 v 20.48121 l -67.71256,66.5235 z"
id="path1249"
sodipodi:nodetypes="csccccc" /><path
id="path4528"
d="M 74.119996,79.774981 V 46.231974"
style="fill:none;stroke:#000000;stroke-width:0.72438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4530"
d="M 136.89801,79.774981 V 46.231974"
style="fill:none;stroke:#000000;stroke-width:0.72438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
transform="matrix(11.107709,0,0,11.782067,27.148865,34.449906)"
id="g7053"><path
style="fill:none;stroke:#000000;stroke-width:0.065;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8,16 v 2"
id="path4536" /></g><path
id="path4538"
d="M 171.54918,270.09124 V 164.05264"
style="fill:none;stroke:#000000;stroke-width:0.743595;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542"
d="M 77.321236,58.014043 H 133.53382"
style="fill:none;stroke:#000000;stroke-width:0.682912;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><path
id="path4546"
d="m 118.12731,237.79594 v 0 h 22.21542"
style="fill:none;stroke:#000000;stroke-width:0.607142;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593)" /><path
id="path4548"
d="M 41.274623,258.30918 H 166.88345"
style="fill:none;stroke:#000000;stroke-width:0.721845;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="shank_diameter"
y="52.456436"
x="97.074303"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.02681"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.02681"
y="52.456436"
x="97.074303"
id="tspan5678">S</tspan></text><text
transform="scale(0.97096033,1.0299082)"
id="diameter"
y="279.81418"
x="95.966133"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.02681"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.02681"
y="279.81418"
x="95.966133"
id="tspan5690">D</tspan></text><path
d="m 58.330836,179.82921 a 55.597074,66.842837 89.997374 0 1 93.448334,0.12878"
id="path5698"
style="fill:none;fill-opacity:1;stroke:#000025;stroke-width:0.660072;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="cutting_edge_angle"
y="154.73337"
x="112.0044"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.02681"
xml:space="preserve"><tspan
style="stroke-width:3.02681"
y="154.73337"
x="112.0044"
id="tspan5718">α</tspan></text><text
transform="scale(0.97096033,1.0299082)"
id="tip_diameter"
y="244.42377"
x="49.322632"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.02681"
xml:space="preserve"><tspan
style="stroke-width:3.02681"
y="244.42377"
x="49.322632"
id="tspan10475">d</tspan></text><path
id="path4546-7"
d="m 68.862643,237.79594 v 0 h 22.215415"
style="fill:none;stroke:#000000;stroke-width:0.607142;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><g
id="g7053-6"
transform="matrix(11.107709,0,0,11.782067,3.8751124,34.449906)"><path
style="fill:none;stroke:#000000;stroke-width:0.065;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8,16 v 2"
id="path4536-1" /></g><path
id="path4538-8"
d="M 38.74436,270.09124 V 164.05264"
style="fill:none;stroke:#000000;stroke-width:0.743595;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4548-6"
d="m 175.2226,159.34173 h 18.38097"
style="fill:none;stroke:#000000;stroke-width:0.592962;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><text
transform="scale(0.97096033,1.0299082)"
id="cutting_edge_height"
y="125.83503"
x="180.02383"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="125.83503"
x="180.02383"
id="tspan7855"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">h</tspan></text><path
id="sesr3u8"
d="M 183.99982,158.14948 V 137.5348"
style="fill:none;stroke:#000000;stroke-width:0.66145833;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><path
id="path936"
d="M 21.764217,82.083367 H 72.731009"
style="fill:none;stroke:#000000;stroke-width:0.987384;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path938"
d="m 19.64521,223.34176 h 83.99998"
style="fill:none;stroke:#000000;stroke-width:0.757536;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path940"
d="M 28.028504,219.65219 V 84.84232"
style="fill:none;stroke:#000000;stroke-width:1.17078;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><text
transform="scale(0.97096033,1.0299082)"
id="length"
y="153.26979"
x="7.001987"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;line-height:1.25;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.28362"
xml:space="preserve"><tspan
y="153.26979"
x="7.001987"
id="tspan942"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">L</tspan></text><path
id="path1164"
d="m 175.2226,136.05837 h 18.38097"
style="fill:none;stroke:#000000;stroke-width:0.592962;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -7,7 +7,7 @@
width="210mm"
sodipodi:docname="tap.svg"
xml:space="preserve"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
@@ -26,14 +26,14 @@
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="1.0986719"
inkscape:cx="257.58372"
inkscape:cy="643.95931"
inkscape:window-width="2311"
inkscape:window-height="1509"
inkscape:window-x="1156"
inkscape:window-y="209"
inkscape:window-maximized="0"
inkscape:zoom="0.81750039"
inkscape:cx="299.69405"
inkscape:cy="489.90802"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
@@ -71,9 +71,9 @@
refX="0"
id="marker7593"
style="overflow:visible"
viewBox="0 0 12.70584107 9.5264135"
markerWidth="12.70584106"
markerHeight="9.5264135"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -84,9 +84,9 @@
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.70584107 9.5264135"
markerWidth="12.70584106"
markerHeight="9.5264135"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
@@ -173,12 +173,12 @@
refX="0"
refY="0"
orient="auto"
viewBox="0 0 8.88692697 5.07824398"
markerWidth="8.88692654"
markerHeight="5.07824373"
viewBox="0 0 8.886927 5.078244"
markerWidth="8.8869267"
markerHeight="5.0782437"
preserveAspectRatio="xMidYMid"><path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000025;fill-opacity:1;fill-rule:evenodd;stroke:#000025;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7377" /></marker><marker
orient="auto"
@@ -186,9 +186,9 @@
refX="0"
id="marker5480"
style="overflow:visible"
viewBox="0 0 6.93045877 5.19622555"
markerWidth="6.93045855"
markerHeight="5.19622538"
viewBox="0 0 6.9304588 5.1962256"
markerWidth="6.9304585"
markerHeight="5.1962252"
preserveAspectRatio="xMidYMid"><path
id="path5478"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -323,7 +323,33 @@
x2="161.61291"
y2="-6.2249015"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.48828362,0,0,0.90614893,61.780998,243.57292)" /></defs><metadata
gradientTransform="matrix(0.48828362,0,0,0.90614893,61.780998,243.57292)" /><marker
orient="auto"
refY="0"
refX="0"
id="marker7593-3"
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591-6"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)" /></marker><marker
style="overflow:visible"
id="marker4880-7"
refX="0"
refY="0"
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4878-5" /></marker></defs><metadata
id="metadata5"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><path
@@ -342,14 +368,45 @@
style="fill:url(#linearGradient16060);fill-opacity:1;stroke:none;stroke-width:0.192373px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 105.04679,269.90115 c 0,0 3.36583,-9.68019 7.12191,-18.85411 3.75608,-9.17391 9.47164,-23.74348 9.47164,-23.74348 h 19.15667 z"
id="path1249"
sodipodi:nodetypes="czccc" /><path
id="path4542"
d="M 78.908736,70.533135 H 131.94632"
style="fill:none;stroke:#000000;stroke-width:0.730434;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186);marker-end:url(#marker4584)"
sodipodi:nodetypes="cc" /><path
id="path4548"
d="M 71.177363,110.48344 H 139.09738"
style="fill:none;stroke:#000000;stroke-width:0.567739;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3948);marker-end:url(#marker4328)" /><text
sodipodi:nodetypes="czccc" /><g
id="path4542"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 78.908203,70.167969 v 0.730468 h 53.039067 v -0.730468 z"
id="path106772" /><g
id="g106754"><g
id="path106764"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.502173;stroke-linejoin:round;-inkscape-stroke:none"
d="m 124.13765,67.29212 8.7787,3.228149 -8.7787,3.228148 c 1.40247,-1.905898 1.39439,-4.513496 0,-6.456297 z"
id="path106768" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 124.22461,67.056641 a 0.25111161,0.25111161 0 0 0 -0.29102,0.382812 c 1.3326,1.85671 1.33936,4.342687 0.002,6.160156 a 0.25111161,0.25111161 0 0 0 0.28906,0.384766 l 8.7793,-3.228516 a 0.25111161,0.25111161 0 0 0 0,-0.470703 z m 0.41797,0.689453 7.54687,2.773437 -7.54101,2.773438 c 0.96981,-1.72581 0.96309,-3.799822 -0.006,-5.546875 z"
id="path106770" /></g><g
id="path106756"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.502173;stroke-linejoin:round;-inkscape-stroke:none"
d="m 86.717402,73.77415 -8.778696,-3.228149 8.778696,-3.228148 c -1.402468,1.905898 -1.394387,4.513496 0,6.456297 z"
id="path106760" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 86.630859,67.082031 -8.779297,3.228516 a 0.25111161,0.25111161 0 0 0 0,0.470703 l 8.779297,3.228516 a 0.25111161,0.25111161 0 0 0 0.291016,-0.382813 c -1.332598,-1.85671 -1.339351,-4.342686 -0.002,-6.160156 a 0.25111161,0.25111161 0 0 0 -0.289063,-0.384766 z m -0.423828,0.691406 c -0.969807,1.725811 -0.963093,3.799822 0.0059,5.546875 l -7.546875,-2.773437 z"
id="path106762" /></g></g></g><g
id="path4542-3"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 71.574219,109.5957 v 0.82422 h 67.755861 v -0.82422 z"
id="path106742" /><g
id="g106724"><g
id="path106734"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.567595;stroke-linejoin:round;-inkscape-stroke:none"
d="m 130.50474,106.34464 9.92236,3.64871 -9.92236,3.6487 c 1.58518,-2.15419 1.57605,-5.1015 0,-7.29741 z"
id="path106738" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 130.60352,106.07813 a 0.28382588,0.28382588 0 0 0 -0.33008,0.43164 c 1.50621,2.0986 1.51358,4.9106 0.002,6.96484 a 0.28382588,0.28382588 0 0 0 0.32813,0.43359 l 9.92187,-3.64843 a 0.28382588,0.28382588 0 0 0 0,-0.53321 z m 0.47265,0.77929 8.5293,3.13477 -8.52344,3.13476 c 1.09546,-1.95029 1.08888,-4.29532 -0.006,-6.26953 z"
id="path106740" /></g><g
id="path106726"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.567595;stroke-linejoin:round;-inkscape-stroke:none"
d="m 80.399697,113.67114 -9.922361,-3.64871 9.922361,-3.6487 c -1.585178,2.15419 -1.576044,5.1015 0,7.29741 z"
id="path106730" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 80.300781,106.10742 -9.921875,3.64844 a 0.28382588,0.28382588 0 0 0 0,0.5332 l 9.921875,3.64844 a 0.28382588,0.28382588 0 0 0 0.330078,-0.43164 c -1.506205,-2.0986 -1.513583,-4.9106 -0.002,-6.96484 a 0.28382588,0.28382588 0 0 0 -0.328125,-0.4336 z m -0.478515,0.78125 c -1.095456,1.9503 -1.088872,4.29533 0.0059,6.26953 l -8.527344,-3.13476 z"
id="path106732" /></g></g></g><text
transform="scale(0.9316925,1.0733155)"
id="shank_diameter"
y="61.487053"
@@ -372,7 +429,7 @@
id="tspan5690">D</tspan></text><path
d="m 70.391848,220.93815 a 49.287517,49.590925 89.920721 0 1 69.329632,0.11418"
id="path5698"
style="fill:none;fill-opacity:1;stroke:#000025;stroke-width:1.06959;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker7379);marker-end:url(#marker5480)" /><text
style="fill:none;fill-opacity:1;stroke:#000025;stroke-width:1.06959;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><text
transform="scale(1.0847256,0.92189217)"
id="cutting_edge_angle"
y="213.85809"
@@ -396,21 +453,52 @@
y="157.95256"
x="173.49055"
id="tspan7855"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:29.311px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:3.41031">h</tspan></text><path
id="sesr3u8"
d="M 154.37002,224.09829 V 85.722855"
style="fill:none;stroke:#000000;stroke-width:1.16605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)" /><path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:29.311px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke-width:3.41031">h</tspan></text><g
id="sesr3u8"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="M 153.78711,85.722656 V 224.09766 h 1.16601 V 85.722656 Z"
id="path106832" /><g
id="g106814"><g
id="path106824"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.801659;stroke-linejoin:round;-inkscape-stroke:none"
d="m 149.19613,98.18845 5.15335,-14.014131 5.15335,14.014132 c -3.04254,-2.238873 -7.20525,-2.225972 -10.3067,-10e-7 z"
id="path106828" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 154.34961,83.773437 a 0.40086958,0.40086958 0 0 0 -0.37695,0.261719 l -5.15235,14.015625 a 0.40086958,0.40086958 0 0 0 0.60938,0.462891 c 2.96401,-2.127332 6.93456,-2.136949 9.83593,-0.002 a 0.40086958,0.40086958 0 0 0 0.61329,-0.460938 l -5.15235,-14.015625 a 0.40086958,0.40086958 0 0 0 -0.37695,-0.261719 z m 0,1.564454 4.42578,12.035156 c -2.75492,-1.548014 -6.06663,-1.53882 -8.85547,0.0078 z"
id="path106830" /></g><g
id="path106816"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.801659;stroke-linejoin:round;-inkscape-stroke:none"
d="m 159.54391,211.6327 -5.15335,14.01413 -5.15335,-14.01414 c 3.04254,2.23888 7.20525,2.22598 10.3067,1e-5 z"
id="path106820" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 159.63281,211.24219 a 0.40086958,0.40086958 0 0 0 -0.32226,0.0644 c -2.96402,2.12733 -6.93457,2.13891 -9.83594,0.004 a 0.40086958,0.40086958 0 0 0 -0.61328,0.46093 l 5.15234,14.01368 a 0.40086958,0.40086958 0 0 0 0.75391,0 l 5.15234,-14.01368 a 0.40086958,0.40086958 0 0 0 -0.28711,-0.52929 z m -0.8125,1.19922 -4.42969,12.04101 -4.42578,-12.0332 c 2.75475,1.54769 6.06685,1.53857 8.85547,-0.008 z"
id="path106822" /></g></g></g><path
id="path936"
d="M 21.764217,29.347942 H 72.731009"
style="fill:none;stroke:#000000;stroke-width:1.05609;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="cc" /><path
id="path938"
d="m 19.64521,270.25431 h 83.99998"
style="fill:none;stroke:#000000;stroke-width:0.810251;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path940"
d="M 28.028504,266.05447 V 33.680591"
style="fill:none;stroke:#000000;stroke-width:1.24592;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker4880)"
sodipodi:nodetypes="cc" /><text
style="fill:none;stroke:#000000;stroke-width:0.810251;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path940"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="M 27.40625,33.679687 V 266.05469 h 1.246094 V 33.679687 Z"
id="path106802" /><g
id="g106784"><g
id="path106794"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.85657;stroke-linejoin:round;-inkscape-stroke:none"
d="m 22.500222,47.000032 5.506336,-14.974046 5.506334,14.974046 c -3.250937,-2.392226 -7.698785,-2.378442 -11.01267,0 z"
id="path106798" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 28.005859,31.597656 a 0.42832783,0.42832783 0 0 0 -0.40039,0.28125 L 22.097656,46.851562 A 0.42832783,0.42832783 0 0 0 22.75,47.347656 c 3.167037,-2.273046 7.409663,-2.283186 10.509766,-0.002 a 0.42832783,0.42832783 0 0 0 0.654296,-0.494141 L 28.408203,31.878906 a 0.42832783,0.42832783 0 0 0 -0.402344,-0.28125 z m 0.002,1.667969 4.728516,12.861328 c -2.943354,-1.653442 -6.48341,-1.642463 -9.462891,0.0098 z"
id="path106800" /></g><g
id="path106786"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.85657;stroke-linejoin:round;-inkscape-stroke:none"
d="m 33.556786,252.73503 -5.506336,14.97404 -5.506334,-14.97404 c 3.250937,2.39222 7.698785,2.37844 11.01267,0 z"
id="path106790" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 33.652344,252.31836 a 0.42832783,0.42832783 0 0 0 -0.345703,0.0684 c -3.167037,2.27304 -7.40771,2.28513 -10.507813,0.004 a 0.42832783,0.42832783 0 0 0 -0.65625,0.49219 l 5.505859,14.97461 a 0.42832783,0.42832783 0 0 0 0.804688,0 l 5.505859,-14.97461 a 0.42832783,0.42832783 0 0 0 -0.30664,-0.56445 z m -0.869141,1.2793 -4.732422,12.86914 -4.730469,-12.85938 c 2.943681,1.65447 6.482796,1.6428 9.462891,-0.01 z"
id="path106792" /></g></g></g><text
transform="scale(0.95174658,1.0506999)"
id="length"
y="144.60545"

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -7,7 +7,7 @@
width="210mm"
sodipodi:docname="thread-mill.svg"
xml:space="preserve"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
@@ -27,13 +27,13 @@
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.71628115"
inkscape:cx="407.66115"
inkscape:cy="655.46888"
inkscape:window-width="1838"
inkscape:window-height="1205"
inkscape:window-x="2002"
inkscape:window-y="638"
inkscape:window-maximized="0"
inkscape:cx="256.88237"
inkscape:cy="573.09898"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
@@ -78,7 +78,11 @@
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"><path
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
@@ -87,7 +91,11 @@
id="marker4880"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -476,13 +484,45 @@
style="fill:none;stroke:#000000;stroke-width:0.806685;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4538"
d="M 162.99873,276.00247 V 220.5193"
style="fill:none;stroke:#000000;stroke-width:0.560233;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542"
d="M 75.688621,43.051594 H 139.654"
style="fill:none;stroke:#000000;stroke-width:0.75876;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186-7);marker-end:url(#marker4584-3)" /><path
id="path4548"
d="M 54.546337,264.57399 H 160.51219"
style="fill:none;stroke:#000000;stroke-width:0.690558;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3948-9);marker-end:url(#marker4328-2)" /><text
style="fill:none;stroke:#000000;stroke-width:0.560233;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path4542"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 75.689453,42.671875 v 0.759766 H 139.6543 v -0.759766 z"
id="path98191" /><g
id="g98173"><g
id="path98183"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.521648;stroke-linejoin:round;-inkscape-stroke:none"
d="m 131.54252,39.684893 9.11913,3.353336 -9.11913,3.353334 c 1.45685,-1.979807 1.44846,-4.688527 0,-6.70667 z"
id="path98187" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 131.63281,39.439453 a 0.26085008,0.26085008 0 0 0 -0.30273,0.398438 c 1.38427,1.928713 1.39121,4.510488 0.002,6.398437 a 0.26085008,0.26085008 0 0 0 0.30078,0.400391 l 9.11914,-3.353516 a 0.26085008,0.26085008 0 0 0 0,-0.490234 z m 0.43555,0.716797 7.83789,2.882812 -7.83203,2.878907 c 1.00652,-1.792355 1.00019,-3.947474 -0.006,-5.761719 z"
id="path98189" /></g><g
id="path98175"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.521648;stroke-linejoin:round;-inkscape-stroke:none"
d="m 83.800104,46.418295 -9.11913,-3.353336 9.11913,-3.353334 c -1.456855,1.979807 -1.448461,4.688527 0,6.70667 z"
id="path98179" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 83.710937,39.466797 -9.11914,3.353515 a 0.26085008,0.26085008 0 0 0 0,0.490235 l 9.11914,3.353515 a 0.26085008,0.26085008 0 0 0 0.300782,-0.398437 c -1.384276,-1.928713 -1.391214,-4.510488 -0.002,-6.398438 a 0.26085008,0.26085008 0 0 0 -0.298829,-0.40039 z m -0.443359,0.71875 c -1.006453,1.792463 -0.998457,3.947479 0.0078,5.761719 L 75.4375,43.066406 Z"
id="path98181" /></g></g></g><g
id="path4548"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 54.546875,264.22852 v 0.6914 H 160.51172 v -0.6914 z"
id="path98743" /><g
id="g98725"><g
id="path98735"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.474759;stroke-linejoin:round;-inkscape-stroke:none"
d="m 153.12982,261.50991 8.29944,3.05192 -8.29944,3.05191 c 1.3259,-1.80185 1.31826,-4.26709 0,-6.10383 z"
id="path98739" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 153.21094,261.28711 a 0.23740324,0.23740324 0 0 0 -0.27344,0.36133 c 1.25984,1.75535 1.26633,4.10597 0.002,5.82422 a 0.23740324,0.23740324 0 0 0 0.27149,0.36328 l 8.30078,-3.05078 a 0.23740324,0.23740324 0 0 0 0,-0.44532 z m 0.39648,0.65039 7.13477,2.625 -7.13086,2.62109 c 0.91752,-1.63189 0.91253,-3.59399 -0.004,-5.24609 z"
id="path98741" /></g><g
id="path98727"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.474759;stroke-linejoin:round;-inkscape-stroke:none"
d="m 61.928711,267.63807 -8.299448,-3.05192 8.299448,-3.05191 c -1.325905,1.80185 -1.318265,4.26709 0,6.10383 z"
id="path98731" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 61.847656,261.31055 -8.300781,3.05273 a 0.23740324,0.23740324 0 0 0 0,0.44531 l 8.300781,3.05274 A 0.23740324,0.23740324 0 0 0 62.121094,267.5 c -1.259849,-1.75535 -1.26634,-4.10597 -0.002,-5.82422 a 0.23740324,0.23740324 0 0 0 -0.271485,-0.36523 z m -0.402344,0.65429 c -0.916328,1.63167 -0.91046,3.59467 0.0059,5.2461 l -7.134766,-2.625 z"
id="path98733" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="shank_diameter"
y="37.599903"
@@ -502,13 +542,28 @@
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.28362"
y="280.09338"
x="99.203911"
id="tspan5690">D</tspan></text><path
d="m 6.0565504,223.60314 c -0.703433,-2.57791 -1.8448091,-6.72069 -1.8966227,-10.21223 -0.063275,-4.26386 1.0952574,-7.8221 1.6284317,-9.68871"
id="tspan5690">D</tspan></text><g
id="path5698"
style="fill:none;fill-opacity:1;stroke:#000025;stroke-width:0.6;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Lstart-0);marker-end:url(#Arrow2Lend-3)"
inkscape:transform-center-x="4.6903494"
inkscape:transform-center-y="0.05713891"
sodipodi:nodetypes="csc" /><text
inkscape:transform-center-y="0.05713891"><path
style="color:#000000;fill:#000025;-inkscape-stroke:none"
d="m 5.5,203.61914 c -0.5293057,1.85307 -1.7047428,5.45474 -1.640625,9.77539 0.052731,3.55338 1.2049787,7.70997 1.9082031,10.28711 l 0.578125,-0.1582 c -0.7036402,-2.57867 -1.8358228,-6.70702 -1.8867187,-10.13672 -0.062432,-4.20706 1.0801457,-7.72141 1.6171875,-9.60156 z"
id="path98309" /><g
id="g98291"><g
id="path98301"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.4125;stroke-linejoin:round;-inkscape-stroke:none"
d="m 1.4667771,209.1386 4.5302666,-6.20547 0.5691754,7.66206 c -1.1889458,-1.53771 -3.2503546,-2.11962 -5.099442,-1.45659 z"
id="path98305" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 6.0527344,202.73437 a 0.20627062,0.20627062 0 0 0 -0.2226563,0.0762 l -4.5292969,6.20703 a 0.20627062,0.20627062 0 0 0 0.2363282,0.31445 c 1.7671492,-0.63365 3.7314525,-0.0777 4.8652343,1.38867 a 0.20627062,0.20627062 0 0 0 0.3691407,-0.14062 L 6.203125,202.91797 a 0.20627062,0.20627062 0 0 0 -0.1503906,-0.1836 z m -0.2207032,0.77344 0.4980469,6.69336 C 5.1710169,208.99661 3.513031,208.52534 1.875,208.92773 Z"
id="path98307" /></g><g
id="path98293"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.4125;stroke-linejoin:round;-inkscape-stroke:none"
d="m 6.9363902,216.71428 -0.6598872,7.65478 -4.4564495,-6.25869 c 1.8136074,0.69927 3.8782691,0.12901 5.1163367,-1.39609 z"
id="path98297" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 6.9277344,216.50781 a 0.20627062,0.20627062 0 0 0 -0.1523438,0.0762 c -1.1832052,1.45752 -3.1513981,2.00081 -4.8808594,1.33399 a 0.20627062,0.20627062 0 0 0 -0.2421875,0.3125 l 4.4570313,6.25781 a 0.20627062,0.20627062 0 0 0 0.3730469,-0.10156 l 0.6601562,-7.6543 a 0.20627062,0.20627062 0 0 0 -0.2148437,-0.22461 z m -0.2324219,0.59766 -0.5761719,6.68555 -3.890625,-5.46485 c 1.6147322,0.42848 3.2749307,-0.0284 4.4667969,-1.2207 z"
id="path98299" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="cutting_angle"
y="190.67944"
@@ -525,10 +580,19 @@
sodipodi:nodetypes="cc" /><path
id="path4548-6"
d="m 163.60588,209.13366 h 24.60161"
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4538-7"
d="M 182.06472,238.19957 V 220.64954"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" /><text
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path4538-7"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 181.69531,220.65039 v 17.54883 h 0.74024 v -17.54883 z"
id="path98985" /><g
id="g98975"><g
id="path98977"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.508709;stroke-linejoin:round;-inkscape-stroke:none"
d="m 178.78152,228.55984 3.27017,-8.89296 3.27016,8.89296 c -1.9307,-1.42072 -4.57224,-1.41254 -6.54033,0 z"
id="path98981" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 182.05078,219.41211 a 0.25437994,0.25437994 0 0 0 -0.23828,0.16601 l -3.26953,8.89454 a 0.25437994,0.25437994 0 0 0 0.38672,0.29296 c 1.88088,-1.34994 4.40106,-1.3548 6.24218,0 a 0.25437994,0.25437994 0 0 0 0.38868,-0.29296 l -3.26953,-8.89454 a 0.25437994,0.25437994 0 0 0 -0.24024,-0.16601 z m 0,0.99219 2.81055,7.63867 c -1.74845,-0.98297 -3.85097,-0.97785 -5.6211,0.004 z"
id="path98983" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="crest"
y="178.9838"
@@ -552,10 +616,19 @@
sodipodi:nodetypes="ccccc" /><path
id="path128465"
d="m 163.43488,218.44559 h 24.60161"
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path130891"
d="M 182.06472,206.97858 V 189.42855"
style="fill:none;stroke:#000000;stroke-width:0.739941;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186)" /><path
style="fill:none;stroke:#000000;stroke-width:0.686;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path130891"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 181.69531,189.42773 v 17.55079 h 0.74024 v -17.55079 z"
id="path98967" /><g
id="g98957"><g
id="path98959"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.508709;stroke-linejoin:round;-inkscape-stroke:none"
d="m 185.34792,199.06828 -3.27017,8.89296 -3.27016,-8.89296 c 1.9307,1.42072 4.57224,1.41254 6.54033,0 z"
id="path98963" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 185.4043,198.82031 a 0.25437994,0.25437994 0 0 0 -0.20508,0.041 c -1.88088,1.34994 -4.39911,1.35675 -6.24024,0.002 a 0.25437994,0.25437994 0 0 0 -0.39062,0.29297 l 3.27148,8.89258 a 0.25437994,0.25437994 0 0 0 0.47657,0 l 3.26953,-8.89258 a 0.25437994,0.25437994 0 0 0 -0.18164,-0.33594 z m -0.51563,0.75977 -2.81055,7.64453 -2.80859,-7.63867 c 1.74828,0.98203 3.84954,0.97582 5.61914,-0.006 z"
id="path98965" /></g></g></g><path
style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 52.03577,217.63758 3.9218984,201.46797"
id="path140257"
@@ -563,13 +636,31 @@
style="fill:none;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
d="M 52.03577,209.48416 3.9218984,226.08075"
id="path140655"
sodipodi:nodetypes="cc" /><path
id="path149716"
d="m 131.67319,128.01979 v 0 h 20.17804"
style="fill:none;stroke:#000000;stroke-width:0.60268;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4732-6)" /><path
id="path149718"
d="m 66.425005,128.01979 v 0 H 84.02452"
style="fill:none;stroke:#000000;stroke-width:0.562856;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880-0)" /><text
sodipodi:nodetypes="cc" /><g
id="path149716"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 131.67383,127.71875 v 0.60156 h 20.17773 v -0.60156 z"
id="path98235" /><g
id="g98225"><g
id="path98227"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.414343;stroke-linejoin:round;-inkscape-stroke:none"
d="m 138.11611,130.69395 -7.24329,-2.66354 7.24329,-2.66354 c -1.15718,1.57255 -1.15051,3.72407 0,5.32708 z"
id="path98231" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 138.04492,125.17188 -7.24414,2.66406 a 0.20719222,0.20719222 0 0 0 0,0.38867 l 7.24414,2.66406 a 0.20719222,0.20719222 0 0 0 0.24024,-0.3164 c -1.09953,-1.53198 -1.10545,-3.58245 -0.002,-5.08204 a 0.20719222,0.20719222 0 0 0 -0.23828,-0.31835 z m -0.24609,0.53125 c -0.84336,1.45175 -0.84057,3.18338 0,4.65429 l -6.32617,-2.32617 z"
id="path98233" /></g></g></g><g
id="path149718"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 66.425781,127.73828 v 0.5625 h 17.59961 v -0.5625 z"
id="path98213" /><g
id="g98203"><g
id="path98205"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.386964;stroke-linejoin:round;-inkscape-stroke:none"
d="m 78.007338,125.52234 6.764665,2.48754 -6.764666,2.48753 c 1.080711,-1.46864 1.074484,-3.47799 10e-7,-4.97507 z"
id="path98209" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 78.074219,125.33984 a 0.19350134,0.19350134 0 0 0 -0.22461,0.29493 c 1.02687,1.43074 1.032522,3.34754 0.002,4.74804 a 0.19350134,0.19350134 0 0 0 0.222657,0.29688 l 6.763672,-2.48828 a 0.19350134,0.19350134 0 0 0 0,-0.36328 z m 0.226562,0.4961 5.910156,2.17383 -5.908203,2.17382 c 0.78842,-1.35648 0.784115,-2.97338 -0.002,-4.34765 z"
id="path98211" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="neck_diameter"
y="137.32324"
@@ -581,10 +672,19 @@
id="tspan150142">N</tspan></text><path
id="path1019"
d="M 50.852551,106.75249 H 80.506778"
style="fill:none;stroke:#000000;stroke-width:0.753157;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path1021"
d="M 53.642557,133.70707 V 109.23138"
style="fill:none;stroke:#000000;stroke-width:0.873827;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" /><text
style="fill:none;stroke:#000000;stroke-width:0.753157;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path1021"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 53.205078,109.23047 v 24.47656 h 0.875 v -24.47656 z"
id="path98257" /><g
id="g98247"><g
id="path98249"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.600756;stroke-linejoin:round;-inkscape-stroke:none"
d="m 49.765292,118.57298 3.861873,-10.50206 3.861872,10.50206 c -2.280048,-1.67779 -5.399549,-1.66812 -7.723745,0 z"
id="path98253" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 53.626953,107.77148 a 0.30040803,0.30040803 0 0 0 -0.28125,0.19532 l -3.863281,10.50195 a 0.30040803,0.30040803 0 0 0 0.458984,0.34766 c 2.221204,-1.5942 5.194881,-1.6019 7.369141,-0.002 a 0.30040803,0.30040803 0 0 0 0.460937,-0.3457 L 53.908203,107.9668 a 0.30040803,0.30040803 0 0 0 -0.28125,-0.19532 z m 0,1.16797 3.316406,9.02149 c -2.06446,-1.15938 -4.54715,-1.15324 -6.636718,0.006 z"
id="path98255" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="neck_length"
y="155.9395"
@@ -596,7 +696,16 @@
id="tspan1023">n</tspan></text><path
id="path1027"
d="M 51.348964,195.84193 H 81.003191"
style="fill:none;stroke:#000000;stroke-width:0.753157;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path1029"
d="M 53.642557,193.38741 V 166.30105"
style="fill:none;stroke:#000000;stroke-width:0.91925;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186)" /></svg>
style="fill:none;stroke:#000000;stroke-width:0.753157;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path1029"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 53.183594,166.30078 v 27.08594 h 0.917968 v -27.08594 z"
id="path98279" /><g
id="g98269"><g
id="path98271"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.631984;stroke-linejoin:round;-inkscape-stroke:none"
d="m 57.721369,183.56022 -4.06262,11.04797 -4.062619,-11.04797 c 2.398569,1.765 5.680227,1.75483 8.125239,0 z"
id="path98275" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 57.792969,183.25195 a 0.3160236,0.3160236 0 0 0 -0.25586,0.0508 c -2.336666,1.67707 -5.466624,1.68702 -7.753906,0.004 a 0.3160236,0.3160236 0 0 0 -0.484375,0.36328 l 4.0625,11.04688 a 0.3160236,0.3160236 0 0 0 0.59375,0 l 4.0625,-11.04688 a 0.3160236,0.3160236 0 0 0 -0.224609,-0.41797 z m -0.642578,0.94532 -3.492188,9.49609 -3.488281,-9.49024 c 2.171371,1.21959 4.782429,1.21278 6.980469,-0.006 z"
id="path98277" /></g></g></g></svg>

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View File

@@ -7,7 +7,7 @@
width="210mm"
sodipodi:docname="v-bit.svg"
xml:space="preserve"
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
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"
@@ -26,14 +26,14 @@
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="0.7127433"
inkscape:cx="623.64669"
inkscape:cy="637.67699"
inkscape:window-width="2860"
inkscape:window-height="1491"
inkscape:window-x="536"
inkscape:window-y="363"
inkscape:window-maximized="0"
inkscape:zoom="0.71907494"
inkscape:cx="333.76215"
inkscape:cy="581.99776"
inkscape:window-width="1632"
inkscape:window-height="1013"
inkscape:window-x="1728"
inkscape:window-y="1050"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" /><defs
id="defs2"><linearGradient
inkscape:collect="always"
@@ -70,7 +70,11 @@
refY="0"
refX="0"
id="marker7593"
style="overflow:visible"><path
style="overflow:visible"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"><path
id="path7591"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
@@ -79,7 +83,12 @@
id="marker4880"
refX="0"
refY="0"
orient="auto"><path
orient="auto"
viewBox="0 0 12.705841 9.5264135"
markerWidth="12.705841"
markerHeight="9.5264139"
preserveAspectRatio="xMidYMid"
markerUnits="strokeWidth"><path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
@@ -354,16 +363,57 @@
id="path4536" /></g><path
id="path4538"
d="M 171.54918,270.09124 V 164.05264"
style="fill:none;stroke:#000000;stroke-width:0.743595;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path4542"
d="M 77.321236,58.014043 H 133.53382"
style="fill:none;stroke:#000000;stroke-width:0.682912;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4186);marker-end:url(#marker4584)" /><path
id="path4546"
d="m 116.01063,237.79594 v 0 h 22.21542"
style="fill:none;stroke:#000000;stroke-width:0.607142;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4732)" /><path
id="path4548"
d="M 41.274623,258.30918 H 166.88345"
style="fill:none;stroke:#000000;stroke-width:0.721845;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3948);marker-end:url(#marker4328)" /><text
style="fill:none;stroke:#000000;stroke-width:0.743595;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path4542"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 77.320312,57.671875 v 0.683594 H 133.5332 v -0.683594 z"
id="path17573" /><g
id="g17555"><g
id="path17565"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.469502;stroke-linejoin:round;-inkscape-stroke:none"
d="m 126.23319,54.983888 8.20755,3.018126 -8.20755,3.018125 c 1.31122,-1.7819 1.30366,-4.219848 0,-6.036251 z"
id="path17569" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 126.31445,54.763672 a 0.23477448,0.23477448 0 0 0 -0.27148,0.357422 c 1.24589,1.735913 1.25233,4.060541 0.002,5.759765 a 0.23477448,0.23477448 0 0 0 0.26953,0.359375 l 8.20703,-3.017578 a 0.23477448,0.23477448 0 0 0 0,-0.441406 z m 0.39258,0.644531 7.05274,2.59375 -7.04883,2.59375 c 0.90699,-1.613483 0.90184,-3.553977 -0.004,-5.1875 z"
id="path17571" /></g><g
id="path17557"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.469502;stroke-linejoin:round;-inkscape-stroke:none"
d="m 84.62187,61.044198 -8.207554,-3.018126 8.207555,-3.018125 c -1.311224,1.7819 -1.303669,4.219848 -10e-7,6.036251 z"
id="path17561" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 84.541016,54.787109 -8.207032,3.019532 a 0.23477448,0.23477448 0 0 0 0,0.439453 l 8.207032,3.017578 A 0.23477448,0.23477448 0 0 0 84.8125,60.908203 c -1.245899,-1.735913 -1.25234,-4.062494 -0.002,-5.761719 a 0.23477448,0.23477448 0 0 0 -0.269531,-0.359375 z m -0.396485,0.646485 c -0.906782,1.613566 -0.902057,3.554063 0.0039,5.1875 l -7.054687,-2.59375 z"
id="path17563" /></g></g></g><g
id="path4546"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 118.12695,237.49219 v 0.60742 h 22.21485 v -0.60742 z"
id="path17631" /><g
id="g17621"><g
id="path17623"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.41741;stroke-linejoin:round;-inkscape-stroke:none"
d="m 124.61793,240.48989 -7.29692,-2.68326 7.29692,-2.68326 c -1.16574,1.5842 -1.15903,3.75165 0,5.36652 z"
id="path17627" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 124.54688,234.92773 -7.29883,2.6836 a 0.20872586,0.20872586 0 0 0 0,0.39062 l 7.29883,2.6836 a 0.20872586,0.20872586 0 0 0 0.24023,-0.31641 c -1.10767,-1.54331 -1.11361,-3.61235 -0.002,-5.12305 a 0.20872586,0.20872586 0 0 0 -0.23828,-0.31836 z m -0.24805,0.53516 c -0.84974,1.46301 -0.84575,3.20746 0.002,4.68945 l -6.37695,-2.3457 z"
id="path17629" /></g></g></g><g
id="path4548"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 41.275391,257.94922 v 0.7207 H 166.88281 v -0.7207 z"
id="path17667" /><g
id="g17649"><g
id="path17659"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.496268;stroke-linejoin:round;-inkscape-stroke:none"
d="m 159.1666,255.10628 8.67547,3.19018 -8.67547,3.19019 c 1.38598,-1.88348 1.378,-4.46042 0,-6.38037 z"
id="path17663" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 159.25195,254.87305 a 0.24815882,0.24815882 0 0 0 -0.28711,0.37695 c 1.31694,1.83487 1.32363,4.29375 0.002,6.08984 a 0.24815882,0.24815882 0 0 0 0.28515,0.37891 l 8.67578,-3.18945 a 0.24815882,0.24815882 0 0 0 0,-0.46485 z m 0.41602,0.68359 7.45508,2.74023 -7.45118,2.73829 c 0.95765,-1.70455 0.95211,-3.75268 -0.004,-5.47852 z"
id="path17665" /></g><g
id="path17651"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.496268;stroke-linejoin:round;-inkscape-stroke:none"
d="M 48.991468,261.51208 40.316,258.3219 l 8.675469,-3.19019 c -1.385978,1.88348 -1.377992,4.46042 -1e-6,6.38037 z"
id="path17655" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 48.90625,254.89844 -8.675781,3.1914 a 0.24815882,0.24815882 0 0 0 0,0.46485 l 8.675781,3.18945 a 0.24815882,0.24815882 0 0 0 0.287109,-0.37695 c -1.316927,-1.83487 -1.323625,-4.2918 -0.002,-6.08789 a 0.24815882,0.24815882 0 0 0 -0.285156,-0.38086 z m -0.421875,0.68359 c -0.957915,1.70568 -0.950166,3.75611 0.0078,5.48242 l -7.457031,-2.74218 z"
id="path17657" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="shank_diameter"
y="52.456436"
@@ -383,10 +433,26 @@
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32.286px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:3.02681"
y="279.81418"
x="95.966133"
id="tspan5690">D</tspan></text><path
d="m 58.330836,179.82921 a 55.597074,66.842837 89.997374 0 1 93.448334,0.12878"
id="path5698"
style="fill:none;fill-opacity:1;stroke:#000025;stroke-width:0.660072;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Lstart);marker-end:url(#Arrow2Lend)" /><text
id="tspan5690">D</tspan></text><g
id="path5698"><path
style="color:#000000;fill:#000025;-inkscape-stroke:none"
d="m 105.08789,163.7168 c -16.938981,-0.0233 -33.889187,5.25974 -46.964843,15.85547 l 0.416015,0.51367 c 25.884127,-20.97495 67.231938,-20.91902 93.031248,0.12695 l 0.41797,-0.50977 C 138.95522,169.07131 122.02687,163.74014 105.08789,163.7168 Z"
id="path17617" /><g
id="g17599"><g
id="path17609"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.4538;stroke-linejoin:round;-inkscape-stroke:none"
d="m 148.16261,173.22805 4.30316,7.27503 -7.99113,-2.75411 c 2.07074,-0.53346 3.5546,-2.364 3.68797,-4.52092 z"
id="path17613" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 148.10937,173.00781 a 0.22692269,0.22692269 0 0 0 -0.17382,0.20703 c -0.12746,2.06134 -1.54292,3.80575 -3.51758,4.31446 a 0.22692269,0.22692269 0 0 0 -0.0176,0.43359 l 7.99219,2.75391 a 0.22692269,0.22692269 0 0 0 0.26758,-0.33008 l -4.30274,-7.27344 a 0.22692269,0.22692269 0 0 0 -0.24805,-0.10547 z m 0.14844,0.82813 3.69727,6.25195 -6.86328,-2.36523 c 1.66494,-0.65405 2.846,-2.11026 3.16601,-3.88672 z"
id="path17615" /></g><g
id="path17601"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.4538;stroke-linejoin:round;-inkscape-stroke:none"
d="m 65.657172,177.66209 -8.000067,2.72804 4.326859,-7.26097 c 0.09967,2.13603 1.588892,3.96221 3.673208,4.53293 z"
id="path17605" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 62.039062,172.9082 a 0.22692269,0.22692269 0 0 0 -0.25,0.10547 l -4.326171,7.25977 a 0.22692269,0.22692269 0 0 0 0.267578,0.33203 l 8,-2.72852 a 0.22692269,0.22692269 0 0 0 -0.01367,-0.43359 c -1.991954,-0.54543 -3.410814,-2.28729 -3.50586,-4.32422 a 0.22692269,0.22692269 0 0 0 -0.171875,-0.21094 z m -0.154296,0.83203 c 0.300987,1.76346 1.485863,3.21532 3.160156,3.89063 l -6.878906,2.3457 z"
id="path17607" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="cutting_edge_angle"
y="154.73337"
@@ -406,10 +472,19 @@
style="stroke-width:3.02681"
y="244.42377"
x="49.322632"
id="tspan10475">d</tspan></text><path
id="path4546-7"
d="m 68.862643,237.79594 v 0 h 22.215415"
style="fill:none;stroke:#000000;stroke-width:0.607142;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4880)" /><g
id="tspan10475">d</tspan></text><g
id="path4546-7"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 68.863281,237.49219 v 0.60742 h 22.214844 v -0.60742 z"
id="path17645" /><g
id="g17635"><g
id="path17637"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.41741;stroke-linejoin:round;-inkscape-stroke:none"
d="m 84.587439,235.10199 7.296915,2.68326 -7.296915,2.68326 c 1.165742,-1.5842 1.159025,-3.75165 0,-5.36652 z"
id="path17641" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 84.660156,234.90625 a 0.20872586,0.20872586 0 0 0 -0.242187,0.31836 c 1.107665,1.54331 1.113608,3.6104 0.002,5.12109 a 0.20872586,0.20872586 0 0 0 0.240234,0.31836 l 7.296875,-2.68359 a 0.20872586,0.20872586 0 0 0 0,-0.39063 z m 0.246094,0.53711 6.375,2.3418 -6.375,2.34375 c 0.849087,-1.46189 0.845744,-3.20418 0,-4.68555 z"
id="path17643" /></g></g></g><g
id="g7053-6"
transform="matrix(11.107709,0,0,11.782067,3.8751124,34.449906)"><path
style="fill:none;stroke:#000000;stroke-width:0.065;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
@@ -430,19 +505,51 @@
y="125.83503"
x="180.02383"
id="tspan7855"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">h</tspan></text><path
id="sesr3u8"
d="M 183.99982,158.14948 V 137.5348"
style="fill:none;stroke:#000000;stroke-width:0.66145833;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker5072)" /><path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.2222px;font-family:'URW Bookman L';-inkscape-font-specification:'URW Bookman L, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal">h</tspan></text><g
id="sesr3u8"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 183.66992,137.53516 v 20.61523 h 0.66016 v -20.61523 z"
id="path17595" /><g
id="g17577"><g
id="path17587"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.454753;stroke-linejoin:round;-inkscape-stroke:none"
d="m 181.06486,144.60608 2.92331,-7.94971 2.92331,7.94972 c -1.72592,-1.27004 -4.08728,-1.26272 -5.84662,-1e-5 z"
id="path17591" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 183.98828,136.42969 a 0.22739924,0.22739924 0 0 0 -0.21289,0.14843 l -2.92383,7.94922 a 0.22739924,0.22739924 0 0 0 0.34571,0.26368 c 1.68137,-1.20676 3.93423,-1.21307 5.58007,-0.002 a 0.22739924,0.22739924 0 0 0 0.34766,-0.26172 l -2.92383,-7.94922 a 0.22739924,0.22739924 0 0 0 -0.21289,-0.14843 z m 0,0.88281 2.50977,6.83008 c -1.56259,-0.87725 -3.44193,-0.87137 -5.02344,0.006 z"
id="path17593" /></g><g
id="path17579"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.454753;stroke-linejoin:round;-inkscape-stroke:none"
d="m 186.93478,151.0782 -2.92331,7.94971 -2.92331,-7.94972 c 1.72592,1.27004 4.08728,1.26272 5.84662,1e-5 z"
id="path17583" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 186.98633,150.85742 a 0.22739924,0.22739924 0 0 0 -0.1836,0.0352 c -1.68137,1.20675 -3.93423,1.21306 -5.58007,0.002 a 0.22739924,0.22739924 0 0 0 -0.34766,0.26172 l 2.92383,7.94922 a 0.22739924,0.22739924 0 0 0 0.42578,0 l 2.92383,-7.94922 a 0.22739924,0.22739924 0 0 0 -0.16211,-0.29883 z m -0.46289,0.67969 -2.51172,6.83398 -2.51172,-6.83007 c 1.56267,0.87823 3.44141,0.87323 5.02344,-0.004 z"
id="path17585" /></g></g></g><path
id="path936"
d="M 21.764217,82.083367 H 72.731009"
style="fill:none;stroke:#000000;stroke-width:0.987384;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path938"
d="m 19.64521,223.34176 h 83.99998"
style="fill:none;stroke:#000000;stroke-width:0.757536;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path
id="path940"
d="M 28.028504,219.65219 V 84.84232"
style="fill:none;stroke:#000000;stroke-width:1.17078;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7593);marker-end:url(#marker5072)" /><text
style="fill:none;stroke:#000000;stroke-width:0.757536;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g
id="path940"><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="M 27.443359,84.841797 V 219.65234 h 1.169922 V 84.841797 Z"
id="path17551" /><g
id="g17533"><g
id="path17543"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.804911;stroke-linejoin:round;-inkscape-stroke:none"
d="m 22.833626,97.35848 5.174255,-14.070977 5.174254,14.070978 c -3.054877,-2.247954 -7.23448,-2.235001 -10.348509,-10e-7 z"
id="path17547" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 28.007812,82.884766 a 0.40249575,0.40249575 0 0 0 -0.376953,0.263671 L 22.455078,97.21875 a 0.40249575,0.40249575 0 0 0 0.613281,0.466797 c 2.976038,-2.135961 6.961861,-2.145608 9.875,-0.002 A 0.40249575,0.40249575 0 0 0 33.560547,97.21875 L 28.384766,83.148437 a 0.40249575,0.40249575 0 0 0 -0.376954,-0.263671 z m 0,1.566406 4.445313,12.08789 c -2.766561,-1.554991 -6.091938,-1.543807 -8.892578,0.0098 z"
id="path17549" /></g><g
id="path17535"><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.804911;stroke-linejoin:round;-inkscape-stroke:none"
d="m 33.223382,207.13603 -5.174255,14.07098 -5.174254,-14.07098 c 3.054877,2.24795 7.23448,2.235 10.348509,0 z"
id="path17539" /><path
style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-linejoin:round;-inkscape-stroke:none"
d="m 33.314453,206.74414 a 0.40249575,0.40249575 0 0 0 -0.326172,0.0645 c -2.976037,2.13596 -6.961861,2.14756 -9.875,0.004 a 0.40249575,0.40249575 0 0 0 -0.615234,0.46289 l 5.173828,14.07031 a 0.40249575,0.40249575 0 0 0 0.755859,0 l 5.173828,-14.07031 a 0.40249575,0.40249575 0 0 0 -0.287109,-0.53125 z m -0.818359,1.20313 -4.447266,12.09375 -4.445312,-12.08594 c 2.765887,1.55484 6.092211,1.54457 8.892578,-0.008 z"
id="path17541" /></g></g></g><text
transform="scale(0.97096033,1.0299082)"
id="length"
y="153.26979"

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 35 KiB