Skip to main content

A toolkit for processing 3D components made with mixtures of materials and multiple manufacturing processes

Project description

VoxelFuse

The multi-material manufacturing toolkit.

Example 1

Example 2

VoxelFuse provides a set of Python commands for importing, modifying, displaying, and exporting multi-material 3D model data. This library allows scripts to be quickly created for processing different classes of models and generating the files needed to produce them.

Created as part of a research project with IDEAlab at ASU.

Features

  • Boolean operations for both volumes and materials
  • Morphology operations
  • Gaussian blurring
  • Primitive solid generation
  • Triply periodic structure generation
  • Conversion of voxel data to mesh surfaces
  • Model rendering with grids and axes
  • VoxCad simulation configuration
  • Voxelyze simulation configuration/execution
  • .vf, .vox, and .stl file import
  • .vf, .vxc, .vxa, and .stl file export
  • .gcode file modification

Installation

The voxelfuse library can be installed using pip.

pip3 install voxelfuse

Gmsh is used for .stl file import and Windows/Linux binaries are included with the library.

VoxCad/Voxelyze are used for simulation features. Windows/Linux binaries for VoxCad are included with the library. A Linux binary for Voxelyze is included which can also be used on Windows if WSL is configured.

Templates

Template for creating scripts using the built-in viewer:

# Import Libraries
import PyQt5.QtGui as qg
import sys
from voxelfuse.voxel_model import VoxelModel
from voxelfuse.mesh import Mesh
from voxelfuse.plot import Plot

# Start Application
if __name__=='__main__':
    app1 = qg.QApplication(sys.argv)

    # Import Models
    modelIn = VoxelModel.fromVoxFile('model1.vox')

    # Process Models
    modelResult = modelIn

    # Create and Export Mesh
    mesh1 = Mesh.fromVoxelModel(modelResult)
    mesh1.export('modelResult.stl')

    # Create and Export Plot
    plot1 = Plot(mesh1)
    plot1.show()
    app1.processEvents()
    plot1.export('result.png')

    app1.exec_()

Template for creating scripts using VoxCad simulation:

# Import Libraries
from voxelfuse.voxel_model import VoxelModel
from voxelfuse.simulation import Simulation

# Start Application
if __name__=='__main__':
    # Import Models
    modelIn = VoxelModel.fromVoxFile('model1.vox')

    # Process Models
    modelResult = modelIn

    # Create simulation and launch
    simulation = Simulation(modelIn)
    simulation.runSimVoxCad()

.vox File Generation

If desired, input models can be created in a .vox file format to allow different materials to be specified in a single model. This also speeds up import times compared to .stl files. My process using MagicaVoxel is as follows:

  1. Use the "Open" button under the "Palette" section to open the color-palette-11mat.png file. This will give you 11 colors that correspond to the materials defined in materials.py
  2. Create your model. By default the library will use a scale of 1mm per voxel when importing/exporting.
  3. Save the model as a .vox file using the "export" function (NOT the "save" function).

Using MagicaVoxel and the .vox format will limit you to using distinct voxel materials. The library's import function will convert these files to a data format that allows material mixing.

Documentation

See cdbrauer.github.io/VoxelFuse for library documentation.

See cdbrauer.github.io/VoxelFuse/voxelfuse_examples for a list of the example scripts.



IDEAlab

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

voxelfuse-1.2.5.tar.gz (62.3 MB view details)

Uploaded Source

Built Distribution

voxelfuse-1.2.5-py3-none-any.whl (62.6 MB view details)

Uploaded Python 3

File details

Details for the file voxelfuse-1.2.5.tar.gz.

File metadata

  • Download URL: voxelfuse-1.2.5.tar.gz
  • Upload date:
  • Size: 62.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for voxelfuse-1.2.5.tar.gz
Algorithm Hash digest
SHA256 f044236adc8155bc46fff4aad41e4cfc59a47c32beb37345baf9d3e44f4410b4
MD5 e19c56db89ea150a72abe23f00b6765f
BLAKE2b-256 e37198380b6c20d185e2719d90f9188796345b06df6bd9a99c303539b3381e10

See more details on using hashes here.

File details

Details for the file voxelfuse-1.2.5-py3-none-any.whl.

File metadata

  • Download URL: voxelfuse-1.2.5-py3-none-any.whl
  • Upload date:
  • Size: 62.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for voxelfuse-1.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 71b972d54b83831b0469ad0f74c1ea2ff238f207e2a04d5d70d2a98da31efb17
MD5 9b6b6bdc348a24d803c0c9cf95758b06
BLAKE2b-256 b42c1e5a982a26c70059d58f1083e6fc4edf5a581603c248217c4fb139e54be4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page