tomwer 1.3.0.dev2__py3-none-any.whl → 1.3.0rc10__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. orangecontrib/tomwer/widgets/__init__.py +11 -12
  2. orangecontrib/tomwer/widgets/control/DataListenerOW.py +6 -6
  3. orangecontrib/tomwer/widgets/control/DataValidatorOW.py +6 -6
  4. orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +3 -3
  5. orangecontrib/tomwer/widgets/control/NXTomomillOW.py +10 -8
  6. orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +6 -6
  7. orangecontrib/tomwer/widgets/debugtools/DatasetGeneratorOW.py +1 -1
  8. orangecontrib/tomwer/widgets/icat/RawDataScreenshotCreatorOW.py +98 -98
  9. orangecontrib/tomwer/widgets/icat/SaveToGalleryAndPublishOW.py +129 -129
  10. orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +13 -12
  11. orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +11 -9
  12. orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +11 -9
  13. orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +12 -15
  14. orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +9 -9
  15. orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +1 -1
  16. orangecontrib/tomwer/widgets/visualization/SinogramViewerOW.py +0 -1
  17. tomwer/__main__.py +0 -10
  18. tomwer/app/canvas_launcher/config.py +3 -3
  19. tomwer/app/canvas_launcher/environ.py +1 -0
  20. tomwer/app/intensitynormalization.py +12 -11
  21. tomwer/app/nabuapp.py +0 -11
  22. tomwer/app/zstitching.py +11 -1
  23. tomwer/core/process/control/datalistener/datalistener.py +15 -10
  24. tomwer/core/process/control/nxtomomill.py +1 -1
  25. tomwer/core/process/control/scantransfer.py +8 -32
  26. tomwer/core/process/edit/darkflatpatch.py +8 -9
  27. tomwer/core/process/edit/imagekeyeditor.py +20 -22
  28. tomwer/core/process/icat/screenshots.py +1 -0
  29. tomwer/core/process/reconstruction/axis/axis.py +263 -59
  30. tomwer/core/process/reconstruction/axis/mode.py +161 -50
  31. tomwer/core/process/reconstruction/axis/params.py +23 -20
  32. tomwer/core/process/reconstruction/darkref/darkrefs.py +12 -13
  33. tomwer/core/process/reconstruction/nabu/castvolume.py +3 -3
  34. tomwer/core/process/reconstruction/nabu/nabucommon.py +43 -19
  35. tomwer/core/process/reconstruction/nabu/nabuscores.py +34 -7
  36. tomwer/core/process/reconstruction/nabu/nabuslices.py +81 -26
  37. tomwer/core/process/reconstruction/nabu/nabuvolume.py +31 -26
  38. tomwer/core/process/reconstruction/nabu/plane.py +9 -0
  39. tomwer/core/process/reconstruction/nabu/utils.py +32 -9
  40. tomwer/core/process/reconstruction/saaxis/saaxis.py +4 -1
  41. tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +9 -1
  42. tomwer/core/process/reconstruction/scores/params.py +3 -3
  43. tomwer/core/process/reconstruction/test/test_darkref_copy.py +4 -4
  44. tomwer/core/process/stitching/nabustitcher.py +11 -10
  45. tomwer/core/process/task.py +33 -27
  46. tomwer/core/process/test/test_axis.py +7 -6
  47. tomwer/core/process/test/test_data_transfer.py +3 -3
  48. tomwer/core/process/test/test_nabu.py +10 -2
  49. tomwer/core/process/test/test_normalization.py +2 -2
  50. tomwer/core/scan/blissscan.py +3 -3
  51. tomwer/core/scan/edfscan.py +9 -9
  52. tomwer/core/scan/nxtomoscan.py +11 -11
  53. tomwer/core/scan/scanbase.py +31 -24
  54. tomwer/core/scan/test/test_future_scan.py +1 -1
  55. tomwer/core/scan/test/test_h5.py +4 -4
  56. tomwer/core/scan/test/test_process_registration.py +2 -2
  57. tomwer/core/scan/test/test_scan.py +1 -75
  58. tomwer/core/settings.py +3 -3
  59. tomwer/core/test/test_utils.py +2 -2
  60. tomwer/core/volume/edfvolume.py +6 -6
  61. tomwer/core/volume/hdf5volume.py +6 -6
  62. tomwer/core/volume/jp2kvolume.py +6 -6
  63. tomwer/core/volume/rawvolume.py +6 -6
  64. tomwer/core/volume/tiffvolume.py +12 -12
  65. tomwer/gui/cluster/slurm.py +14 -9
  66. tomwer/gui/cluster/supervisor.py +12 -0
  67. tomwer/gui/cluster/test/test_cluster.py +1 -2
  68. tomwer/gui/cluster/test/test_supervisor.py +1 -1
  69. tomwer/gui/control/datalist.py +5 -0
  70. tomwer/gui/control/datawatcher/controlwidget.py +2 -4
  71. tomwer/gui/control/reducedarkflatselector.py +8 -8
  72. tomwer/gui/control/test/test_single_tomo_obj.py +1 -1
  73. tomwer/gui/edit/dkrfpatch.py +4 -4
  74. tomwer/gui/edit/nxtomowarmer.py +2 -2
  75. tomwer/gui/edit/test/test_dkrf_patch.py +6 -6
  76. tomwer/gui/imagefromfile.py +2 -2
  77. tomwer/gui/qfolderdialog.py +5 -0
  78. tomwer/gui/reconstruction/axis/CompareImages.py +94 -168
  79. tomwer/gui/reconstruction/axis/radioaxis.py +58 -182
  80. tomwer/gui/reconstruction/darkref/darkrefwidget.py +2 -1
  81. tomwer/gui/reconstruction/nabu/castvolume.py +8 -1
  82. tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +54 -21
  83. tomwer/gui/reconstruction/normalization/intensity.py +3 -25
  84. tomwer/gui/reconstruction/saaxis/corrangeselector.py +1 -1
  85. tomwer/gui/reconstruction/saaxis/saaxis.py +1 -11
  86. tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +0 -10
  87. tomwer/gui/reconstruction/scores/scoreplot.py +1 -6
  88. tomwer/gui/reconstruction/test/test_axis.py +18 -4
  89. tomwer/gui/reconstruction/test/test_nabu.py +3 -0
  90. tomwer/gui/stitching/stitching.py +2 -2
  91. tomwer/gui/stitching/stitching_preview.py +7 -53
  92. tomwer/gui/stitching/stitching_raw.py +3 -3
  93. tomwer/gui/utils/inputwidget.py +12 -2
  94. tomwer/gui/utils/lineselector/lineselector.py +1 -1
  95. tomwer/gui/visualization/dataviewer.py +47 -17
  96. tomwer/gui/visualization/sinogramviewer.py +19 -26
  97. tomwer/gui/visualization/test/test_volumeviewer.py +64 -66
  98. tomwer/gui/visualization/volumeviewer.py +105 -105
  99. tomwer/io/utils/h5pyutils.py +7 -3
  100. tomwer/io/utils/utils.py +3 -3
  101. tomwer/resources/gui/icons/parameters.svg +1 -1
  102. tomwer/resources/gui/illustrations/no_rot.svg +1 -1
  103. tomwer/synctools/stacks/edit/darkflatpatch.py +17 -12
  104. tomwer/tests/test_scripts.py +0 -3
  105. tomwer/third_part/WaitingOverlay.py +110 -0
  106. tomwer/third_part/__init__.py +0 -0
  107. tomwer/version.py +2 -2
  108. {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/METADATA +32 -31
  109. {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/RECORD +115 -153
  110. {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/WHEEL +1 -1
  111. orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +0 -197
  112. orangecontrib/tomwer/widgets/reconstruction/icons/XY_lamino.svg +0 -168
  113. orangecontrib/tomwer/widgets/reconstruction/icons/XZ_lamino.svg +0 -275
  114. orangecontrib/tomwer/widgets/reconstruction/icons/YZ_lamino.svg +0 -182
  115. tomwer/app/lamino.py +0 -143
  116. tomwer/core/process/reconstruction/lamino/__init__.py +0 -1
  117. tomwer/core/process/reconstruction/lamino/tofu.py +0 -1000
  118. tomwer/core/process/test/test_lamino.py +0 -76
  119. tomwer/core/test/test_lamino.py +0 -92
  120. tomwer/gui/reconstruction/lamino/__init__.py +0 -31
  121. tomwer/gui/reconstruction/lamino/tofu/TofuOptionLoader.py +0 -107
  122. tomwer/gui/reconstruction/lamino/tofu/__init__.py +0 -1
  123. tomwer/gui/reconstruction/lamino/tofu/misc.py +0 -148
  124. tomwer/gui/reconstruction/lamino/tofu/projections.py +0 -896
  125. tomwer/gui/reconstruction/lamino/tofu/settings.py +0 -75
  126. tomwer/gui/reconstruction/lamino/tofu/tofu.py +0 -432
  127. tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +0 -567
  128. tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +0 -757
  129. tomwer/gui/reconstruction/test/test_lamino.py +0 -194
  130. tomwer/resources/gui/icons/lamino_parameters.svg +0 -70
  131. tomwer/resources/gui/illustrations/lamino_angle.png +0 -0
  132. tomwer/resources/gui/illustrations/lamino_angle.svg +0 -509
  133. tomwer/resources/gui/illustrations/lamino_beta_angle.png +0 -0
  134. tomwer/resources/gui/illustrations/lamino_beta_angle.svg +0 -97
  135. tomwer/resources/gui/illustrations/lamino_theta_angle.png +0 -0
  136. tomwer/resources/gui/illustrations/lamino_theta_angle.svg +0 -368
  137. tomwer/resources/gui/illustrations/manual_slice.png +0 -0
  138. tomwer/resources/gui/illustrations/manual_slice.svg +0 -221
  139. tomwer/resources/gui/illustrations/psi_angle.png +0 -0
  140. tomwer/resources/gui/illustrations/psi_angle.svg +0 -479
  141. tomwer/resources/gui/illustrations/rotation_center.png +0 -0
  142. tomwer/resources/gui/illustrations/rotation_center.svg +0 -276
  143. tomwer/resources/gui/illustrations/slice_stack.png +0 -0
  144. tomwer/resources/gui/illustrations/slice_stack.svg +0 -266
  145. tomwer/resources/gui/illustrations/xy_slice.png +0 -0
  146. tomwer/resources/gui/illustrations/xy_slice.svg +0 -269
  147. tomwer/resources/gui/illustrations/xz_slice.png +0 -0
  148. tomwer/resources/gui/illustrations/xz_slice.svg +0 -270
  149. tomwer/resources/gui/illustrations/yz_slice.png +0 -0
  150. tomwer/resources/gui/illustrations/yz_slice.svg +0 -270
  151. tomwer/synctools/stacks/reconstruction/lamino.py +0 -233
  152. /tomwer-1.3.0.dev2-py3.11-nspkg.pth → /tomwer-1.3.0rc10-py3.11-nspkg.pth +0 -0
  153. {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/LICENSE +0 -0
  154. {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/entry_points.txt +0 -0
  155. {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/namespace_packages.txt +0 -0
  156. {tomwer-1.3.0.dev2.dist-info → tomwer-1.3.0rc10.dist-info}/top_level.txt +0 -0
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.40.0)
2
+ Generator: bdist_wheel (0.42.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,197 +0,0 @@
1
- # coding: utf-8
2
- # /*##########################################################################
3
- #
4
- # Copyright (c) 2016-2020 European Synchrotron Radiation Facility
5
- #
6
- # Permission is hereby granted, free of charge, to any person obtaining a copy
7
- # of this software and associated documentation files (the "Software"), to deal
8
- # in the Software without restriction, including without limitation the rights
9
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- # copies of the Software, and to permit persons to whom the Software is
11
- # furnished to do so, subject to the following conditions:
12
- #
13
- # The above copyright notice and this permission notice shall be included in
14
- # all copies or substantial portions of the Software.
15
- #
16
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
- # THE SOFTWARE.
23
- #
24
- # ###########################################################################*/
25
-
26
- __authors__ = ["C. Nemoz", "H. Payno"]
27
- __license__ = "MIT"
28
- __date__ = "10/01/2018"
29
-
30
-
31
- import copy
32
- import functools
33
- import logging
34
- import os
35
-
36
- from orangewidget import gui, settings
37
- from orangewidget.widget import Input, Output
38
- from silx.gui import qt
39
-
40
- import tomwer.core.process.reconstruction.lamino.tofu
41
- from orangecontrib.tomwer.orange.settings import CallbackSettingsHandler
42
- from tomwer.core.process.reconstruction.lamino import LaminoReconstructionTask
43
- from tomwer.core.scan.scanbase import TomwerScanBase
44
- from tomwer.gui.reconstruction.lamino.tofu import TofuWindow
45
- from tomwer.synctools.stacks.reconstruction.lamino import LaminoReconstructionStack
46
- from tomwer.utils import docstring
47
-
48
- from ...orange.managedprocess import SuperviseOW
49
- from ..utils import WidgetLongProcessing
50
-
51
- _logger = logging.getLogger(__name__)
52
-
53
-
54
- class TofuOW(WidgetLongProcessing, SuperviseOW):
55
- """
56
- A simple widget managing the copy of an incoming folder to an other one
57
-
58
- :param parent: the parent widget
59
- """
60
-
61
- # note of this widget should be the one registered on the documentation
62
- name = "tofu reconstruction"
63
- id = "orange.widgets.tomwer.reconstruction.TofuOW.TofuOW"
64
- description = "This widget will call tofu for running a reconstruction "
65
- icon = "icons/XY_lamino.svg"
66
- priority = 25
67
- keywords = ["tomography", "tofu", "reconstruction", "lamino", "laminography"]
68
-
69
- want_main_area = True
70
- resizing_enabled = True
71
-
72
- settingsHandler = CallbackSettingsHandler()
73
-
74
- ewokstaskclass = (
75
- tomwer.core.process.reconstruction.lamino.tofu.LaminoReconstructionTask
76
- )
77
-
78
- _reconsParams = settings.Setting(dict())
79
- """Parameters directly editabled from the TOFU interface"""
80
- # kept for compatibility
81
- _ewoks_default_inputs = settings.Setting({"data": None, "lamino_params": None})
82
-
83
- _additionalOpts = settings.Setting(dict())
84
- """Parameters which can be add on the expert tab from TOFU"""
85
- _delete_existing = settings.Setting(bool())
86
- """Should we remove the output directory if exists already"""
87
-
88
- class Inputs:
89
- data = Input(name="data", type=TomwerScanBase, doc="one scan to be process")
90
-
91
- class Outputs:
92
- data = Output(name="data", type=TomwerScanBase, doc="one scan to be process")
93
-
94
- def __init__(self, parent=None):
95
- SuperviseOW.__init__(self, parent=parent)
96
- WidgetLongProcessing.__init__(self)
97
- self._lastScan = None
98
- self._box = gui.vBox(self.mainArea, self.name)
99
- self._mainWidget = TofuWindow(parent=self)
100
- self._box.layout().addWidget(self._mainWidget)
101
- self._widgetControl = qt.QWidget(self)
102
- self._widgetControl.setLayout(qt.QHBoxLayout())
103
- self._executeButton = qt.QPushButton("reprocess", self._widgetControl)
104
- self._executeButton.clicked.connect(self._reprocess)
105
- self._executeButton.setEnabled(False)
106
- spacer = qt.QWidget(self)
107
- spacer.setSizePolicy(qt.QSizePolicy.Expanding, qt.QSizePolicy.Minimum)
108
- self._widgetControl.layout().addWidget(spacer)
109
- self._widgetControl.layout().addWidget(self._executeButton)
110
-
111
- self._box.layout().addWidget(self._mainWidget)
112
- self._box.layout().addWidget(self._widgetControl)
113
-
114
- lamino_params = self._ewoks_default_inputs.get( # pylint: disable=E1101
115
- "lamino_params", None
116
- )
117
- if lamino_params is None:
118
- lamino_params = self._reconsParams
119
- self._mainWidget.setParameters(lamino_params)
120
- if len(self._additionalOpts) > 0:
121
- self._mainWidget.setAdditionalRecoOptions(self._additionalOpts)
122
- self._mainWidget.setRemoveOutputDir(self._delete_existing)
123
-
124
- self.settingsHandler.addCallback(self._updateSettingsVals)
125
-
126
- self._reconsStack = LaminoReconstructionStack(process_id=self.process_id)
127
-
128
- # signal / slot connections
129
- self._reconsStack.sigReconsStarted.connect(self.__processing_start)
130
- self._reconsStack.sigReconsFinished.connect(self.__processing_end)
131
- self._reconsStack.sigReconsFailed.connect(self.__processing_end)
132
- self._reconsStack.sigReconsMissParams.connect(self.__processing_end)
133
-
134
- @Inputs.data
135
- def process(self, scan):
136
- if scan is not None:
137
- assert isinstance(scan, TomwerScanBase)
138
- scan_ = copy.copy(scan)
139
- self._executeButton.setEnabled(True)
140
- self._lastScan = scan_
141
- self._mainWidget.loadFromScan(scan_.path)
142
- recons_param = self._mainWidget.getParameters()
143
- add_options = self._mainWidget.getAdditionalRecoOptions()
144
- # TODO: should be recorded in self._viewer widget
145
-
146
- remove_existing = self._mainWidget.removeOutputDir()
147
-
148
- callback = functools.partial(self.Outputs.data.send, scan_)
149
- self._reconsStack.add(
150
- recons_obj=LaminoReconstructionTask(),
151
- scan_id=scan_,
152
- recons_params=recons_param,
153
- additional_opts=add_options,
154
- remove_existing=remove_existing,
155
- callback=callback,
156
- )
157
-
158
- @docstring(SuperviseOW)
159
- def reprocess(self, dataset):
160
- self.process(dataset)
161
-
162
- def _reprocess(self):
163
- if self._lastScan is None:
164
- _logger.warning("No scan has been process yet")
165
- elif os.path.isdir(self._lastScan) is False:
166
- _logger.warning("Last scan %s, does not exist anymore" % self._lastScan)
167
- self._executeButton.setEnabled(False)
168
- else:
169
- self.process(self._lastScan)
170
-
171
- def _updateSettingsVals(self):
172
- """function used to update the settings values"""
173
- self._reconsParams = self._mainWidget.getParameters()
174
- self.lamino_params = {
175
- "data": None,
176
- "lamino_params": self._mainWidget.getParameters(),
177
- }
178
-
179
- self._additionalOpts = self._mainWidget.getAdditionalRecoOptions()
180
- self._delete_existing = self._mainWidget.removeOutputDir()
181
-
182
- def __processing_start(self, scan):
183
- self.processing_state(scan=scan, working=True)
184
-
185
- def __processing_end(self, scan):
186
- self.processing_state(scan=scan, working=False)
187
-
188
- def processing_state(self, scan, working: bool) -> None:
189
- # default orange version don't have Processing.
190
- try:
191
- if working:
192
- self.processing_info("processing %s" % scan.path)
193
-
194
- else:
195
- self.Processing.clear()
196
- except Exception:
197
- pass
@@ -1,168 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="100"
13
- height="100"
14
- id="svg2"
15
- version="1.1"
16
- inkscape:version="0.48.5 r10040"
17
- sodipodi:docname="emptyCube_z.svg">
18
- <defs
19
- id="defs4">
20
- <marker
21
- inkscape:stockid="Arrow1Send"
22
- orient="auto"
23
- refY="0.0"
24
- refX="0.0"
25
- id="Arrow1Send"
26
- style="overflow:visible;">
27
- <path
28
- id="path3788"
29
- 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 "
30
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;"
31
- transform="scale(0.2) rotate(180) translate(6,0)" />
32
- </marker>
33
- <marker
34
- inkscape:stockid="Arrow1Sstart"
35
- orient="auto"
36
- refY="0.0"
37
- refX="0.0"
38
- id="Arrow1Sstart"
39
- style="overflow:visible">
40
- <path
41
- id="path3785"
42
- 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 "
43
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
44
- transform="scale(0.2) translate(6,0)" />
45
- </marker>
46
- <inkscape:perspective
47
- sodipodi:type="inkscape:persp3d"
48
- inkscape:vp_x="-252.62268 : 156.72032 : 1"
49
- inkscape:vp_y="0 : 3383.9015 : 0"
50
- inkscape:vp_z="169.30198 : 147.12387 : 1"
51
- inkscape:persp3d-origin="-46.711117 : 100.32196 : 1"
52
- id="perspective3017" />
53
- <inkscape:perspective
54
- sodipodi:type="inkscape:persp3d"
55
- inkscape:vp_x="-253.15453 : 157.7729 : 1"
56
- inkscape:vp_y="0 : 3383.9015 : 0"
57
- inkscape:vp_z="168.77013 : 148.17645 : 1"
58
- inkscape:persp3d-origin="-47.242975 : 101.37454 : 1"
59
- id="perspective3017-1" />
60
- </defs>
61
- <sodipodi:namedview
62
- id="base"
63
- pagecolor="#ffffff"
64
- bordercolor="#666666"
65
- borderopacity="1.0"
66
- inkscape:pageopacity="0.0"
67
- inkscape:pageshadow="2"
68
- inkscape:zoom="5.6"
69
- inkscape:cx="25.816178"
70
- inkscape:cy="64.83126"
71
- inkscape:document-units="px"
72
- inkscape:current-layer="layer1"
73
- showgrid="false"
74
- inkscape:window-width="1920"
75
- inkscape:window-height="1178"
76
- inkscape:window-x="1920"
77
- inkscape:window-y="0"
78
- inkscape:window-maximized="1" />
79
- <metadata
80
- id="metadata7">
81
- <rdf:RDF>
82
- <cc:Work
83
- rdf:about="">
84
- <dc:format>image/svg+xml</dc:format>
85
- <dc:type
86
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
87
- <dc:title />
88
- </cc:Work>
89
- </rdf:RDF>
90
- </metadata>
91
- <g
92
- inkscape:label="Layer 1"
93
- inkscape:groupmode="layer"
94
- id="layer1"
95
- transform="translate(0,-952.36218)">
96
- <path
97
- style="opacity:0.62735847000000000;fill:#cf9634;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:0.5,0.5;stroke-dashoffset:0"
98
- d="M 15.657364,44.946686 51.783009,25.753788 91.418806,36.36039 63.134534,64.139585 z"
99
- id="path5430"
100
- inkscape:connector-curvature="0"
101
- transform="translate(0,952.36218)"
102
- sodipodi:nodetypes="ccccc" />
103
- <path
104
- style="opacity:0.62735847000000000;fill:#cf9634;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:0.5,0.5;stroke-dashoffset:0"
105
- d="m 15.333564,1003.0765 37.018502,-20.08579 39.457226,9.89231 -28.819986,30.10068 z"
106
- id="path5430-4"
107
- inkscape:connector-curvature="0"
108
- sodipodi:nodetypes="ccccc" />
109
- <g
110
- sodipodi:type="inkscape:box3d"
111
- style="opacity:0.71698112;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
112
- id="g3139"
113
- inkscape:perspectiveID="#perspective3017-1"
114
- inkscape:corner0="-0.23369865 : -0.00058071337 : 0 : 1"
115
- inkscape:corner7="-0.34871743 : -0.012607987 : 0.24117225 : 1">
116
- <path
117
- sodipodi:type="inkscape:box3dside"
118
- id="path3149"
119
- style="fill:none;stroke:#000000;stroke-opacity:1"
120
- inkscape:box3dsidetype="13"
121
- d="m 15.553799,1023.8629 47.45483,22.8302 28.580427,-38.5105 -39.357842,-12.96841 z" />
122
- <path
123
- sodipodi:type="inkscape:box3dside"
124
- id="path3141"
125
- style="fill:none;stroke:#000000;stroke-opacity:1"
126
- inkscape:box3dsidetype="6"
127
- d="m 15.553799,970.75179 0,53.11111 36.677415,-28.64871 0,-40.39719 z" />
128
- <path
129
- sodipodi:type="inkscape:box3dside"
130
- id="path3151"
131
- style="fill:none;stroke:#000000;stroke-opacity:1"
132
- inkscape:box3dsidetype="11"
133
- d="m 52.231214,954.817 39.357842,7.76209 0,45.60351 -39.357842,-12.96841 z" />
134
- <path
135
- sodipodi:type="inkscape:box3dside"
136
- id="path3143"
137
- style="fill:none;stroke:#000000;stroke-opacity:1"
138
- inkscape:box3dsidetype="5"
139
- d="M 15.553799,970.75179 63.008629,984.20236 91.589056,962.57909 52.231214,954.817 z" />
140
- <path
141
- sodipodi:type="inkscape:box3dside"
142
- id="path3147"
143
- style="fill:none;stroke:#000000;stroke-opacity:1"
144
- inkscape:box3dsidetype="14"
145
- d="m 63.008629,984.20236 0,62.49074 28.580427,-38.5105 0,-45.60351 z" />
146
- <path
147
- sodipodi:type="inkscape:box3dside"
148
- id="path3145"
149
- style="fill:none;stroke:#000000;stroke-opacity:1"
150
- inkscape:box3dsidetype="3"
151
- d="m 15.553799,970.75179 47.45483,13.45057 0,62.49074 -47.45483,-22.8302 z" />
152
- </g>
153
- <path
154
- style="fill:none;stroke:#000000;stroke-width:0.88711488;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Sstart);marker-end:url(#Arrow1Send)"
155
- d="m 13.092466,997.21321 0.243639,6.72649"
156
- id="path10665"
157
- inkscape:connector-curvature="0" />
158
- <g
159
- transform="scale(1.0276261,0.9731166)"
160
- style="font-size:11.02545929px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:IPAPMincho;-inkscape-font-specification:IPAPMincho"
161
- id="text11058">
162
- <path
163
- d="m 8.5422963,1027.4565 c -0.00718,-0.01 -0.032307,-0.025 -0.075369,-0.054 -0.032307,-0.022 -0.05743,-0.041 -0.075369,-0.059 -0.9187927,-0.6748 -1.3781864,-1.2544 -1.3781824,-1.7389 -4e-6,-0.3589 0.1579126,-0.6424 0.4737502,-0.8506 0.2261033,-0.14 0.4952793,-0.2099 0.8075288,-0.21 0.7644544,10e-5 1.5235307,0.2459 2.2772308,0.7376 0.236868,0.1579 0.355305,0.3122 0.355313,0.463 -8e-6,0.244 -0.118445,0.3661 -0.355313,0.366 -0.13639,10e-5 -0.285334,-0.081 -0.446832,-0.2422 -0.6460298,-0.6101 -1.2651346,-0.9152 -1.8573164,-0.9152 -0.4988782,0 -0.7483146,0.1992 -0.74831,0.5976 -4.6e-6,0.3696 0.572443,0.9134 1.7173445,1.6312 0.8613569,0.5383 1.2920389,1.2364 1.2920459,2.0942 -7e-6,0.8685 -0.245855,1.624 -0.7375429,2.2664 -0.5491258,0.7142 -1.2435998,1.0713 -2.0834241,1.0713 -0.4235083,0 -0.7949712,-0.1435 -1.1143897,-0.4306 -0.4414523,-0.3948 -0.6621766,-0.9206 -0.6621736,-1.5774 -3e-6,-1.1162 0.4701577,-2.0116 1.4104836,-2.6864 0.3230068,-0.2225 0.7231817,-0.3768 1.200526,-0.463 m 0.1776564,0.3177 c -0.6567952,0 -1.2112977,0.4271 -1.6635093,1.2812 -0.265591,0.4953 -0.3983845,1.0391 -0.3983808,1.6312 -3.7e-6,1.0803 0.3606921,1.6205 1.0820885,1.6205 0.5275802,0 1.0049189,-0.3338 1.4320177,-1.0013 0.4055522,-0.6245 0.6083315,-1.2831 0.6083383,-1.9758 -6.8e-6,-0.5599 -0.1471564,-0.987 -0.4414491,-1.2813 -0.183046,-0.183 -0.3894143,-0.2745 -0.6191053,-0.2745"
164
- style=""
165
- id="path11063" />
166
- </g>
167
- </g>
168
- </svg>
@@ -1,275 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="100"
13
- height="100"
14
- id="svg2"
15
- version="1.1"
16
- inkscape:version="0.48.5 r10040"
17
- sodipodi:docname="emptyCube_y.svg">
18
- <defs
19
- id="defs4">
20
- <marker
21
- inkscape:stockid="Arrow2Send"
22
- orient="auto"
23
- refY="0.0"
24
- refX="0.0"
25
- id="Arrow2Send"
26
- style="overflow:visible;">
27
- <path
28
- id="path3806"
29
- style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
30
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
31
- transform="scale(0.3) rotate(180) translate(-2.3,0)" />
32
- </marker>
33
- <marker
34
- inkscape:stockid="Arrow2Mend"
35
- orient="auto"
36
- refY="0.0"
37
- refX="0.0"
38
- id="Arrow2Mend"
39
- style="overflow:visible;">
40
- <path
41
- id="path3800"
42
- style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
43
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
44
- transform="scale(0.6) rotate(180) translate(0,0)" />
45
- </marker>
46
- <marker
47
- inkscape:stockid="Arrow1Mend"
48
- orient="auto"
49
- refY="0.0"
50
- refX="0.0"
51
- id="Arrow1Mend"
52
- style="overflow:visible;">
53
- <path
54
- id="path3782"
55
- 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 "
56
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;"
57
- transform="scale(0.4) rotate(180) translate(10,0)" />
58
- </marker>
59
- <marker
60
- inkscape:stockid="Arrow1Mstart"
61
- orient="auto"
62
- refY="0.0"
63
- refX="0.0"
64
- id="Arrow1Mstart"
65
- style="overflow:visible">
66
- <path
67
- id="path3779"
68
- 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 "
69
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
70
- transform="scale(0.4) translate(10,0)" />
71
- </marker>
72
- <marker
73
- inkscape:stockid="Arrow2Sstart"
74
- orient="auto"
75
- refY="0.0"
76
- refX="0.0"
77
- id="Arrow2Sstart"
78
- style="overflow:visible">
79
- <path
80
- id="path3803"
81
- style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
82
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
83
- transform="scale(0.3) translate(-2.3,0)" />
84
- </marker>
85
- <marker
86
- inkscape:stockid="Arrow2Mstart"
87
- orient="auto"
88
- refY="0.0"
89
- refX="0.0"
90
- id="Arrow2Mstart"
91
- style="overflow:visible">
92
- <path
93
- id="path3797"
94
- style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
95
- d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
96
- transform="scale(0.6) translate(0,0)" />
97
- </marker>
98
- <inkscape:perspective
99
- sodipodi:type="inkscape:persp3d"
100
- inkscape:vp_x="-252.62268 : 156.72032 : 1"
101
- inkscape:vp_y="0 : 3383.9015 : 0"
102
- inkscape:vp_z="169.30198 : 147.12387 : 1"
103
- inkscape:persp3d-origin="-46.711117 : 100.32196 : 1"
104
- id="perspective3017" />
105
- <marker
106
- inkscape:stockid="Arrow1Mstart"
107
- orient="auto"
108
- refY="0"
109
- refX="0"
110
- id="Arrow1Mstart-7"
111
- style="overflow:visible">
112
- <path
113
- inkscape:connector-curvature="0"
114
- id="path3779-3"
115
- d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
116
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
117
- transform="matrix(0.4,0,0,0.4,4,0)" />
118
- </marker>
119
- <marker
120
- inkscape:stockid="Arrow2Mend"
121
- orient="auto"
122
- refY="0"
123
- refX="0"
124
- id="Arrow2Mend-7"
125
- style="overflow:visible">
126
- <path
127
- inkscape:connector-curvature="0"
128
- id="path3800-1"
129
- style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
130
- 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"
131
- transform="scale(-0.6,-0.6)" />
132
- </marker>
133
- <marker
134
- inkscape:stockid="Arrow1Mstart"
135
- orient="auto"
136
- refY="0"
137
- refX="0"
138
- id="Arrow1Mstart-2"
139
- style="overflow:visible">
140
- <path
141
- inkscape:connector-curvature="0"
142
- id="path3779-1"
143
- d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
144
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
145
- transform="matrix(0.4,0,0,0.4,4,0)" />
146
- </marker>
147
- <marker
148
- inkscape:stockid="Arrow2Mend"
149
- orient="auto"
150
- refY="0"
151
- refX="0"
152
- id="Arrow2Mend-5"
153
- style="overflow:visible">
154
- <path
155
- inkscape:connector-curvature="0"
156
- id="path3800-0"
157
- style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
158
- 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"
159
- transform="scale(-0.6,-0.6)" />
160
- </marker>
161
- </defs>
162
- <sodipodi:namedview
163
- id="base"
164
- pagecolor="#ffffff"
165
- bordercolor="#666666"
166
- borderopacity="1.0"
167
- inkscape:pageopacity="0.0"
168
- inkscape:pageshadow="2"
169
- inkscape:zoom="7.919596"
170
- inkscape:cx="17.453072"
171
- inkscape:cy="48.794915"
172
- inkscape:document-units="px"
173
- inkscape:current-layer="text8757"
174
- showgrid="false"
175
- inkscape:window-width="1920"
176
- inkscape:window-height="1178"
177
- inkscape:window-x="1920"
178
- inkscape:window-y="0"
179
- inkscape:window-maximized="1"
180
- showguides="true"
181
- inkscape:guide-bbox="true" />
182
- <metadata
183
- id="metadata7">
184
- <rdf:RDF>
185
- <cc:Work
186
- rdf:about="">
187
- <dc:format>image/svg+xml</dc:format>
188
- <dc:type
189
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
190
- <dc:title />
191
- </cc:Work>
192
- </rdf:RDF>
193
- </metadata>
194
- <g
195
- inkscape:label="Layer 1"
196
- inkscape:groupmode="layer"
197
- id="layer1"
198
- transform="translate(0,-952.36218)">
199
- <g
200
- sodipodi:type="inkscape:box3d"
201
- style="fill:none;stroke:#000000;stroke-width:0.50000000000000000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;opacity:0.71698113"
202
- id="g3139"
203
- inkscape:perspectiveID="#perspective3017"
204
- inkscape:corner0="-0.23369865 : -0.00058071337 : 0 : 1"
205
- inkscape:corner7="-0.34871743 : -0.012607987 : 0.24117225 : 1">
206
- <path
207
- sodipodi:type="inkscape:box3dside"
208
- id="path3149"
209
- style="fill:none;stroke:#000000;stroke-opacity:1"
210
- inkscape:box3dsidetype="13"
211
- d="m 16.085659,1024.9155 47.454833,22.8301 28.580423,-38.5104 -39.357843,-12.96843 z" />
212
- <path
213
- sodipodi:type="inkscape:box3dside"
214
- id="path3141"
215
- style="fill:none;stroke:#000000;stroke-opacity:1"
216
- inkscape:box3dsidetype="6"
217
- d="m 16.085659,971.80437 0,53.11113 36.677413,-28.64873 0,-40.39719 z" />
218
- <path
219
- sodipodi:type="inkscape:box3dside"
220
- id="path3151"
221
- style="fill:none;stroke:#000000;stroke-opacity:1"
222
- inkscape:box3dsidetype="11"
223
- d="m 52.763072,955.86958 39.357843,7.76209 0,45.60353 -39.357843,-12.96843 z" />
224
- <path
225
- sodipodi:type="inkscape:box3dside"
226
- id="path3143"
227
- style="fill:none;stroke:#000000;stroke-opacity:1"
228
- inkscape:box3dsidetype="5"
229
- d="m 16.085659,971.80437 47.454833,13.45057 28.580423,-21.62327 -39.357843,-7.76209 z" />
230
- <path
231
- sodipodi:type="inkscape:box3dside"
232
- id="path3147"
233
- style="fill:none;stroke:#000000;stroke-opacity:1"
234
- inkscape:box3dsidetype="14"
235
- d="m 63.540492,985.25494 0,62.49066 28.580423,-38.5104 0,-45.60353 z" />
236
- <path
237
- sodipodi:type="inkscape:box3dside"
238
- id="path3145"
239
- style="fill:none;stroke:#000000;stroke-opacity:1"
240
- inkscape:box3dsidetype="3"
241
- d="m 16.085659,971.80437 47.454833,13.45057 0,62.49066 -47.454833,-22.8301 z" />
242
- </g>
243
- <path
244
- style="opacity:0.62735847000000000;fill:#cf9634;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:0.5,0.5;stroke-dashoffset:0"
245
- d="m 36.870567,962.4586 42.426408,10.73287 1.010153,52.52793 -43.815368,-16.92 z"
246
- id="path5430"
247
- inkscape:connector-curvature="0"
248
- sodipodi:nodetypes="ccccc" />
249
- <path
250
- style="opacity:0.62735847000000000;fill:#cf9634;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:0.5,0.5;stroke-dashoffset:0"
251
- d="m 30.809651,965.55216 43.56283,11.61676 0.883884,54.92718 -44.446714,-18.4353 z"
252
- id="path5430-2"
253
- inkscape:connector-curvature="0"
254
- sodipodi:nodetypes="ccccc" />
255
- <g
256
- transform="translate(-50.615552,-27.210049)"
257
- id="g8797">
258
- <path
259
- inkscape:connector-curvature="0"
260
- id="path7607"
261
- d="m 80.532527,991.82959 6.077313,-3.22308"
262
- style="fill:none;stroke:#000000;stroke-width:0.30499999999999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);marker-end:url(#Arrow2Mend)"
263
- sodipodi:nodetypes="cc" />
264
- <g
265
- transform="scale(1.0271382,0.97357883)"
266
- style="font-size:14.04557323px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:IPAPMincho;-inkscape-font-specification:IPAPMincho"
267
- id="text8757">
268
- <path
269
- d="m 81.111478,1012.2466 c -0.0055,-0.01 -0.02469,-0.019 -0.05761,-0.041 -0.02469,-0.017 -0.0439,-0.032 -0.05761,-0.045 -0.702282,-0.5157 -1.053421,-0.9587 -1.053418,-1.3291 -3e-6,-0.2743 0.120701,-0.491 0.362113,-0.6502 0.172823,-0.1069 0.378568,-0.1604 0.617237,-0.1604 0.584313,0 1.164515,0.1879 1.740609,0.5637 0.18105,0.1207 0.271578,0.2387 0.271584,0.3539 -6e-6,0.1865 -0.09053,0.2798 -0.271584,0.2798 -0.104251,0 -0.218096,-0.062 -0.341538,-0.1852 -0.493795,-0.4663 -0.96701,-0.6995 -1.419646,-0.6995 -0.381319,0 -0.571976,0.1523 -0.571973,0.4568 -3e-6,0.2825 0.437549,0.6981 1.312658,1.2468 0.658381,0.4115 0.987574,0.945 0.987579,1.6007 -5e-6,0.6638 -0.18792,1.2413 -0.563743,1.7324 -0.419726,0.5459 -0.950549,0.8188 -1.592472,0.8188 -0.32371,0 -0.607638,-0.1097 -0.851787,-0.3292 -0.337425,-0.3017 -0.506137,-0.7036 -0.506134,-1.2056 -3e-6,-0.8532 0.359366,-1.5376 1.078107,-2.0534 0.246891,-0.1701 0.552766,-0.288 0.917626,-0.3539 m 0.135792,0.2428 c -0.502023,0 -0.925859,0.3265 -1.271508,0.9794 -0.203006,0.3785 -0.304507,0.7941 -0.304504,1.2468 -3e-6,0.8257 0.275696,1.2386 0.827098,1.2386 0.403257,0 0.768113,-0.2552 1.094567,-0.7654 0.309985,-0.4773 0.46498,-0.9807 0.464985,-1.5102 -5e-6,-0.4279 -0.112479,-0.7544 -0.337423,-0.9793 -0.139912,-0.1399 -0.29765,-0.2099 -0.473215,-0.2099"
270
- style="font-size:8.42734432px"
271
- id="path8899" />
272
- </g>
273
- </g>
274
- </g>
275
- </svg>