File: __init__.py

package info (click to toggle)
numpy-stl 2.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,416 kB
  • sloc: python: 1,811; makefile: 137
file content (20 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from .stl import BUFFER_SIZE
from .stl import HEADER_SIZE
from .stl import COUNT_SIZE
from .stl import MAX_COUNT

from .stl import Mode
from .base import Dimension
from .base import RemoveDuplicates
from .mesh import Mesh

__all__ = [
    'BUFFER_SIZE',
    'HEADER_SIZE',
    'COUNT_SIZE',
    'MAX_COUNT',
    'Mode',
    'Dimension',
    'RemoveDuplicates',
    'Mesh',
]