GSOF-3dWireFrame 1.0.0__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 (39) hide show
  1. GSOF_3dWireFrame/Example_F16.py +141 -0
  2. GSOF_3dWireFrame/Example_dynamicWorld.py +99 -0
  3. GSOF_3dWireFrame/Example_motionWorld.py +75 -0
  4. GSOF_3dWireFrame/Example_staticWorld.py +112 -0
  5. GSOF_3dWireFrame/F16_Class.py +163 -0
  6. GSOF_3dWireFrame/Lib3D/Assembly.py +72 -0
  7. GSOF_3dWireFrame/Lib3D/Lib3D.py +145 -0
  8. GSOF_3dWireFrame/Lib3D/Object_WireFrame.py +66 -0
  9. GSOF_3dWireFrame/Lib3D/Object_base.py +122 -0
  10. GSOF_3dWireFrame/Lib3D/Objects.py +91 -0
  11. GSOF_3dWireFrame/Lib3D/Utils.py +9 -0
  12. GSOF_3dWireFrame/Lib3D/WireFrame_display.py +37 -0
  13. GSOF_3dWireFrame/Lib3D/__init__.py +7 -0
  14. GSOF_3dWireFrame/Lib3D/stlToObj.py +40 -0
  15. GSOF_3dWireFrame/MathLib/MathLib.py +460 -0
  16. GSOF_3dWireFrame/MathLib/__init__.py +7 -0
  17. GSOF_3dWireFrame/attitudeViewer.py +5 -0
  18. GSOF_3dWireFrame/modules/AttitudeViewer_class.py +115 -0
  19. GSOF_3dWireFrame/modules/Controls.py +60 -0
  20. GSOF_3dWireFrame/modules/__init__.py +7 -0
  21. GSOF_3dWireFrame/objects/Axis.json +40 -0
  22. GSOF_3dWireFrame/objects/F16.stl +0 -0
  23. GSOF_3dWireFrame/objects/LandingGear.json +28 -0
  24. GSOF_3dWireFrame/objects/Plume.json +34 -0
  25. GSOF_3dWireFrame/objects/Spark.json +15 -0
  26. GSOF_3dWireFrame/objects/cube.json +31 -0
  27. GSOF_3dWireFrame/objects/cube_flex.json +31 -0
  28. GSOF_3dWireFrame/objects/frame.json +16 -0
  29. GSOF_3dWireFrame/objects/house.json +50 -0
  30. GSOF_3dWireFrame/objects/net.json +3 -0
  31. GSOF_3dWireFrame/objects/plane.stl +0 -0
  32. GSOF_3dWireFrame/objects/pyramid.json +22 -0
  33. GSOF_3dWireFrame/stlToObject.py +32 -0
  34. gsof_3dwireframe-1.0.0.dist-info/METADATA +48 -0
  35. gsof_3dwireframe-1.0.0.dist-info/RECORD +39 -0
  36. gsof_3dwireframe-1.0.0.dist-info/WHEEL +5 -0
  37. gsof_3dwireframe-1.0.0.dist-info/licenses/AUTHORS +1 -0
  38. gsof_3dwireframe-1.0.0.dist-info/licenses/LICENSE +7 -0
  39. gsof_3dwireframe-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,28 @@
