Skip to main content

lib3mf is an implementation of the 3D Manufacturing Format file standard

Project description

lib3mf

![Build Status] Documentation Status Version 2.3.2 Supported platforms Simplified BSD License codecov

lib3mf is a C++ implementation of the 3D Manufacturing Format file standard.

It provides 3MF reading and writing capabilities, as well as conversion and validation tools for input and output data. lib3mf runs on Windows, Linux and MacOS and offers a clean and easy-to-use API in various programming languages to speed up the development and keep integration costs at a minimum.

As 3MF shall become an universal 3D Printing standard, its quick adoption is very important. This library shall lower all barriers of adoption to any possible user, let it be software providers, hardware providers, service providers or middleware tools.

The specification can be downloaded at http://3mf.io/specification/.

Example (Create Cube)

import lib3mf
from lib3mf import get_wrapper

# Get version
def get_version(wrapper):
    major, minor, micro = wrapper.GetLibraryVersion()
    print("Lib3MF version: {:d}.{:d}.{:d}".format(major, minor, micro), end="")
    hasInfo, prereleaseinfo = wrapper.GetPrereleaseInformation()
    if hasInfo:
        print("-" + prereleaseinfo, end="")
    hasInfo, buildinfo = wrapper.GetBuildInformation()
    if hasInfo:
        print("+" + buildinfo, end="")
    print("")


# Create vertex in a mesh
def create_vertex(_mesh, x, y, z):
    position = lib3mf.Position()
    position.Coordinates[0] = float(x)
    position.Coordinates[1] = float(y)
    position.Coordinates[2] = float(z)
    _mesh.AddVertex(position)
    return position


# Add triangle in a mesh
def add_triangle(_mesh, p1, p2, p3):
    triangle = lib3mf.Triangle()
    triangle.Indices[0] = p1
    triangle.Indices[1] = p2
    triangle.Indices[2] = p3
    _mesh.AddTriangle(triangle)
    return triangle


# Get a wrapper object
wrapper = get_wrapper()

# Check version always
get_version(wrapper)

# Create a model
model = wrapper.CreateModel()
mesh_object = model.AddMeshObject()
mesh_object.SetName("Box")

# Define the size of the cube
fSizeX, fSizeY, fSizeZ = 100.0, 200.0, 300.0

# Create vertices
vertices = [
    create_vertex(mesh_object, 0, 0, 0),
    create_vertex(mesh_object, fSizeX, 0, 0),
    create_vertex(mesh_object, fSizeX, fSizeY, 0),
    create_vertex(mesh_object, 0, fSizeY, 0),
    create_vertex(mesh_object, 0, 0, fSizeZ),
    create_vertex(mesh_object, fSizeX, 0, fSizeZ),
    create_vertex(mesh_object, fSizeX, fSizeY, fSizeZ),
    create_vertex(mesh_object, 0, fSizeY, fSizeZ)
]

# Define triangles by vertices indices
triangle_indices = [
    (2, 1, 0), (0, 3, 2), (4, 5, 6), (6, 7, 4),
    (0, 1, 5), (5, 4, 0), (2, 3, 7), (7, 6, 2),
    (1, 2, 6), (6, 5, 1), (3, 0, 4), (4, 7, 3)
]

# Create triangles
triangles = []
for v0, v1, v2 in triangle_indices:
    triangles.append(add_triangle(mesh_object, v0, v1, v2))

# Set geometry to the mesh object after creating vertices and triangles
mesh_object.SetGeometry(vertices, triangles)

# Add build item with an identity transform
model.AddBuildItem(mesh_object, wrapper.GetIdentityTransform())

# Save the model to a 3MF file
writer = model.QueryWriter("3mf")
writer.WriteToFile("cube.3mf")

Documentation

lib3mf's documentation is available on https://lib3mf.readthedocs.io.

Obtaining lib3mf

Simply download the precompiled binary SDK https://github.com/3MFConsortium/lib3mf/releases.

Using lib3mf

Allthough the different language bindings are kept as similar as possible, the usage of lib3mf still depends your programming language.

You are best-off starting with one of the examples distributed in the SDK or with this minimal example in C++.

Contributing

lib3mf is an open source project and supported by the 3MF Consortium.

Contributions are welcome and we are always looking for people that improve the implementation of the specification and extensions of 3MF. Have a look at the contributor's guide for details. This page also contains a section about building lib3mf from source or obtaining nightly snapshot builds.

Licenses and third party code

lib3mf is released under the BSD license. The library contains code of the following third parties:

  1. libzip 1.10.1, https://libzip.org/license/
  2. zlib 1.3.1, http://www.zlib.net/zlib_license.html
  3. cpp-base64 2.rc.08, https://github.com/ReneNyffenegger/cpp-base64/blob/master/LICENSE
  4. fast-float v6.0.0, https://github.com/fastfloat/fast_float/tree/v6.0.0?tab=License-3-ov-file

In addition, the automated tests of lib3mf make uses of LibReSSL 3.8.2, License and googletest 1.14.0 License.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

lib3mf-2.5.0-py3-none-win_amd64.whl (857.6 kB view details)

Uploaded Python 3Windows x86-64

lib3mf-2.5.0-py3-none-manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded Python 3

lib3mf-2.5.0-py3-none-macosx_10_9_universal2.whl (2.2 MB view details)

Uploaded Python 3macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file lib3mf-2.5.0-py3-none-win_amd64.whl.

File metadata

  • Download URL: lib3mf-2.5.0-py3-none-win_amd64.whl
  • Upload date:
  • Size: 857.6 kB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.19

File hashes

Hashes for lib3mf-2.5.0-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 e378470855d634708c6ae7f2f2c6fcd89e4996350de86020849e7b2d51ffe6ac
MD5 63ca7233c80e53857828b2f049dfefc3
BLAKE2b-256 a9b37a844247dfa1f0b24de6fa0425afb808dd1feeef2d05d6335170433c1071

See more details on using hashes here.

File details

Details for the file lib3mf-2.5.0-py3-none-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lib3mf-2.5.0-py3-none-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4c00033c47cfeac93b7daa069fb46e8dea4391d5522b79cd6e9f6af75e33013
MD5 7d6c81e3cc7330c93025cf10b07be253
BLAKE2b-256 88838b987ba95ac0ed9cc7e9c407a579bf43eff6349b1792b4a66c992ce4f76b

See more details on using hashes here.

File details

Details for the file lib3mf-2.5.0-py3-none-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for lib3mf-2.5.0-py3-none-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f7dc57ea22214fa92dac728ba66e58c4b24b775d467888262a820338d7d84145
MD5 74286e7e65fe93082868e5c6d9045669
BLAKE2b-256 048747504d69f0f36841670d12ce3fe1668025bad74d83ed361ead378f626fed

See more details on using hashes here.

Supported by

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