@geode/opengeodeweb-front 0.0.0

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 (52) hide show
  1. package/.github/workflows/Branch-protection.yml +11 -0
  2. package/.github/workflows/CD.yml +23 -0
  3. package/.releaserc +11 -0
  4. package/LICENSE +21 -0
  5. package/README.md +2 -0
  6. package/assets/geode_objects.js +110 -0
  7. package/assets/img/geode_objects/BRep.svg +102 -0
  8. package/assets/img/geode_objects/cross_section.svg +95 -0
  9. package/assets/img/geode_objects/edged_curve.svg +67 -0
  10. package/assets/img/geode_objects/edged_curve2d.svg +78 -0
  11. package/assets/img/geode_objects/edged_curve3d.svg +78 -0
  12. package/assets/img/geode_objects/hybrid_solid.svg +128 -0
  13. package/assets/img/geode_objects/point_set2d.svg +97 -0
  14. package/assets/img/geode_objects/point_set3d.svg +97 -0
  15. package/assets/img/geode_objects/polygonal_surface2d.svg +90 -0
  16. package/assets/img/geode_objects/polygonal_surface3d.svg +90 -0
  17. package/assets/img/geode_objects/polyhedral_solid.svg +148 -0
  18. package/assets/img/geode_objects/raster_image2d.svg +109 -0
  19. package/assets/img/geode_objects/raster_image3d.svg +108 -0
  20. package/assets/img/geode_objects/regular_grid.svg +107 -0
  21. package/assets/img/geode_objects/regular_grid2d.svg +107 -0
  22. package/assets/img/geode_objects/regular_grid3d.svg +193 -0
  23. package/assets/img/geode_objects/section.svg +87 -0
  24. package/assets/img/geode_objects/structural_model.svg +95 -0
  25. package/assets/img/geode_objects/tetrahedral_solid.svg +82 -0
  26. package/assets/img/geode_objects/triangulated_surface2d.svg +84 -0
  27. package/assets/img/geode_objects/triangulated_surface3d.svg +84 -0
  28. package/assets/img/geode_objects/vertex_set.svg +86 -0
  29. package/components/CrsSelector.vue +78 -0
  30. package/components/Errors/Banner.vue +48 -0
  31. package/components/Errors/Snackers.vue +49 -0
  32. package/components/ExtensionSelector.vue +53 -0
  33. package/components/FileSelector.vue +46 -0
  34. package/components/Header.vue +30 -0
  35. package/components/Launcher.vue +55 -0
  36. package/components/Loading.vue +24 -0
  37. package/components/ObjectSelector.vue +66 -0
  38. package/components/PackagesVersions.vue +54 -0
  39. package/components/RemoteRenderingView.client.vue +88 -0
  40. package/components/Step.vue +74 -0
  41. package/components/Stepper.vue +13 -0
  42. package/components/ViewToolbar.vue +30 -0
  43. package/components/Wrapper.vue +33 -0
  44. package/composables/api_fetch.js +32 -0
  45. package/nuxt.config.js +5 -0
  46. package/package.json +53 -0
  47. package/protocols/index.js +5 -0
  48. package/protocols/vtk.js +20 -0
  49. package/stores/cloud.js +89 -0
  50. package/stores/errors.js +20 -0
  51. package/stores/viewer.js +139 -0
  52. package/stores/websocket.js +94 -0
