You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TigerKat 3b0a161bd3 Added geo_edit.py as a simple command line tool for modifying .geo files. 5 years ago
LICENSE Initial commit 5 years ago
README.md Implemented reading and writing of tex_idx and AltPivotInfo. 5 years ago
bones.py Initial import. 5 years ago
geo.py Added geo_edit.py as a simple command line tool for modifying .geo files. 5 years ago
geo_edit.py Added geo_edit.py as a simple command line tool for modifying .geo files. 5 years ago
polygrid.py Now rebuilds the PolyGrid data when writing a .geo file. 5 years ago
stl_dump.py Added geo_edit.py as a simple command line tool for modifying .geo files. 5 years ago
util.py Now rebuilds the PolyGrid data when writing a .geo file. 5 years ago
vec_math.py Now rebuilds the PolyGrid data when writing a .geo file. 5 years ago

README.md

geopy

Python tools for manipulating .geo files. The long term plan is to be able to export .geos direct from Blender.

geo.py

Contains the Geo class, which represents the contents of .geo files. Can be run to test the reading and writing functionality.

geo.py <infile.geo> [<outfile.geo>]

If only an input .geo file is specified, it will read the input and dump the contents of the .geo to the console.

If an output .geo file is specified, it will read the input .geo file, and write the contents to the output as a new .geo file.

stl_dump.py

Dumps the meshes of a .geo file to .stl files. Used for testing and validation, as .stl isn't useful for games.

stl_dump.py <file.geo>

Dumps all the meshes contained in <file.geo> to <geo_name>/<model_name.stl>. <geo_name> and <model_name> are read from the .geo.

##Known issues:

  • Not all structures are regenerated when writing a .geo file. (PolyGrid and Reductions)