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
5cd9448a
Commit
5cd9448a
authored
Dec 07, 2016
by
Max Lyon
Browse files
size_t int warning
parent
5bff49b6
Pipeline
#3831
passed with stage
in 41 minutes
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/OpenMesh/Core/IO/writer/OBJWriter.cc
View file @
5cd9448a
...
...
@@ -273,11 +273,11 @@ write(std::ostream& _out, BaseExporter& _be, Options _opt, std::streamsize _prec
//collect Texturevertices from vertices
if
(
_opt
.
check
(
Options
::
VertexTexCoord
))
{
for
(
in
t
i
=
0
,
nF
=
_be
.
n_faces
();
i
<
nF
;
++
i
)
for
(
size_
t
i
=
0
,
nF
=
_be
.
n_faces
();
i
<
nF
;
++
i
)
{
vh
=
VertexHandle
(
int
(
i
));
t
=
_be
.
texcoord
(
vh
);
texMap
[
t
]
=
i
;
texMap
[
t
]
=
(
int
)
i
;
}
}
...
...
Write
Preview
Supports
Markdown
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