Skip to main content

An obj model loader for Python

Project description

PyObjLoader

An obj model loader for python. Currently will only return a numpy array of vertices containing position, uv, and normals.

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

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']

Attribute names will always be some combination of 'in_position', 'in_uv', and 'in_normal'. Possible cominations 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.5.tar.gz (4.7 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.5-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pyobjloader-0.0.5.tar.gz
  • Upload date:
  • Size: 4.7 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.5.tar.gz
Algorithm Hash digest
SHA256 a5cb26c9b1f6438cc3954898509839ee3b75e600c33ee6dc7050a86ce59ea9a9
MD5 512430ae7af471c0a4caf9e6a26af084
BLAKE2b-256 b088cbcfba5c2e7842b8f81434871455522a87336d7ddd99befdd87892a44ff7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyobjloader-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 5.1 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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 39cbec400bba5a685d74fbba3b1f332e568c9d64148022a8825cf174bc65fdc6
MD5 dd0a86a6af795eb6261727eecd4dd1ce
BLAKE2b-256 35b12c40ea6987e3c67daa47e006121b9a9e81780b57c4c43da8d2c6699b37dc

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