@geode/opengeodeweb-front 9.9.0 → 9.10.0-rc.2

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 (85) hide show
  1. package/assets/viewer_svgs/edged_curve_edges.svg +67 -0
  2. package/assets/viewer_svgs/edged_curve_points.svg +95 -0
  3. package/assets/viewer_svgs/grid_2d_cells.svg +78 -0
  4. package/assets/viewer_svgs/grid_2d_edges.svg +71 -0
  5. package/assets/viewer_svgs/grid_2d_points.svg +108 -0
  6. package/assets/viewer_svgs/grid_3d_cells.svg +76 -0
  7. package/assets/viewer_svgs/grid_3d_edges.svg +72 -0
  8. package/assets/viewer_svgs/grid_3d_facets.svg +102 -0
  9. package/assets/viewer_svgs/grid_3d_points.svg +172 -0
  10. package/assets/viewer_svgs/point_set_points.svg +86 -0
  11. package/assets/viewer_svgs/solid_edges.svg +96 -0
  12. package/assets/viewer_svgs/solid_facets.svg +119 -0
  13. package/assets/viewer_svgs/solid_points.svg +134 -0
  14. package/assets/viewer_svgs/solid_polyhedra.svg +103 -0
  15. package/assets/viewer_svgs/surface_edges.svg +73 -0
  16. package/assets/viewer_svgs/surface_points.svg +115 -0
  17. package/assets/viewer_svgs/surface_triangles.svg +92 -0
  18. package/components/ContextMenu.vue +123 -0
  19. package/components/ContextMenuItem.vue +90 -0
  20. package/components/HybridRenderingView.vue +41 -0
  21. package/components/VeaseViewToolbar.vue +107 -0
  22. package/components/Viewer/BreadCrumb.vue +61 -0
  23. package/components/Viewer/EdgedCurve/EdgesOptions.vue +14 -0
  24. package/components/Viewer/EdgedCurve/PointsOptions.vue +14 -0
  25. package/components/Viewer/Generic/Mesh/EdgesOptions.vue +48 -0
  26. package/components/Viewer/Generic/Mesh/PointsOptions.vue +73 -0
  27. package/components/Viewer/Generic/Mesh/PolygonsOptions.vue +65 -0
  28. package/components/Viewer/Generic/Mesh/PolyhedraOptions.vue +58 -0
  29. package/components/Viewer/Generic/Model/EdgesOptions.vue +29 -0
  30. package/components/Viewer/Generic/Model/PointsOptions.vue +53 -0
  31. package/components/Viewer/Grid/2D/CellsOptions.vue +15 -0
  32. package/components/Viewer/Grid/2D/EdgesOptions.vue +14 -0
  33. package/components/Viewer/Grid/2D/PointsOptions.vue +14 -0
  34. package/components/Viewer/Grid/3D/CellsOptions.vue +15 -0
  35. package/components/Viewer/Grid/3D/EdgesOptions.vue +14 -0
  36. package/components/Viewer/Grid/3D/FacetsOptions.vue +15 -0
  37. package/components/Viewer/Grid/3D/PointsOptions.vue +14 -0
  38. package/components/Viewer/HybridSolid/EdgesOptions.vue +14 -0
  39. package/components/Viewer/HybridSolid/PointsOptions.vue +14 -0
  40. package/components/Viewer/HybridSolid/PolygonsOptions.vue +14 -0
  41. package/components/Viewer/HybridSolid/PolyhedraOptions.vue +14 -0
  42. package/components/Viewer/Options/ColorPicker.vue +25 -0
  43. package/components/Viewer/Options/ColoringTypeSelector.vue +125 -0
  44. package/components/Viewer/Options/PolygonAttributeSelector.vue +59 -0
  45. package/components/Viewer/Options/PolyhedronAttributeSelector.vue +63 -0
  46. package/components/Viewer/Options/TextureItem.vue +116 -0
  47. package/components/Viewer/Options/TexturesSelector.vue +67 -0
  48. package/components/Viewer/Options/VertexAttributeSelector.vue +60 -0
  49. package/components/Viewer/Options/VisibilitySwitch.vue +14 -0
  50. package/components/Viewer/PointSet/PointsOptions.vue +14 -0
  51. package/components/Viewer/PointSet/SpecificPointsOptions.vue +74 -0
  52. package/components/Viewer/PolygonalSurface/EdgesOptions.vue +14 -0
  53. package/components/Viewer/PolygonalSurface/PointsOptions.vue +14 -0
  54. package/components/Viewer/PolygonalSurface/PolygonsOptions.vue +14 -0
  55. package/components/Viewer/Solid/EdgesOptions.vue +14 -0
  56. package/components/Viewer/Solid/PointsOptions.vue +14 -0
  57. package/components/Viewer/Solid/PolygonsOptions.vue +14 -0
  58. package/components/Viewer/Solid/PolyhedraOptions.vue +14 -0
  59. package/components/Viewer/TetrahedralSolid/TetrahedraOptions.vue +15 -0
  60. package/components/Viewer/TetrahedralSolid/TrianglesOptions.vue +15 -0
  61. package/components/Viewer/Tree/ObjectTree.vue +170 -0
  62. package/components/Viewer/TreeComponent.vue +93 -0
  63. package/components/Viewer/TreeObject.vue +100 -0
  64. package/components/Viewer/TriangulatedSurface/EdgesOptions.vue +14 -0
  65. package/components/Viewer/TriangulatedSurface/PointsOptions.vue +14 -0
  66. package/components/Viewer/TriangulatedSurface/TrianglesOptions.vue +15 -0
  67. package/internal_stores/data_style_state.js +18 -0
  68. package/internal_stores/mesh/edges.js +106 -0
  69. package/internal_stores/mesh/index.js +50 -0
  70. package/internal_stores/mesh/points.js +131 -0
  71. package/internal_stores/mesh/polygons.js +159 -0
  72. package/internal_stores/mesh/polyhedra.js +136 -0
  73. package/internal_stores/model/blocks.js +60 -0
  74. package/internal_stores/model/corners.js +63 -0
  75. package/internal_stores/model/edges.js +47 -0
  76. package/internal_stores/model/index.js +154 -0
  77. package/internal_stores/model/lines.js +81 -0
  78. package/internal_stores/model/points.js +61 -0
  79. package/internal_stores/model/surfaces.js +60 -0
  80. package/package.json +1 -1
  81. package/stores/data_base.js +148 -0
  82. package/stores/data_style.js +57 -0
  83. package/stores/hybrid_viewer.js +193 -0
  84. package/stores/menu.js +182 -0
  85. package/stores/treeview.js +64 -0