1
+ {"scale":100.0,
2
+ "color":[0,0,0],
3
+ "points_xyz":[
4
+ [0, 0.5, 0.2],
5
+ [0, 0.5, -0.2],
6
+ [0, 0.2, -0.5],
7
+ [0, -0.2, -0.5],
8
+ [0, -0.5, -0.2],
9
+ [0, -0.5, 0.2],
10
+ [0, -0.2, 0.5],
11
+ [0, 0.2, 0.5],
12
+
13
+ [0, 0.0, 0.0],
14
+ [0, 2.0, 0.0]
15
+ ],
16
+
17
+ "connections":[
18
+ [0,1],
19
+ [1,2],
20
+ [2,3],
21
+ [3,4],
22
+ [4,5],
23
+ [5,6],
24
+ [6,7],
25
+ [7,0],
26
+ [8,9]
27
+ ]
28
+ }
@@ -0,0 +1,34 @@
1
+ {"scale":100.0,
2
+ "color":[0,0,255],
3
+ "points_xyz":[
4
+ [0, 0.25, 0],
5
+ [0, 0.5, 0.25],
6
+ [0, 0, 2.0],
7
+
8
+ [0, -0.25, 0],
9
+ [0, -0.5, 0.25],
10
+ [0, 0, 2.0],
11
+
12
+ [0.25, 0, 0],
13
+ [0.5, 0, 0.25],
14
+ [0, 0, 2.0],
15
+
16
+ [-0.25, 0, 0],
17
+ [-0.5, 0, 0.25],
18
+ [0, 0, 2.0]
19
+ ],
20
+
21
+ "connections":[
22
+ [0,1],
23
+ [1,2],
24
+ [0,3],
25
+ [3,4],
26
+ [4,5],
27
+
28
+ [6,7],
29
+ [7,8],
30
+ [6,9],
31
+ [9,10],
32
+ [10,11]
33
+ ]
34
+ }
@@ -0,0 +1,15 @@
1
+ {"scale":100.0,
2
+ "color":[255,0,0],
3
+ "points_xyz":[
4
+ [ 0.0, 0.0, 0.0],
5
+ [ 0.5, 0.0, -0.5],
6
+ [-0.75, 0.0, -1.5],
7
+ [ 0.1, 0.0, -2.5]
8
+ ],
9
+
10
+ "connections":[
11
+ [0,1],
12
+ [1,2],
13
+ [2,3]
14
+ ]
15
+ }
@@ -0,0 +1,31 @@
1
+ {"scale":100.0,
2
+ "color":[0,0,0],
3
+ "points_xyz":[
4
+ [-1, 1,-1],
5
+ [ 1, 1,-1],
6
+ [ 1, 1, 1],
7
+ [-1, 1, 1],
8
+
9
+ [-1,-1,-1],
10
+ [ 1,-1,-1],
11
+ [ 1,-1, 1],
12
+ [-1,-1, 1]
13
+ ],
14
+
15
+ "connections":[
16
+ [0,1],
17
+ [1,2],
18
+ [2,3],
19
+ [3,0],
20
+
21
+ [4,5],
22
+ [5,6],
23
+ [6,7],
24
+ [7,4],
25
+
26
+ [0,4],
27
+ [1,5],
28
+ [2,6],
29
+ [3,7]
30
+ ]
31
+ }
@@ -0,0 +1,31 @@
1
+ {"scale":100.0,
2
+ "color":[0,0,0],
3
+ "points_xyz":[
4
+ [[-1, 1,-1],
5
+ [ 1, 1,-1],
6
+ [ 1, 1, 1],
7
+ [-1, 1, 1]],
8
+
9
+ [[-1,-1,-1],
10
+ [ 1,-1,-1],
11
+ [ 1,-1, 1],
12
+ [-1,-1, 1]]
13
+ ],
14
+
15
+ "connections":[
16
+ [0,0,1],
17
+ [0,1,2],
18
+ [0,2,3],
19
+ [0,3,0],
20
+
21
+ [1,4,5],
22
+ [1,5,6],
23
+ [1,6,7],
24
+ [1,7,4],
25
+
26
+ [[0,0],[1,4]],
27
+ [[0,1],[1,5]],
28
+ [[0,2],[1,6]],
29
+ [[0,3],[1,7]]
30
+ ]
31
+ }
@@ -0,0 +1,16 @@
1
+ {"scale":20.0,
2
+ "color":[0,0,0],
3
+ "points_xyz":[
4
+ [ -1.0, -0.5, 0],
5
+ [ -1.0, 0.5, 0],
6
+ [ 1.0, 0.5, 0],
7
+ [ 1.0, -0.5, 0]
8
+ ],
9
+
10
+ "connections":[
11
+ [0,1],
12
+ [1,2],
13
+ [2,3],
14
+ [3,0]
15
+ ]
16
+ }
@@ -0,0 +1,50 @@
1
+ {"scale":100.0,
2
+ "color":[0,0,0],
3
+ "points_xyz":[
4
+ [-1, -1,-1],
5
+ [ 1, -1,-1],
6
+ [ 1, -1, 1],
7
+ [-1, -1, 1],
8
+
9
+ [-1, 0,-1],
10
+ [ 1, 0,-1],
11
+ [ 1, 0, 1],
12
+ [-1, 0, 1],
13
+
14
+ [ 0, 1, 0],
15
+
16
+ [ -0.2, -1.0, -1],
17
+ [ -0.2, -0.5, -1],
18
+ [ 0.2, -0.5, -1],
19
+ [ 0.2, -1.0, -1]
20
+ ],
21
+
22
+ "connections":[
23
+ [0,1],
24
+ [1,2],
25
+ [2,3],
26
+ [3,0],
27
+
28
+ [0,2],
29
+ [1,3],
30
+
31
+ [4,5],
32
+ [5,6],
33
+ [6,7],
34
+ [7,4],
35
+
36
+ [0,4],
37
+ [1,5],
38
+ [2,6],
39
+ [3,7],
40
+
41
+ [4,8],
42
+ [5,8],
43
+ [6,8],
44
+ [7,8],
45
+
46
+ [ 9,10],
47
+ [10,11],
48
+ [11,12]
49
+ ]
50
+ }
@@ -0,0 +1,3 @@
1
+ {"scale": 100.0,
2
+ "color":[100,100,100],
3
+ "points_xyz": [[0, 0, 0], [20, 0, 0], [0, 1, 0], [20, 1, 0], [0, 2, 0], [20, 2, 0], [0, 3, 0], [20, 3, 0], [0, 4, 0], [20, 4, 0], [0, 5, 0], [20, 5, 0], [0, 6, 0], [20, 6, 0], [0, 7, 0], [20, 7, 0], [0, 8, 0], [20, 8, 0], [0, 9, 0], [20, 9, 0], [0, 10, 0], [20, 10, 0], [0, 11, 0], [20, 11, 0], [0, 12, 0], [20, 12, 0], [0, 13, 0], [20, 13, 0], [0, 14, 0], [20, 14, 0], [0, 15, 0], [20, 15, 0], [0, 16, 0], [20, 16, 0], [0, 17, 0], [20, 17, 0], [0, 18, 0], [20, 18, 0], [0, 19, 0], [20, 19, 0], [0, 20, 0], [20, 20, 0], [0, 0, 0], [0, 20, 0], [1, 0, 0], [1, 20, 0], [2, 0, 0], [2, 20, 0], [3, 0, 0], [3, 20, 0], [4, 0, 0], [4, 20, 0], [5, 0, 0], [5, 20, 0], [6, 0, 0], [6, 20, 0], [7, 0, 0], [7, 20, 0], [8, 0, 0], [8, 20, 0], [9, 0, 0], [9, 20, 0], [10, 0, 0], [10, 20, 0], [11, 0, 0], [11, 20, 0], [12, 0, 0], [12, 20, 0], [13, 0, 0], [13, 20, 0], [14, 0, 0], [14, 20, 0], [15, 0, 0], [15, 20, 0], [16, 0, 0], [16, 20, 0], [17, 0, 0], [17, 20, 0], [18, 0, 0], [18, 20, 0], [19, 0, 0], [19, 20, 0], [20, 0, 0], [20, 20, 0], "connections": [[0, 1], [2, 3], [4, 5], [6, 7], [8, 9], [10, 11], [12, 13], [14, 15], [16, 17], [18, 19], [20, 21], [22, 23], [24, 25], [26, 27], [28, 29], [30, 31], [32, 33], [34, 35], [36, 37], [38, 39], [40, 41], [40, 41], [42, 43], [44, 45], [46, 47], [48, 49], [50, 51], [52, 53], [54, 55], [56, 57], [58, 59], [60, 61], [62, 63], [64, 65], [66, 67], [68, 69], [70, 71], [72, 73], [74, 75], [76, 77], [78, 79], [80, 81]]}
Binary file
@@ -0,0 +1,22 @@
1
+ {"scale":100.0,
2
+ "color":[0,0,0],
3
+ "points_xyz":[
4
+ [-1, 1,-1],
5
+ [ 1, 1,-1],
6
+ [ 1, 1, 1],
7
+ [-1, 1, 1],
8
+ [ 0, 0, 0]
9
+ ],
10
+
11
+ "connections":[
12
+ [0,1],
13
+ [1,2],
14
+ [2,3],
15
+ [3,0],
16
+
17
+ [0,4],
18
+ [1,4],
19
+ [2,4],
20
+ [3,4]
21
+ ]
22
+ }
@@ -0,0 +1,32 @@
1
+ import json
2
+ from stl import mesh
3
+
4
+ # Load the STL file
5
+ stl_file = 'objects/plane.stl'
6
+ your_mesh = mesh.Mesh.from_file(stl_file)
7
+
8
+ # Initialize lists for points and lines
9
+ points = []
10
+ lines = []
11
+
12
+ # Iterate over the vectors (triangles) in the mesh
13
+ for i in range(len(your_mesh.vectors)):
14
+ vertexes = your_mesh.vectors[i].tolist()
15
+ # Add the vertices (points) to the list
16
+ for vertex in vertexes:
17
+ points.append(vertex)
18
+
19
+ # Add the edges (lines) to the list
20
+ lines.append([i*3, i*3+1])
21
+ lines.append([i*3+1, i*3+2])
22
+ lines.append([i*3+2, i*3+0])
23
+
24
+ # Now you have a list of points and lines
25
+ objectDict = {"scale": 100.0,
26
+ "points_xyz": points,
27
+ "connections": lines}
28
+ with open("objects/stl.json", "w") as f:
29
+ json.dump(objectDict, f)
30
+
31
+ if __name__ == "__main__":
32
+ exit()
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.4
2
+ Name: GSOF_3dWireFrame
3
+ Version: 1.0.0
4
+ Summary: A 3D wireframe rendering library built on Pygame
5
+ Author-email: Guy Soffer <gsoffer@yahoo.com>
6
+ License: GPL-3.0-or-later
7
+ Project-URL: Homepage, https://github.com/mrGSOF/GSOF_3dWireFrame
8
+ Keywords: 3dWireFrame
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Topic :: Games/Entertainment
20
+ Classifier: Topic :: Multimedia :: Graphics :: 3D Rendering
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ License-File: AUTHORS
25
+ Requires-Dist: pygame
26
+ Dynamic: license-file
27
+
28
+ # 3dWireFrame
29
+ Simple and basic 3D Wire-Frame drawing program.
30
+ - Loads .stl or .json object files.
31
+ - Supports assembly containers to manipulate object in their own frame of reference.
32
+ - Supports line connection between objects in assembly (visual links).
33
+ - Uses 4x4 transformation matrices under the hood.
34
+ - Uses PyGame to line drawing only.
35
+
36
+ ## Running instructions
37
+ ## Using pip (recommened)
38
+ - run `pip install GSOF_3dWireFrame`
39
+ ## Manual install
40
+ - Clone
41
+ - Install requirements `pip install -r requirements.txt`
42
+ - run `pip install .`
43
+ - Open and run one of the code examples (e.g. `Example_staticWorld.py`)
44
+
45
+ ![alt text](./Documentation/3DWireFrame_interactive.gif "Animation")
46
+
47
+ ![alt text](./Documentation/3DWireFrame_flex.gif "Screenshot")
48
+
@@ -0,0 +1,39 @@
1
+ GSOF_3dWireFrame/Example_F16.py,sha256=65fPBDVLIg0rcvADzNCjgz-fvUgL9MprmJ62QeUGZqE,4352
2
+ GSOF_3dWireFrame/Example_dynamicWorld.py,sha256=tZHQ3HnsGvAzOZSBeswhesqzY6V3SntY-WROTUEG8Qo,3438
3
+ GSOF_3dWireFrame/Example_motionWorld.py,sha256=4IJCNpftrdFAaB2lNNjUUvjTVdhlqJv4haC4sZxmugo,2469
4
+ GSOF_3dWireFrame/Example_staticWorld.py,sha256=cVixjZqrTQqY7-V8orceDjjB9YeQCzhC7QOeXpy70sc,3619
5
+ GSOF_3dWireFrame/F16_Class.py,sha256=6eyP4zDXnrhkjDG8jb6x7zayHcC4sPjvVOcXvqKinvs,6072
6
+ GSOF_3dWireFrame/attitudeViewer.py,sha256=7NJl0TI048m1PNyg_AxFJVs4jaVuGosUVojRXcjNL6o,142
7
+ GSOF_3dWireFrame/stlToObject.py,sha256=j7d_Jk1bMe2Me3RyVNQ_JlUVPVmFgGI0exiY67cBXr8,858
8
+ GSOF_3dWireFrame/Lib3D/Assembly.py,sha256=AR3hTXKPSxu1dyy-VA61m0YBpL7sdI-wMZyIAPfaJto,2566
9
+ GSOF_3dWireFrame/Lib3D/Lib3D.py,sha256=OzrNUtHs-oWxuUQDTEkF-1G6x6iFXcsAOqvRtOqGWyw,4689
10
+ GSOF_3dWireFrame/Lib3D/Object_WireFrame.py,sha256=jVPtTUNSh1ZtAxK_Ke0x5tqfy2a1KEgC3bulyzO6jeU,2788
11
+ GSOF_3dWireFrame/Lib3D/Object_base.py,sha256=btjL1M9Kw2Apd_cNsI8D-qDC0MNejxCxhmJrXTGN60A,4198
12
+ GSOF_3dWireFrame/Lib3D/Objects.py,sha256=CfxYKfmHaw2yPYgn9HcIFqqT8GaWFyJ9AkuaBTouxsU,2516
13
+ GSOF_3dWireFrame/Lib3D/Utils.py,sha256=TKbLu524Mje-ONsSZc0WprPL7WsojFrZ1a2KxVUmCJI,216
14
+ GSOF_3dWireFrame/Lib3D/WireFrame_display.py,sha256=famGXqocmegIhPcouNVGIBbpFAi5GZdwdwliaLChJfA,1375
15
+ GSOF_3dWireFrame/Lib3D/__init__.py,sha256=SRKTu_n2mqDTQ93oX0_EZI-uTARDiFU43bExJBN3qBs,158
16
+ GSOF_3dWireFrame/Lib3D/stlToObj.py,sha256=y1gxIWO1QUdwuoDYdsXDC9CCJh2JCfxGquJAaPhMqMI,1312
17
+ GSOF_3dWireFrame/MathLib/MathLib.py,sha256=KN1pWUw1FbDmbwgFtW8bc9Fr9SnhPKEbb_XvRfW3GqA,12685
18
+ GSOF_3dWireFrame/MathLib/__init__.py,sha256=SRKTu_n2mqDTQ93oX0_EZI-uTARDiFU43bExJBN3qBs,158
19
+ GSOF_3dWireFrame/modules/AttitudeViewer_class.py,sha256=jsJMLWAjUGJn6Z99ZlSSelMyXz6yOMj7yYgKHeq8VcA,4778
20
+ GSOF_3dWireFrame/modules/Controls.py,sha256=MO-5sKTZb-ucEua88JqFkTmwILgUdal0sybAfSC4HtA,2466
21
+ GSOF_3dWireFrame/modules/__init__.py,sha256=SRKTu_n2mqDTQ93oX0_EZI-uTARDiFU43bExJBN3qBs,158
22
+ GSOF_3dWireFrame/objects/Axis.json,sha256=qMhUw-R_lY1JMbhzzt1JEHuNIDG3bEO2Yckt7wbpaS4,827
23
+ GSOF_3dWireFrame/objects/F16.stl,sha256=SqKdKOijlJWntw16yt5qw3YnDKp7uK-TgXVc8e5P9us,227284
24
+ GSOF_3dWireFrame/objects/LandingGear.json,sha256=igaHvytiNb3t3kzZvq8g9eYwr3Rwip3NCBbLDkYTseQ,587
25
+ GSOF_3dWireFrame/objects/Plume.json,sha256=Unj_Pln7XcC_CXnwYbWWc_BzxGYnqV9f_0Viig59xTM,653
26
+ GSOF_3dWireFrame/objects/Spark.json,sha256=sB2RKUhuaorI3wobZDcTjQzfw6ayxuNfJD_0A28p_gw,296
27
+ GSOF_3dWireFrame/objects/cube.json,sha256=bc1-95mhxfFhmSdtmuTN0wFU5X8rbtFIMnrLLZ0JBvw,536
28
+ GSOF_3dWireFrame/objects/cube_flex.json,sha256=aa1g0I5ej_KxakAzxfFPXZhxBqN8Gy1Yxku8v-xGt1Y,588
29
+ GSOF_3dWireFrame/objects/frame.json,sha256=s7ERadruHopQp3CNnPFC7--TEbrwTUoMbZvTFc1vXiE,305
30
+ GSOF_3dWireFrame/objects/house.json,sha256=cL96mt4aFze2bH8YsFFqXKEEALUvCMIdt501Hic64mM,877
31
+ GSOF_3dWireFrame/objects/net.json,sha256=TB4x9m-wPL1bxAP-3dwWYHhrNcXKYZQaY1BymZC9cWs,1493
32
+ GSOF_3dWireFrame/objects/plane.stl,sha256=x6clPZhlnk20Ot__g5FppbBAyPR6LSc-UazHVg9_kLg,82384
33
+ GSOF_3dWireFrame/objects/pyramid.json,sha256=lpl6HHo1ion69OMQOI_QFElvdDgr_QwjeD28gPmdLtc,389
34
+ gsof_3dwireframe-1.0.0.dist-info/licenses/AUTHORS,sha256=Uf35lkyXGDqs-w2mDxZIpLj3e9syxxoO8wCCJOOHQqQ,37
35
+ gsof_3dwireframe-1.0.0.dist-info/licenses/LICENSE,sha256=Qtjt4SixNFL7JitgHrXRuRDdpVpTfbnd4XVV27JUuDg,1085
36
+ gsof_3dwireframe-1.0.0.dist-info/METADATA,sha256=vL3gjaETmtrfISbpHFEBx9AFE4_V4oLKLKyXqeQrrK0,1826
37
+ gsof_3dwireframe-1.0.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
38
+ gsof_3dwireframe-1.0.0.dist-info/top_level.txt,sha256=m8gu6cNSUmCJVL9K2iFSTJHGqSgjCzJHvCLM4R5AbgI,17
39
+ gsof_3dwireframe-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ Guy Soffer GSOF (gsoffer@yahoo.com)
@@ -0,0 +1,7 @@
1
+ Copyright © 2026 <Guy Soffer AKA GSOF, mrGSOF>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1 @@
1
+ GSOF_3dWireFrame