TEC_TO_OBJ is a FORTRAN90 program which can read a TECPLOT ASCII file defining a 3D surface of triangles or quadrilaterals, and write a corresponding Alias OBJ file.
TEC_TO_OBJ can only read a very specific type of TECPLOT ASCII FILE, namely, one in which the spatial dimension is 3, and in which the objects are triangular finite elements.
This means that the first three lines of the TECPLOT file should look something like this:
TITLE = "human.dat created by IVREAD." VARIABLES = "X", "Y", "Z", "R", "G", "B" ZONE N = 64, E = 96, DATAPACKING = POINT, ZONETYPE = FETRIANGLEor
TITLE = "human.dat created by IVREAD." VARIABLES = "X", "Y", "Z", "R", "G", "B" ZONE N = 64, E = 48, DATAPACKING = POINT, ZONETYPE = FEQUADRILATERALwhere the important things are:
The TECPLOT home page is
http://www.tecplot.com/
The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.
TEC_TO_OBJ is available in a FORTRAN90 version.
IVCON, a C++ program which reads an Alias OBJ file and writes out an equivalent file in a variety of formats.
IVREAD, a FORTRAN90 program which reads an Alias OBJ file and write out an equivalent file in a variety of formats.
OBJ, a data directory which contains a description of the Alias OBJ data file format.
OBJ_TO_PLY, a C program which reads an Alias OBJ file and writes a PLY file.
OBJ_IO, a FORTRAN90 library which reads or writes an Alias OBJ file.
OBJ2OPENGL, a PERL script which converts an Alias OBJ file to a C/C++ include file appropriate for use with Open GL;
PLY_TO_OBJ, a C program which reads a PLY 3D graphics file and writes an equivalent OBJ graphics file.
TEC, a data directory which contains a description of TECPLOT files.
TEC_IO, a FORTRAN90 library which reads or writes a TECPLOT file definite a finite element dataset.
TEC_TO_FEM, a FORTRAN90 program which convert a TECPLOT graphics file defining a finite element dataset into a set of FEM files.
TEC_TO_OBJ2, a FORTRAN90 program which is a minor revision of TEC_TO_OBJ and which tries to read data from multiple zones in a TECPLOT file and write it to an OBJ file.
TEC_WRITE, a FORTRAN90 which can write TEC files.
HUMANOID_TRI is a TECPLOT file describing a humanoid shape using finite element triangles.
HUMANOID_QUAD is a TECPLOT file describing a humanoid shape using finite element quadrilaterals.
You can go up one level to the FORTRAN90 source codes.