File: MeshWriter.py

package info (click to toggle)
uranium 5.0.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,304 kB
  • sloc: python: 31,765; sh: 132; makefile: 12
file content (44 lines) | stat: -rw-r--r-- 1,602 bytes parent folder | download | duplicates (3)
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
42
43
44
# Copyright (c) 2016 Ultimaker B.V.
# Uranium is released under the terms of the LGPLv3 or higher.

from UM.FileHandler.FileWriter import FileWriter
from UM.Scene.Iterator.BreadthFirstIterator import BreadthFirstIterator
from UM.Scene.SceneNode import SceneNode


class MeshWriter(FileWriter):
    """Base class for mesh writer objects"""

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)

    def write(self, stream, node, mode = FileWriter.OutputMode.BinaryMode):
        """Output a collection of nodes to stream in such a way that it makes sense
        for the file format.

        For example, in case of STL, it makes sense to go through all children
        of the nodes and write all those as transformed vertices to a single
        file.

        :param stream: :type{IOStream} The stream to output to.
        :param node: A collection of scene nodes to write to the stream.
        """

        raise NotImplementedError("MeshWriter plugin was not correctly implemented, no write was specified")

    @staticmethod
    def _meshNodes(nodes):
        """Filters a collection of nodes to only include nodes that are actual
        meshes.

        This does not include auxiliary nodes such as tool handles.

        :param nodes: A sequence of nodes.
        :return: The nodes among those that are actual scene nodes.
        """

        for root in nodes:
            yield from filter(
                lambda child: isinstance(child, SceneNode) and child.isSelectable() and child.getMeshData(),
                BreadthFirstIterator(root)
            )