@@ -0,0 +1,11 @@
1
+ name: Check branch origin
2
+
3
+ on:
4
+ pull_request:
5
+
6
+ jobs:
7
+ check-branch-protection:
8
+ uses: Geode-solutions/actions/.github/workflows/branch-protection.yml@master
9
+ with:
10
+ branch_from: 'next'
11
+ branch_to: 'master'
@@ -0,0 +1,23 @@
1
+ name: Publish Package to npmjs
2
+ on:
3
+ push:
4
+ branches: [ next, master ]
5
+
6
+ jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - uses: actions/setup-node@v3
12
+ with:
13
+ node-version: '16.x'
14
+ registry-url: 'https://registry.npmjs.org'
15
+ - name: Semantic Release
16
+ uses: cycjimmy/semantic-release-action@v3
17
+ id: semantic
18
+ env:
19
+ GITHUB_TOKEN: ${{ github.token }}
20
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
21
+ - run: npm publish --access public
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/.releaserc ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ branches: [
3
+ { name: "master" },
4
+ { name: "next", channel: "next", prerelease: "rc" }
5
+ ],
6
+ plugins: [
7
+ '@semantic-release/commit-analyzer',
8
+ '@semantic-release/release-notes-generator',
9
+ '@semantic-release/github'
10
+ ]
11
+ }
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Geode-solutions
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # OpenGeodeWeb-Front
2
+ OpenSource Vue/Vuetify framework for web applications
@@ -0,0 +1,110 @@
1
+ import brep from '@/assets/img/geode_objects/BRep.svg'
2
+ import cross_section from '@/assets/img/geode_objects/cross_section.svg'
3
+ import edged_curve2d from '@/assets/img/geode_objects/edged_curve2d.svg'
4
+ import edged_curve3d from '@/assets/img/geode_objects/edged_curve3d.svg'
5
+ import edged_curve from '@/assets/img/geode_objects/edged_curve.svg'
6
+ import hybrid_solid from '@/assets/img/geode_objects/hybrid_solid.svg'
7
+ import point_set2d from '@/assets/img/geode_objects/point_set2d.svg'
8
+ import point_set3d from '@/assets/img/geode_objects/point_set3d.svg'
9
+ import polygonal_surface2d from '@/assets/img/geode_objects/polygonal_surface2d.svg'
10
+ import polygonal_surface3d from '@/assets/img/geode_objects/polygonal_surface3d.svg'
11
+ import polyhedral_solid from '@/assets/img/geode_objects/polyhedral_solid.svg'
12
+ import raster_image2d from '@/assets/img/geode_objects/raster_image2d.svg'
13
+ import raster_image3d from '@/assets/img/geode_objects/raster_image3d.svg'
14
+ import regular_grid2d from '@/assets/img/geode_objects/regular_grid2d.svg'
15
+ import regular_grid3d from '@/assets/img/geode_objects/regular_grid3d.svg'
16
+ import section from '@/assets/img/geode_objects/section.svg'
17
+ import structural_model from '@/assets/img/geode_objects/structural_model.svg'
18
+ import tetrahedral_solid from '@/assets/img/geode_objects/tetrahedral_solid.svg'
19
+ import triangulated_surface2d from '@/assets/img/geode_objects/triangulated_surface2d.svg'
20
+ import triangulated_surface3d from '@/assets/img/geode_objects/triangulated_surface3d.svg'
21
+ import vertex_set from '@/assets/img/geode_objects/vertex_set.svg'
22
+
23
+ const geode_objects = {
24
+ BRep: {
25
+ tooltip: 'BRep',
26
+ image: brep,
27
+ },
28
+ CrossSection: {
29
+ tooltip: 'CrossSection',
30
+ image: cross_section,
31
+ },
32
+ EdgedCurve2D: {
33
+ tooltip: 'EdgedCurve2D',
34
+ image: edged_curve2d,
35
+ },
36
+ EdgedCurve3D: {
37
+ tooltip: 'EdgedCurve3D',
38
+ image: edged_curve3d,
39
+ },
40
+ Graph: {
41
+ tooltip: 'Graph',
42
+ image: edged_curve,
43
+ },
44
+ HybridSolid3D: {
45
+ tooltip: "HybridSolid3D",
46
+ image: hybrid_solid,
47
+ },
48
+ PointSet2D: {
49
+ tooltip: 'PointSet2D',
50
+ image: point_set2d,
51
+ },
52
+ PointSet3D: {
53
+ tooltip: 'PointSet3D',
54
+ image: point_set3d,
55
+ },
56
+ PolygonalSurface2D: {
57
+ tooltip: 'PolygonalSurface2D',
58
+ image: polygonal_surface2d,
59
+ },
60
+ PolygonalSurface3D: {
61
+ tooltip: 'PolygonalSurface3D',
62
+ image: polygonal_surface3d,
63
+ },
64
+ PolyhedralSolid3D: {
65
+ tooltip: 'PolyhedralSolid3D',
66
+ image: polyhedral_solid,
67
+ },
68
+ RasterImage2D: {
69
+ tooltip: 'RasterImage2D',
70
+ image: raster_image2d,
71
+ },
72
+ RasterImage3D: {
73
+ tooltip: 'RasterImage3D',
74
+ image: raster_image3d,
75
+ },
76
+ RegularGrid2D: {
77
+ tooltip: 'RegularGrid2D',
78
+ image: regular_grid2d,
79
+ },
80
+ RegularGrid3D: {
81
+ tooltip: 'RegularGrid3D',
82
+ image: regular_grid3d,
83
+ },
84
+ Section: {
85
+ tooltip: 'Section',
86
+ image: section,
87
+ },
88
+ StructuralModel: {
89
+ tooltip: 'StructuralModel',
90
+ image: structural_model,
91
+ },
92
+ TetrahedralSolid3D: {
93
+ tooltip: 'TetrahedralSolid3D',
94
+ image: tetrahedral_solid,
95
+ },
96
+ TriangulatedSurface2D: {
97
+ tooltip: 'TriangulatedSurface2D',
98
+ image: triangulated_surface2d,
99
+ },
100
+ TriangulatedSurface3D: {
101
+ tooltip: 'TriangulatedSurface3D',
102
+ image: triangulated_surface3d,
103
+ },
104
+ VertexSet: {
105
+ tooltip: 'VertexSet',
106
+ image: vertex_set,
107
+ }
108
+ }
109
+
110
+ export default geode_objects
@@ -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
+ 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="18.141853mm"
13
+ height="18.141851mm"
14
+ viewBox="0 0 64.282157 64.282151"
15
+ id="svg2"
16
+ version="1.1"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ sodipodi:docname="brep.svg">
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="1"
27
+ inkscape:cx="94.938921"
28
+ inkscape:cy="237.02384"
29
+ inkscape:document-units="px"
30
+ inkscape:current-layer="layer1"
31
+ showgrid="false"
32
+ inkscape:window-width="1853"
33
+ inkscape:window-height="1025"
34
+ inkscape:window-x="67"
35
+ inkscape:window-y="27"
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
+ <defs
42
+ id="defs4" />
43
+ <metadata
44
+ id="metadata7">
45
+ <rdf:RDF>
46
+ <cc:Work
47
+ rdf:about="">
48
+ <dc:format>image/svg+xml</dc:format>
49
+ <dc:type
50
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
51
+ <dc:title></dc:title>
52
+ </cc:Work>
53
+ </rdf:RDF>
54
+ </metadata>
55
+ <g
56
+ id="layer1"
57
+ inkscape:groupmode="layer"
58
+ inkscape:label="Calque 1"
59
+ transform="translate(-50.073196,-1105.2926)">
60
+ <g
61
+ transform="matrix(0.95788262,-0.56437145,0.40384435,0.80602963,-458.01774,265.47156)"
62
+ id="g4458">
63
+ <path
64
+ 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:4.24248075;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"
65
+ d="m 61.515608,1127.8085 v 11.8821 l 13.881316,11.3097 h 15.818181 l 13.755055,-11.3097 v -11.8821 L 91.215105,1117.2016 H 75.396924 Z"
66
+ id="path4411"
67
+ inkscape:connector-curvature="0"
68
+ sodipodi:nodetypes="ccccccccc" />
69
+ <path
70
+ sodipodi:nodetypes="cccccc"
71
+ inkscape:connector-curvature="0"
72
+ id="path4415"
73
+ d="m 61.515608,1139.6906 v 11.8821 l 13.755047,11.4276 h 15.818181 l 13.881324,-11.4276 v -11.8821"
74
+ 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:4.24248075;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" />
75
+ <path
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:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.24248075;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
+ d="m 75.508902,1151.9054 v 10.3112"
78
+ id="path4417"
79
+ inkscape:connector-curvature="0"
80
+ sodipodi:nodetypes="cc" />
81
+ <path
82
+ 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:4.24248075;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"
83
+ d="m 90.66119,1151.9054 v 10.4374"
84
+ id="path4419"
85
+ inkscape:connector-curvature="0"
86
+ sodipodi:nodetypes="cc" />
87
+ <ellipse
88
+ 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:4.24248075;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"
89
+ id="path4421"
90
+ cx="83.337585"
91
+ cy="1134.2477"
92
+ rx="10.653656"
93
+ ry="7.812602" />
94
+ <path
95
+ 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:4.24248075;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"
96
+ d="m 74.280563,1138.0694 c 5.402359,-5.1221 12.71483,-4.6264 18.137458,-0.2327"
97
+ id="path4449"
98
+ inkscape:connector-curvature="0"
99
+ sodipodi:nodetypes="cc" />
100
+ </g>
101
+ </g>
102
+ </svg>
@@ -0,0 +1,95 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="18.141853mm"
6
+ height="18.141851mm"
7
+ viewBox="0 0 64.282157 64.282151"
8
+ id="svg2"
9
+ version="1.1"
10
+ inkscape:version="1.1.2 (76b9e6a115, 2022-02-25)"
11
+ sodipodi:docname="cross_section.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="4"
27
+ inkscape:cx="28.375"
28
+ inkscape:cy="-4.25"
29
+ inkscape:document-units="px"
30
+ inkscape:current-layer="g4557"
31
+ showgrid="false"
32
+ inkscape:window-width="1680"
33
+ inkscape:window-height="1013"
34
+ inkscape:window-x="0"
35
+ inkscape:window-y="30"
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
+ <defs
43
+ id="defs4" />
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
+ id="layer1"
57
+ inkscape:groupmode="layer"
58
+ inkscape:label="Calque 1"
59
+ transform="translate(-150.0732,-1105.2926)">
60
+ <g
61
+ transform="matrix(1.0162645,0.18864628,-0.01050876,0.9820451,11.286293,-16.179033)"
62
+ id="g4557">
63
+ <path
64
+ style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4.24248;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1"
65
+ d="m 155.07502,1126.2119 0.41396,40.0329 49.76157,-9.5591 -0.41397,-40.0328 z"
66
+ id="path531"
67
+ sodipodi:nodetypes="ccccc" />
68
+ <path
69
+ style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4.24248;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1"
70
+ d="m 185.40677,1120.5667 -7.48928,41.1235"
71
+ id="path623"
72
+ sodipodi:nodetypes="cc" />
73
+ <path
74
+ style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4.24248;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1"
75
+ d="m 157.08108,1156.0322 c 0.5331,-0.3036 9.85685,3.3628 21.86874,-4.7865"
76
+ id="path625"
77
+ sodipodi:nodetypes="cc" />
78
+ <path
79
+ style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4.24248;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000"
80
+ d="m 156.19708,1143.5571 c -0.25898,-0.225 11.77761,5.2907 25.40873,-5.4692"
81
+ id="path625-5"
82
+ sodipodi:nodetypes="cc" />
83
+ <path
84
+ style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4.24248;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1"
85
+ d="m 183.80218,1130.2499 c 11.44026,-10.5975 20.95312,-4.566 20.88197,-4.09"
86
+ id="path627"
87
+ sodipodi:nodetypes="cc" />
88
+ <path
89
+ style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:4.24248;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000"
90
+ d="m 181.51776,1143.5244 c 12.10747,-11.2955 23.19365,-7.2875 23.12681,-7.0852"
91
+ id="path627-3"
92
+ sodipodi:nodetypes="cc" />
93
+ </g>
94
+ </g>
95
+ </svg>
@@ -0,0 +1,67 @@
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="18.141853mm"
13
+ height="18.141851mm"
14
+ viewBox="0 0 64.282157 64.282151"
15
+ id="svg2"
16
+ version="1.1"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ sodipodi:docname="edged_curve.svg">
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="2.8284272"
27
+ inkscape:cx="23.719816"
28
+ inkscape:cy="25.071993"
29
+ inkscape:document-units="px"
30
+ inkscape:current-layer="layer1"
31
+ showgrid="false"
32
+ inkscape:window-width="1853"
33
+ inkscape:window-height="1025"
34
+ inkscape:window-x="67"
35
+ inkscape:window-y="27"
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
+ <defs
42
+ id="defs4" />
43
+ <metadata
44
+ id="metadata7">
45
+ <rdf:RDF>
46
+ <cc:Work
47
+ rdf:about="">
48
+ <dc:format>image/svg+xml</dc:format>
49
+ <dc:type
50
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
51
+ <dc:title></dc:title>
52
+ </cc:Work>
53
+ </rdf:RDF>
54
+ </metadata>
55
+ <g
56
+ id="layer1"
57
+ inkscape:groupmode="layer"
58
+ inkscape:label="Calque 1"
59
+ transform="translate(-148.07318,-287.29257)">
60
+ <path
61
+ sodipodi:nodetypes="cccc"
62
+ inkscape:connector-curvature="0"
63
+ id="path4286"
64
+ d="m 183.8195,340.01153 16.08124,-28.42299 -39.37295,14.94019 16.08126,-28.42299"
65
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.24248075;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
66
+ </g>
67
+ </svg>
@@ -0,0 +1,78 @@
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="18.141853mm"
13
+ height="18.141851mm"
14
+ viewBox="0 0 64.282157 64.282151"
15
+ id="svg2"
16
+ version="1.1"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ sodipodi:docname="edged_curve2d.svg">
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="1.4142136"
27
+ inkscape:cx="-107.39432"
28
+ inkscape:cy="220.72944"
29
+ inkscape:document-units="px"
30
+ inkscape:current-layer="layer1"
31
+ showgrid="false"
32
+ inkscape:window-width="1853"
33
+ inkscape:window-height="1025"
34
+ inkscape:window-x="67"
35
+ inkscape:window-y="27"
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
+ <defs
42
+ id="defs4" />
43
+ <metadata
44
+ id="metadata7">
45
+ <rdf:RDF>
46
+ <cc:Work
47
+ rdf:about="">
48
+ <dc:format>image/svg+xml</dc:format>
49
+ <dc:type
50
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
51
+ <dc:title></dc:title>
52
+ </cc:Work>
53
+ </rdf:RDF>
54
+ </metadata>
55
+ <g
56
+ id="layer1"
57
+ inkscape:groupmode="layer"
58
+ inkscape:label="Calque 1"
59
+ transform="translate(-148.07318,-287.29257)">
60
+ <path
61
+ sodipodi:nodetypes="cccc"
62
+ inkscape:connector-curvature="0"
63
+ id="path4286"
64
+ d="m 183.8195,340.01153 16.08124,-28.42299 -39.37295,14.94019 16.08126,-28.42299"
65
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.24248075;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
66
+ <text
67
+ xml:space="preserve"
68
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;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"
69
+ x="150.88525"
70
+ y="302.01733"
71
+ id="text4467"><tspan
72
+ sodipodi:role="line"
73
+ id="tspan4469"
74
+ x="150.88525"
75
+ y="302.01733"
76
+ style="font-size:15.62408257px;line-height:1.25">2D</tspan></text>
77
+ </g>
78
+ </svg>
@@ -0,0 +1,78 @@
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="18.141853mm"
13
+ height="18.141851mm"
14
+ viewBox="0 0 64.282157 64.282151"
15
+ id="svg2"
16
+ version="1.1"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ sodipodi:docname="edged_curve3d.svg">
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="1.4142136"
27
+ inkscape:cx="-107.39432"
28
+ inkscape:cy="148.1961"
29
+ inkscape:document-units="px"
30
+ inkscape:current-layer="layer1"
31
+ showgrid="false"
32
+ inkscape:window-width="1853"
33
+ inkscape:window-height="1025"
34
+ inkscape:window-x="67"
35
+ inkscape:window-y="27"
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
+ <defs
42
+ id="defs4" />
43
+ <metadata
44
+ id="metadata7">
45
+ <rdf:RDF>
46
+ <cc:Work
47
+ rdf:about="">
48
+ <dc:format>image/svg+xml</dc:format>
49
+ <dc:type
50
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
51
+ <dc:title></dc:title>
52
+ </cc:Work>
53
+ </rdf:RDF>
54
+ </metadata>
55
+ <g
56
+ id="layer1"
57
+ inkscape:groupmode="layer"
58
+ inkscape:label="Calque 1"
59
+ transform="translate(-148.07318,-219.29257)">
60
+ <path
61
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.24248075;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
62
+ d="m 183.8195,272.01153 16.08124,-28.42299 -39.37295,14.94019 16.08126,-28.42299"
63
+ id="path4425"
64
+ inkscape:connector-curvature="0"
65
+ sodipodi:nodetypes="cccc" />
66
+ <text
67
+ id="text4471"
68
+ y="234.05519"
69
+ x="151.06203"
70
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;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"
71
+ xml:space="preserve"><tspan
72
+ y="234.05519"
73
+ x="151.06203"
74
+ id="tspan4473"
75
+ sodipodi:role="line"
76
+ style="font-size:15.62408257px;line-height:1.25">3D</tspan></text>
77
+ </g>
78
+ </svg>