Skip to content

Instantly share code, notes, and snippets.

View Exitcode-01's full-sized avatar
🤡

Miracle_Walker Exitcode-01

🤡
  • Garryton University
  • Garryton
View GitHub Profile
@Exitcode-01
Exitcode-01 / ply2obj.py
Created March 27, 2024 15:33 — forked from randomize/ply2obj.py
Python script to convert *.ply to *.obj (3D formats)
'''
Simple script to convert ply to obj models
'''
from argparse import ArgumentParser
from plyfile import PlyData
def main():
parser = ArgumentParser()