소스 검색

Some tests

Johannes Kreutz 4 년 전
부모
커밋
d04434a5b3

+ 3 - 0
trackpoint-app/.idea/.gitignore

@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml

+ 6 - 0
trackpoint-app/.idea/inspectionProfiles/profiles_settings.xml

@@ -0,0 +1,6 @@
+<component name="InspectionProjectProfileManager">
+  <settings>
+    <option name="USE_PROJECT_PROFILE" value="false" />
+    <version value="1.0" />
+  </settings>
+</component>

+ 4 - 0
trackpoint-app/.idea/misc.xml

@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (trackpoint-app)" project-jdk-type="Python SDK" />
+</project>

+ 8 - 0
trackpoint-app/.idea/modules.xml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectModuleManager">
+    <modules>
+      <module fileurl="file://$PROJECT_DIR$/.idea/trackpoint-app.iml" filepath="$PROJECT_DIR$/.idea/trackpoint-app.iml" />
+    </modules>
+  </component>
+</project>

+ 10 - 0
trackpoint-app/.idea/trackpoint-app.iml

@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="PYTHON_MODULE" version="4">
+  <component name="NewModuleRootManager">
+    <content url="file://$MODULE_DIR$">
+      <excludeFolder url="file://$MODULE_DIR$/venv" />
+    </content>
+    <orderEntry type="inheritedJdk" />
+    <orderEntry type="sourceFolder" forTests="false" />
+  </component>
+</module>

+ 6 - 0
trackpoint-app/.idea/vcs.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="$PROJECT_DIR$/.." vcs="Git" />
+  </component>
+</project>

+ 5 - 0
trackpoint-app/requirements.txt

@@ -0,0 +1,5 @@
+numpy-stl
+matplotlib
+PyQt6
+gmsh
+pygmsh

+ 22 - 0
trackpoint-app/trackpoint-app.py

@@ -0,0 +1,22 @@
+#!/usr/bin/env python3
+
+import numpy
+import stl
+from stl import mesh
+import pygmsh
+
+with pygmsh.geo.Geometry() as geom:
+    circle = geom.add_circle([0.0, 0.0], 1.0, mesh_size=0.2)
+    #geom.extrude(circle, [0.0, 0.3, 1.0], num_layers=5)
+    cube = geom.generate_mesh()
+
+meshx = mesh.Mesh.from_file("../testdata/zPlate_0.stl")
+
+
+
+combi = mesh.Mesh(numpy.concatenate([
+    meshx.data.copy(),
+    cube.data.copy(),
+]))
+
+combi.save("combi.stl", mode=stl.Mode.ASCII)