Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenFlipper-Free
Plugin-PropertyVis
Commits
31db2e8c
Commit
31db2e8c
authored
Feb 14, 2020
by
Max Lyon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use face normals to compute direction for vec2
parent
cd820f70
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
OpenMesh/OMPropertyVisualizerVector2T_impl.hh
OpenMesh/OMPropertyVisualizerVector2T_impl.hh
+1
-1
No files found.
OpenMesh/OMPropertyVisualizerVector2T_impl.hh
View file @
31db2e8c
...
...
@@ -405,7 +405,7 @@ void OMPropertyVisualizerVector2<MeshT, VectorType>::visualizeHalfedgePropAsStro
typename
MeshT
::
Point
v1
=
OMPropertyVisualizer
<
MeshT
>::
mesh
->
point
(
vh0
)
+
0.5
*
(
OMPropertyVisualizer
<
MeshT
>::
mesh
->
point
(
vh1
)
-
OMPropertyVisualizer
<
MeshT
>::
mesh
->
point
(
vh0
));
VectorType
v
=
OMPropertyVisualizer
<
MeshT
>::
mesh
->
property
(
prop
,
*
he_it
);
ACG
::
Vec3d
normal
=
OMPropertyVisualizer
<
MeshT
>::
mesh
->
normal
(
*
he_it
);
ACG
::
Vec3d
normal
=
OMPropertyVisualizer
<
MeshT
>::
mesh
->
normal
(
OMPropertyVisualizer
<
MeshT
>::
mesh
->
face_handle
(
*
he_it
)
)
;
if
(
vectorWidget
->
normalize
->
isChecked
()
&&
v
.
sqrnorm
()
>
1e-12
)
v
.
normalize
();
...
...
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