Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNino van Hooff <ninovanhooff@gmail.com>2020-05-08 16:14:39 +0300
committerNino van Hooff <ninovanhooff@gmail.com>2020-05-08 16:14:39 +0300
commit8f3827d5aef4c5a35c55bed8ec4ffc6eb7fb6c57 (patch)
treeb18cec3866643ae2a3e355908e6f8d2d98e7f5ad /plugins/AMFReader
parent679739d09d1b0071e35cb89e15a7fd8d95c984a3 (diff)
Convert doxygen to rst for 3MFReader/Writer and AMFReader
Diffstat (limited to 'plugins/AMFReader')
-rw-r--r--plugins/AMFReader/AMFReader.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/AMFReader/AMFReader.py b/plugins/AMFReader/AMFReader.py
index 794f2798ec..5196119d6c 100644
--- a/plugins/AMFReader/AMFReader.py
+++ b/plugins/AMFReader/AMFReader.py
@@ -147,13 +147,13 @@ class AMFReader(MeshReader):
return group_node
- ## Converts a Trimesh to Uranium's MeshData.
- # \param tri_node A Trimesh containing the contents of a file that was
- # just read.
- # \param file_name The full original filename used to watch for changes
- # \return Mesh data from the Trimesh in a way that Uranium can understand
- # it.
def _toMeshData(self, tri_node: trimesh.base.Trimesh, file_name: str = "") -> MeshData:
+ """Converts a Trimesh to Uranium's MeshData.
+
+ :param tri_node: A Trimesh containing the contents of a file that was just read.
+ :param file_name: The full original filename used to watch for changes
+ :return: Mesh data from the Trimesh in a way that Uranium can understand it.
+ """
tri_faces = tri_node.faces
tri_vertices = tri_node.vertices