Skip to main content

An obj model loader for Python

Project description

PyObjLoader

An obj model loader for python. Ideal for 3D data and graphics. Includes object and group trees, and automatic normal, tangent, and bitangent calculations.

Setup

Run the install command.

pip install pyobjloader

Import

Import the load function

from pyobjloader import load_model 

Use

To get the numpy array of vertices, first place the .obj somewhere in your project file (example shown)

project
│ main.py
│ my_model_directory
└─── my_model.obj

Then pass the file path into the load function

model = load_model('my_model_directory/my_model.obj')
vertex_data = model.vertex_data

Examples for how to access more data from the model are in the github examples folder.

Format

The format of the vertex data for an obj is stored in the model:

# ModernGL Specifications
vertex_format = model.format  # ie. '3f 2f 3f'
vertex_attribs = model.attribs  # ie. ['in_position', 'in_uv', 'in_normal']

Possible attributes include ['in_position', 'in_uv', 'in_normal'] and ['in_position', 'in_normal'] (Normals are calculated if not given)

Example with ModernGL

Here is an example VAO made with ModernGL and PyObjLoader

# Make sure you have a context and shader program (see moderngl docs)
ctx = ...
program = ...

# Load the model using pyobjloader
model = load_model('my_model_directory/my_model')
vertex_data = model.vertex_data

# Make a vertex buffer object with the vertex data
vbo = ctx.buffer(vertex_data)

# Create a vertex array object
vao = ctx.vertex_data(program, [(vbo, model.format, *model.attribs)])

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

pyobjloader-0.0.7.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

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

pyobjloader-0.0.7-py3-none-any.whl (5.5 kB view details)

Uploaded Python 3

File details

Details for the file pyobjloader-0.0.7.tar.gz.

File metadata

  • Download URL: pyobjloader-0.0.7.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for pyobjloader-0.0.7.tar.gz
Algorithm Hash digest
SHA256 61d8fe20ff8a48524bbac63dd7049153238d8fd5a63fffa0d0e16d9f43ab8d9d
MD5 7efb8e87a7411e6f94336754d4933b9e
BLAKE2b-256 2e028ef7aac10e2ca883ec95f09d686cdd51786af46a3cfc86a67cc4b8abd6fa

See more details on using hashes here.

File details

Details for the file pyobjloader-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: pyobjloader-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 5.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for pyobjloader-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 df69797cc3883a8cf830c2e0f1d63a7cce2528412e4f28d429477ca2fee03374
MD5 895b74c3ee8acc802755117af5af5ca0
BLAKE2b-256 5cfff06973d43ae913e1346ead7ab44d3ee8be567695b302768b40fad08eee8b

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