Fix code files encoding to make them all UTF-8
This commit is contained in:
@@ -256,7 +256,7 @@ bool IntersectsBoundaryProfile(const IfcVector3& e0, const IfcVector3& e1, const
|
||||
for( size_t i = 0, bcount = boundary.size(); i < bcount; ++i ) {
|
||||
IfcVector3 b01 = boundary[(i + 1) % bcount] - boundary[i];
|
||||
IfcVector3 b12 = boundary[(i + 2) % bcount] - boundary[(i + 1) % bcount];
|
||||
IfcVector3 b1_side = IfcVector3(b01.y, -b01.x, 0.0); // rotated 90° clockwise in Z plane
|
||||
IfcVector3 b1_side = IfcVector3(b01.y, -b01.x, 0.0); // rotated 90° clockwise in Z plane
|
||||
// Warning: rough estimate only. A concave poly with lots of small segments each featuring a small counter rotation
|
||||
// could fool the accumulation. Correct implementation would be sum( acos( b01 * b2) * sign( b12 * b1_side))
|
||||
windingOrder += (b1_side.x*b12.x + b1_side.y*b12.y);
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
// Microsoft Visual C++ generated include file.
|
||||
// Used by assimp.rc
|
||||
|
||||
// Nächste Standardwerte für neue Objekte
|
||||
//
|
||||
// Next standard values for new objects
|
||||
//
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||
#define _APS_NEXT_RESOURCE_VALUE 101
|
||||
|
||||
Reference in New Issue
Block a user