How to extract material information when importing OBJ files
Posted: 05 Mar 2020, 13:02
Hi,
I am using CAD VCL import library to read different geometry format files for a Delphi application.
for .obj format I am using Tsg3DNavigator as follows:
My problem is that the material name is an empty string instead of the specified material in the .mtl file.
I can see using break points inside N3D.LoadFromFile(MyFileName) that .mtl file is detected and the material information is stored somewhere in GLFileOBJ unit in TGLOBJVectorFile.LoadFromStream(aStream: TStream).
So the question is how to access that information from Tsg3DNavigator class.
Regards, carlos
P.S. I used the above implementation to import 3DS format and material information was correctly attached to the triangles.
I am using CAD VCL import library to read different geometry format files for a Delphi application.
for .obj format I am using Tsg3DNavigator as follows:
Code: Select all
N3D := Tsg3DNavigator.Create(nil);
N3D.LoadFromFile(MyFileName);
for i := 0 to N3D.GLFreeForm.MeshObjects.Count-1 do
begin
CurrMeshObject := N3D.GLFreeForm.MeshObjects[i];
MaterialName := CurrMeshObject.FaceGroups.Items[0].MaterialName;
vTrianglesList := CurrMeshObject.ExtractTriangles;
for I := 0 to (vTrianglesList.Count div 3) - 1 do
begin
v1 := Vect2FPoint(vTrianglesList[I*3]);
v2 := Vect2FPoint(vTrianglesList[I*3+1]);
v3 := Vect2FPoint(vTrianglesList[I*3+2]);
// here I just create a new triangle in my application
// using vertices v1, v2, v3 and MaterialName
end;
end;
I can see using break points inside N3D.LoadFromFile(MyFileName) that .mtl file is detected and the material information is stored somewhere in GLFileOBJ unit in TGLOBJVectorFile.LoadFromStream(aStream: TStream).
So the question is how to access that information from Tsg3DNavigator class.
Regards, carlos
P.S. I used the above implementation to import 3DS format and material information was correctly attached to the triangles.