Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenMesh
OpenMesh
Commits
cef38aac
Commit
cef38aac
authored
Feb 11, 2016
by
Jan Möbius
Browse files
Fix OBJ material files and face color (Thanks to Sven-Kristofer Pilz for the patch)
(cherry picked from commit
44cb2ebc
)
parent
732bb637
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/OpenMesh/Core/IO/writer/OBJWriter.cc
View file @
cef38aac
...
...
@@ -118,7 +118,7 @@ write(const std::string& _filename, BaseExporter& _be, Options _opt, std::stream
dot
=
_filename
.
find_last_of
(
"."
);
if
(
dot
!=
std
::
string
::
npos
)
objName_
=
objName_
.
substr
(
0
,
dot
-
1
);
objName_
=
objName_
.
substr
(
0
,
dot
);
}
bool
result
=
write
(
out
,
_be
,
_opt
,
_precision
);
...
...
@@ -184,7 +184,7 @@ writeMaterial(std::ostream& _out, BaseExporter& _be, Options _opt) const
for
(
size_t
i
=
0
;
i
<
materialA_
.
size
();
i
++
){
_out
<<
"newmtl "
<<
"mat"
<<
i
<<
'\n'
;
_out
<<
"Ka 0.5000 0.5000 0.5000"
<<
'\n'
;
_out
<<
"Kd "
<<
materialA_
[
i
][
0
]
<<
materialA_
[
i
][
1
]
<<
materialA_
[
i
][
2
]
<<
'\n'
;
;
_out
<<
"Kd "
<<
materialA_
[
i
][
0
]
<<
' '
<<
materialA_
[
i
][
1
]
<<
' '
<<
materialA_
[
i
][
2
]
<<
'\n'
;
_out
<<
"Tr "
<<
materialA_
[
i
][
3
]
<<
'\n'
;
_out
<<
"illum 1"
<<
'\n'
;
}
...
...
@@ -192,7 +192,7 @@ writeMaterial(std::ostream& _out, BaseExporter& _be, Options _opt) const
for
(
size_t
i
=
0
;
i
<
material_
.
size
();
i
++
){
_out
<<
"newmtl "
<<
"mat"
<<
i
<<
'\n'
;
_out
<<
"Ka 0.5000 0.5000 0.5000"
<<
'\n'
;
_out
<<
"Kd "
<<
material_
[
i
][
0
]
<<
material_
[
i
][
1
]
<<
material_
[
i
][
2
]
<<
'\n'
;
;
_out
<<
"Kd "
<<
material_
[
i
][
0
]
<<
' '
<<
material_
[
i
][
1
]
<<
' '
<<
material_
[
i
][
2
]
<<
'\n'
;
_out
<<
"illum 1"
<<
'\n'
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment