Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/geometry/normal_cycle.cpp')
-rwxr-xr-xsource/blender/freestyle/intern/geometry/normal_cycle.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/blender/freestyle/intern/geometry/normal_cycle.cpp b/source/blender/freestyle/intern/geometry/normal_cycle.cpp
index b456ced8331..3a697d54731 100755
--- a/source/blender/freestyle/intern/geometry/normal_cycle.cpp
+++ b/source/blender/freestyle/intern/geometry/normal_cycle.cpp
@@ -82,22 +82,6 @@ namespace OGF {
}
- void NormalCycle::accumulate_dihedral_angle(
- const Vec3r& edge, double beta, double neigh_area
- ) {
- Vec3r e = edge ;
- e.normalize() ;
-
- double s = edge.norm() * beta * neigh_area ;
-
- M_[0] += s * e.x() * e.x() ;
- M_[1] += s * e.x() * e.y() ;
- M_[2] += s * e.y() * e.y() ;
- M_[3] += s * e.x() * e.z() ;
- M_[4] += s * e.y() * e.z() ;
- M_[5] += s * e.z() * e.z() ;
- }
-
//_________________________________________________________
}