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
8e81de40
Commit
8e81de40
authored
Nov 07, 2016
by
Jan
Browse files
Fixed error with VS2013
parent
dd91155f
Pipeline
#3554
passed with stage
in 80 minutes and 19 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/Unittests/unittests_trimesh_others.cc
View file @
8e81de40
...
...
@@ -164,7 +164,7 @@ TEST_F(OpenMeshOthers, CalcDihedralAngre ) {
EXPECT_EQ
(
0.0
,
mesh_
.
calc_dihedral_angle
(
eh
)
)
<<
"Wrong Dihedral angle!"
<<
std
::
endl
;
// Modify point
Mesh
::
Point
tmp
=
(
Mesh
::
Point
(
0.0
,
0.0
,
-
1.0
)
+
Mesh
::
Point
(
1.0
,
1.0
,
-
1.0
)
)
*
static_cast
<
typename
Mesh
::
Point
::
value_type
>
(
0.5
);
Mesh
::
Point
tmp
=
(
Mesh
::
Point
(
0.0
,
0.0
,
-
1.0
)
+
Mesh
::
Point
(
1.0
,
1.0
,
-
1.0
)
)
*
static_cast
<
Mesh
::
Point
::
value_type
>
(
0.5
);
mesh_
.
point
(
vhandle
[
2
])
=
tmp
;
double
difference
=
fabs
(
1.36944
-
mesh_
.
calc_dihedral_angle
(
eh
)
);
...
...
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