Skip to content
GitLab
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
5e9f74d7
Commit
5e9f74d7
authored
Dec 08, 2016
by
Jan Möbius
Browse files
Merge branch 'fix_warning' into 'master'
size_t int warning See merge request
!109
parents
5bff49b6
3b0ee931
Pipeline
#3838
passed with stage
in 42 minutes and 7 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/OpenMesh/Core/IO/writer/OBJWriter.cc
View file @
5e9f74d7
...
...
@@ -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
));
vh
=
VertexHandle
(
static_cast
<
int
>
(
i
));
t
=
_be
.
texcoord
(
vh
);
texMap
[
t
]
=
i
;
texMap
[
t
]
=
static_cast
<
int
>
(
i
)
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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