@@ -0,0 +1,102 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="17.400564mm"
6
+ height="14.617167mm"
7
+ viewBox="0 0 61.655541 51.793112"
8
+ id="svg2"
9
+ version="1.1"
10
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
11
+ sodipodi:docname="grid_3d_facets.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg"
16
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17
+ xmlns:cc="http://creativecommons.org/ns#"
18
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
19
+ <sodipodi:namedview
20
+ id="base"
21
+ pagecolor="#ffffff"
22
+ bordercolor="#666666"
23
+ borderopacity="1.0"
24
+ inkscape:pageopacity="0.0"
25
+ inkscape:pageshadow="2"
26
+ inkscape:zoom="8.0000004"
27
+ inkscape:cx="23.874999"
28
+ inkscape:cy="23.999999"
29
+ inkscape:document-units="px"
30
+ inkscape:current-layer="layer1"
31
+ showgrid="false"
32
+ inkscape:window-width="1920"
33
+ inkscape:window-height="1043"
34
+ inkscape:window-x="1920"
35
+ inkscape:window-y="0"
36
+ inkscape:window-maximized="1"
37
+ fit-margin-top="0"
38
+ fit-margin-left="0"
39
+ fit-margin-right="0"
40
+ fit-margin-bottom="0"
41
+ inkscape:pagecheckerboard="0"
42
+ units="in"
43
+ inkscape:showpageshadow="0"
44
+ inkscape:deskcolor="#d1d1d1" />
45
+ <defs
46
+ id="defs4" />
47
+ <metadata
48
+ id="metadata7">
49
+ <rdf:RDF>
50
+ <cc:Work
51
+ rdf:about="">
52
+ <dc:format>image/svg+xml</dc:format>
53
+ <dc:type
54
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
55
+ </cc:Work>
56
+ </rdf:RDF>
57
+ </metadata>
58
+ <g
59
+ id="layer1"
60
+ inkscape:groupmode="layer"
61
+ inkscape:label="Calque 1"
62
+ transform="translate(-235.69023,-509.00838)">
63
+ <path
64
+ style="fill:none;stroke:#000000;stroke-width:0.93749996;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49912852;stroke-dasharray:none"
65
+ d="m 241.01524,546.33606 h 32.37212 v -32.28943 m 0,32.28943 18.81103,9.42718"
66
+ id="path2005" />
67
+ <path
68
+ style="fill:none;stroke:#000000;stroke-width:0.93749996;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-dasharray:none"
69
+ d="m 292.19839,555.76324 h -32.37213 v -32.28942 h 32.37213 z m 0,-32.28942 -18.81103,-9.42719 h -32.37212 v 32.28943 l 18.81102,9.42718 m 0,-32.28942 -18.81102,-9.42719"
70
+ id="path2009" />
71
+ <rect
72
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.783601;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
73
+ id="rect3646"
74
+ width="27.05797"
75
+ height="26.988836"
76
+ x="262.48334"
77
+ y="526.12408" />
78
+ <rect
79
+ style="fill:#000000;fill-opacity:0.50159901;stroke:none;stroke-width:0.783601;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1"
80
+ id="rect3648"
81
+ width="27.05797"
82
+ height="26.988836"
83
+ x="243.85866"
84
+ y="516.85284" />
85
+ <path
86
+ style="fill:#000000;fill-opacity:0.99887198;stroke:none;stroke-width:0.738312px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
87
+ d="m 243.01361,518.47835 14.81428,7.42421 v 25.42896 l -14.81428,-7.4242 v -25.42897"
88
+ id="path3650" />
89
+ <path
90
+ style="fill:#000000;fill-opacity:0.49818593;stroke:none;stroke-width:0.738312px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
91
+ d="m 275.6832,518.53517 14.81428,7.42421 v 25.42896 l -14.81428,-7.4242 v -25.42897"
92
+ id="path3652" />
93
+ <path
94
+ style="fill:#000000;fill-opacity:0.99634826;stroke:none;stroke-width:0.653963px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
95
+ d="m 248.75514,515.47221 h 22.58152 l 13.12183,6.57603 h -22.58152 l -13.12183,-6.57603"
96
+ id="path3654" />
97
+ <path
98
+ style="fill:#000000;fill-opacity:0.498186;stroke:none;stroke-width:0.653963px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
99
+ d="m 248.44947,547.42683 h 22.58152 l 13.12183,6.57603 H 261.5713 l -13.12183,-6.57603"
100
+ id="path3656" />
101
+ </g>
102
+ </svg>
@@ -0,0 +1,172 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="17.400564mm"
6
+ height="14.617167mm"
7
+ viewBox="0 0 61.655541 51.793112"
8
+ id="svg2"
9
+ version="1.1"
10
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
11
+ sodipodi:docname="grid_3d_points.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg"
16
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17
+ xmlns:cc="http://creativecommons.org/ns#"
18
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
19
+ <sodipodi:namedview
20
+ id="base"
21
+ pagecolor="#ffffff"
22
+ bordercolor="#666666"
23
+ borderopacity="1.0"
24
+ inkscape:pageopacity="0.0"
25
+ inkscape:pageshadow="2"
26
+ inkscape:zoom="8.0000004"
27
+ inkscape:cx="23.874999"
28
+ inkscape:cy="23.749999"
29
+ inkscape:document-units="px"
30
+ inkscape:current-layer="layer1"
31
+ showgrid="false"
32
+ inkscape:window-width="1920"
33
+ inkscape:window-height="1043"
34
+ inkscape:window-x="1920"
35
+ inkscape:window-y="0"
36
+ inkscape:window-maximized="1"
37
+ fit-margin-top="0"
38
+ fit-margin-left="0"
39
+ fit-margin-right="0"
40
+ fit-margin-bottom="0"
41
+ inkscape:pagecheckerboard="0"
42
+ units="in"
43
+ inkscape:showpageshadow="0"
44
+ inkscape:deskcolor="#d1d1d1" />
45
+ <defs
46
+ id="defs4" />
47
+ <metadata
48
+ id="metadata7">
49
+ <rdf:RDF>
50
+ <cc:Work
51
+ rdf:about="">
52
+ <dc:format>image/svg+xml</dc:format>
53
+ <dc:type
54
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
55
+ </cc:Work>
56
+ </rdf:RDF>
57
+ </metadata>
58
+ <g
59
+ id="layer1"
60
+ inkscape:groupmode="layer"
61
+ inkscape:label="Calque 1"
62
+ transform="translate(-235.69023,-509.00838)">
63
+ <ellipse
64
+ ry="5.0382481"
65
+ rx="5.1473732"
66
+ cy="523.47382"
67
+ cx="259.82626"
68
+ id="ellipse3464-1"
69
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.19958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
70
+ <ellipse
71
+ ry="5.0382481"
72
+ rx="5.1473732"
73
+ cy="523.47382"
74
+ cx="292.19839"
75
+ id="ellipse18130"
76
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.19958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
77
+ <ellipse
78
+ ry="5.0382481"
79
+ rx="5.1473732"
80
+ cy="555.76324"
81
+ cx="292.19839"
82
+ id="ellipse18132"
83
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.19958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
84
+ <ellipse
85
+ ry="5.0382481"
86
+ rx="5.1473732"
87
+ cy="555.76324"
88
+ cx="259.82626"
89
+ id="ellipse18134"
90
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.19958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
91
+ <path
92
+ style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
93
+ d="m 259.82626,530.19134 v 18.85439"
94
+ id="path18507" />
95
+ <path
96
+ style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
97
+ d="m 292.19839,530.19134 v 18.85439"
98
+ id="path18511" />
99
+ <path
100
+ style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
101
+ d="m 266.58514,523.47382 h 18.85438"
102
+ id="path18513" />
103
+ <path
104
+ style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
105
+ d="m 266.58514,555.76324 h 18.85438"
106
+ id="path18515" />
107
+ <ellipse
108
+ ry="5.0382481"
109
+ rx="5.1473732"
110
+ cy="514.04663"
111
+ cx="240.8376"
112
+ id="ellipse858"
113
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.19958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
114
+ <ellipse
115
+ ry="5.0382481"
116
+ rx="5.1473732"
117
+ cy="514.04663"
118
+ cx="273.20972"
119
+ id="ellipse860"
120
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.19958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
121
+ <ellipse
122
+ ry="5.0382481"
123
+ rx="5.1473732"
124
+ cy="546.33606"
125
+ cx="273.20972"
126
+ id="ellipse862"
127
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:0.500413;fill-rule:evenodd;stroke:none;stroke-width:2.19958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
128
+ <ellipse
129
+ ry="5.0382481"
130
+ rx="5.1473732"
131
+ cy="546.33606"
132
+ cx="240.8376"
133
+ id="ellipse864"
134
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.19958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
135
+ <path
136
+ style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
137
+ d="m 240.83759,520.76414 v 18.85439"
138
+ id="path866" />
139
+ <path
140
+ style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:0.496101"
141
+ d="m 273.20972,520.76414 v 18.85439"
142
+ id="path868" />
143
+ <path
144
+ style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
145
+ d="m 247.59647,514.04662 h 18.85438"
146
+ id="path870" />
147
+ <path
148
+ style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:0.5"
149
+ d="m 247.59647,546.33604 h 18.85438"
150
+ id="path872" />
151
+ <path
152
+ style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
153
+ d="m 246.07836,548.93791 8.50714,4.22348"
154
+ id="path874"
155
+ sodipodi:nodetypes="cc" />
156
+ <path
157
+ style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
158
+ d="m 246.07836,516.65274 8.50714,4.22348"
159
+ id="path972"
160
+ sodipodi:nodetypes="cc" />
161
+ <path
162
+ style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
163
+ d="m 278.53931,516.65274 8.50714,4.22348"
164
+ id="path974"
165
+ sodipodi:nodetypes="cc" />
166
+ <path
167
+ style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:0.498183"
168
+ d="m 278.53931,548.61326 8.50714,4.22348"
169
+ id="path976"
170
+ sodipodi:nodetypes="cc" />
171
+ </g>
172
+ </svg>
@@ -0,0 +1,86 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="11.657137mm"
6
+ height="10.91879mm"
7
+ viewBox="0 0 41.304816 38.688626"
8
+ id="svg2"
9
+ version="1.1"
10
+ inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
11
+ sodipodi:docname="point_set_points.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg"
16
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17
+ xmlns:cc="http://creativecommons.org/ns#"
18
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
19
+ <defs
20
+ id="defs4" />
21
+ <sodipodi:namedview
22
+ id="base"
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1.0"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pageshadow="2"
28
+ inkscape:zoom="1.979899"
29
+ inkscape:cx="-85.610428"
30
+ inkscape:cy="-54.043161"
31
+ inkscape:document-units="px"
32
+ inkscape:current-layer="layer1"
33
+ showgrid="false"
34
+ inkscape:window-width="1920"
35
+ inkscape:window-height="1043"
36
+ inkscape:window-x="3840"
37
+ inkscape:window-y="0"
38
+ inkscape:window-maximized="1"
39
+ fit-margin-top="0"
40
+ fit-margin-left="0"
41
+ fit-margin-right="0"
42
+ fit-margin-bottom="0"
43
+ inkscape:pagecheckerboard="0" />
44
+ <metadata
45
+ id="metadata7">
46
+ <rdf:RDF>
47
+ <cc:Work
48
+ rdf:about="">
49
+ <dc:format>image/svg+xml</dc:format>
50
+ <dc:type
51
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
52
+ </cc:Work>
53
+ </rdf:RDF>
54
+ </metadata>
55
+ <g
56
+ inkscape:label="Calque 1"
57
+ inkscape:groupmode="layer"
58
+ id="layer1"
59
+ transform="translate(-384.27614,-101.51789)">
60
+ <g
61
+ transform="translate(222.45784,1.716959)"
62
+ id="g4252">
63
+ <ellipse
64
+ ry="5.8035727"
65
+ rx="6.0185194"
66
+ cy="105.60451"
67
+ cx="175.35263"
68
+ id="ellipse4254"
69
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
70
+ <ellipse
71
+ ry="5.8035727"
72
+ rx="6.0185194"
73
+ cy="127.25306"
74
+ cx="197.1046"
75
+ id="ellipse4256"
76
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
77
+ <ellipse
78
+ ry="5.8035727"
79
+ rx="6.0185194"
80
+ cy="132.68599"
81
+ cx="167.83682"
82
+ id="ellipse4258"
83
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
84
+ </g>
85
+ </g>
86
+ </svg>
@@ -0,0 +1,96 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="14.56725mm"
6
+ height="14.741101mm"
7
+ viewBox="0 0 51.61624 52.232251"
8
+ id="svg2"
9
+ version="1.1"
10
+ inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
11
+ sodipodi:docname="solid_edges.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg"
16
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17
+ xmlns:cc="http://creativecommons.org/ns#"
18
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
19
+ <sodipodi:namedview
20
+ id="base"
21
+ pagecolor="#ffffff"
22
+ bordercolor="#666666"
23
+ borderopacity="1.0"
24
+ inkscape:pageopacity="0.0"
25
+ inkscape:pageshadow="2"
26
+ inkscape:zoom="8.0000002"
27
+ inkscape:cx="34.937499"
28
+ inkscape:cy="18.25"
29
+ inkscape:document-units="px"
30
+ inkscape:current-layer="g6358"
31
+ showgrid="false"
32
+ inkscape:window-width="1920"
33
+ inkscape:window-height="1043"
34
+ inkscape:window-x="3840"
35
+ inkscape:window-y="0"
36
+ inkscape:window-maximized="1"
37
+ fit-margin-top="0"
38
+ fit-margin-left="0"
39
+ fit-margin-right="0"
40
+ fit-margin-bottom="0"
41
+ inkscape:pagecheckerboard="0"
42
+ width="14.56725mm" />
43
+ <defs
44
+ id="defs4" />
45
+ <metadata
46
+ id="metadata7">
47
+ <rdf:RDF>
48
+ <cc:Work
49
+ rdf:about="">
50
+ <dc:format>image/svg+xml</dc:format>
51
+ <dc:type
52
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
53
+ </cc:Work>
54
+ </rdf:RDF>
55
+ </metadata>
56
+ <g
57
+ id="layer1"
58
+ inkscape:groupmode="layer"
59
+ inkscape:label="Calque 1"
60
+ transform="translate(-40.39686,-1042.6347)">
61
+ <g
62
+ id="g6358"
63
+ transform="matrix(0.97484501,0.22288385,-0.0558804,1.0130279,35.823527,161.82849)">
64
+ <path
65
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.12218751;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
66
+ d="M 93.175917,898.36698 105.08026,864.6786 73.54819,855.46885 Z"
67
+ id="path3559"
68
+ inkscape:connector-curvature="0"
69
+ sodipodi:nodetypes="cccc" />
70
+ <path
71
+ sodipodi:nodetypes="ccc"
72
+ inkscape:connector-curvature="0"
73
+ id="path3561"
74
+ d="m 73.54819,855.46885 -15.464419,38.90846 35.092146,3.98967"
75
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.12218751;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
76
+ <path
77
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.12218751;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:4.48875004,2.24437502;stroke-dashoffset:0;stroke-opacity:1"
78
+ d="M 59.285714,893.93363 105,864.29077"
79
+ id="path3603"
80
+ inkscape:connector-curvature="0" />
81
+ </g>
82
+ <flowRoot
83
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0.01%;font-family:Roboto;-inkscape-font-specification:Roboto;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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
84
+ id="flowRoot4518"
85
+ xml:space="preserve"><flowRegion
86
+ id="flowRegion4520"><rect
87
+ y="1311.6479"
88
+ x="27.142857"
89
+ height="57.142857"
90
+ width="155"
91
+ id="rect4522"
92
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Roboto;-inkscape-font-specification:Roboto" /></flowRegion><flowPara
93
+ id="flowPara4524"
94
+ style="font-size:27.5px;line-height:1.25"> </flowPara></flowRoot>
95
+ </g>
96
+ </svg>
@@ -0,0 +1,119 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="14.56725mm"
6
+ height="14.741101mm"
7
+ viewBox="0 0 51.61624 52.232251"
8
+ id="svg2"
9
+ version="1.1"
10
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
11
+ sodipodi:docname="solid_facets.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg"
16
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
17
+ xmlns:cc="http://creativecommons.org/ns#"
18
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
19
+ <sodipodi:namedview
20
+ id="base"
21
+ pagecolor="#ffffff"
22
+ bordercolor="#666666"
23
+ borderopacity="1.0"
24
+ inkscape:pageopacity="0.0"
25
+ inkscape:pageshadow="2"
26
+ inkscape:zoom="11.313709"
27
+ inkscape:cx="15.909902"
28
+ inkscape:cy="24.57196"
29
+ inkscape:document-units="px"
30
+ inkscape:current-layer="g6358"
31
+ showgrid="false"
32
+ inkscape:window-width="1920"
33
+ inkscape:window-height="1043"
34
+ inkscape:window-x="1920"
35
+ inkscape:window-y="0"
36
+ inkscape:window-maximized="1"
37
+ fit-margin-top="0"
38
+ fit-margin-left="0"
39
+ fit-margin-right="0"
40
+ fit-margin-bottom="0"
41
+ inkscape:pagecheckerboard="0"
42
+ width="14.56725mm"
43
+ inkscape:showpageshadow="0"
44
+ inkscape:deskcolor="#d1d1d1" />
45
+ <defs
46
+ id="defs4" />
47
+ <metadata
48
+ id="metadata7">
49
+ <rdf:RDF>
50
+ <cc:Work
51
+ rdf:about="">
52
+ <dc:format>image/svg+xml</dc:format>
53
+ <dc:type
54
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
55
+ </cc:Work>
56
+ </rdf:RDF>
57
+ </metadata>
58
+ <g
59
+ id="layer1"
60
+ inkscape:groupmode="layer"
61
+ inkscape:label="Calque 1"
62
+ transform="translate(-40.39686,-1042.6347)">
63
+ <g
64
+ id="g6358"
65
+ transform="matrix(0.97484501,0.22288385,-0.0558804,1.0130279,35.823527,161.82849)">
66
+ <path
67
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.56250001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
68
+ d="M 93.175917,898.36698 105.08026,864.6786 73.54819,855.46885 Z"
69
+ id="path3559"
70
+ inkscape:connector-curvature="0"
71
+ sodipodi:nodetypes="cccc" />
72
+ <path
73
+ sodipodi:nodetypes="ccc"
74
+ inkscape:connector-curvature="0"
75
+ id="path3561"
76
+ d="m 73.54819,855.46885 -15.464419,38.90846 35.092146,3.98967"
77
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.56250001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
78
+ <path
79
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5625;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:4.5, 4.5;stroke-dashoffset:0;stroke-opacity:1"
80
+ d="M 58.083771,894.37731 105.08026,864.6786"
81
+ id="path3603"
82
+ inkscape:connector-curvature="0"
83
+ sodipodi:nodetypes="cc" />
84
+ <path
85
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.9375px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
86
+ d="m 78.258993,859.39802 23.766197,7.14605 -9.524027,25.21608 z"
87
+ id="path8659"
88
+ sodipodi:nodetypes="cccc" />
89
+ <path
90
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.9375px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
91
+ d="m 73.396137,862.31019 -11.730542,29.84687 26.603325,2.32195 z"
92
+ id="path9515"
93
+ sodipodi:nodetypes="cccc" />
94
+ <path
95
+ style="fill:#000000;stroke:none;stroke-width:0.9375px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.54785639;fill-opacity:0.62393421"
96
+ d="M 75.029917,858.59754 63.574083,888.62449 99.17319,866.04081 Z"
97
+ id="path9517"
98
+ sodipodi:nodetypes="cccc" />
99
+ <path
100
+ style="fill:#000000;stroke:none;stroke-width:0.9375px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.62393421"
101
+ d="m 63.92179,893.11018 37.89056,-24.5226 -10.106342,26.94801 z"
102
+ id="path9519"
103
+ sodipodi:nodetypes="cccc" />
104
+ </g>
105
+ <flowRoot
106
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0.01%;font-family:Roboto;-inkscape-font-specification:Roboto;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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
107
+ id="flowRoot4518"
108
+ xml:space="preserve"><flowRegion
109
+ id="flowRegion4520"><rect
110
+ y="1311.6479"
111
+ x="27.142857"
112
+ height="57.142857"
113
+ width="155"
114
+ id="rect4522"
115
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Roboto;-inkscape-font-specification:Roboto" /></flowRegion><flowPara
116
+ id="flowPara4524"
117
+ style="font-size:27.5px;line-height:1.25"> </flowPara></flowRoot>
118
+ </g>
119
+ </svg>