Update src/Mod/TechDraw/App/Cosmetic.cpp

Co-authored-by: 0penBrain <48731257+0penBrain@users.noreply.github.com>
This commit is contained in:
Uwe
2021-06-04 17:49:57 +02:00
committed by Bernd Hahnebach
parent b817ade2a8
commit f5aea33548

View File

@@ -980,7 +980,7 @@ std::pair<Base::Vector3d, Base::Vector3d> CenterLine::calcEndPoints(DrawViewPart
bool CenterLine::Circulation(Base::Vector3d A, Base::Vector3d B, Base::Vector3d C)
{
// the determinant of this matrix calculates the aread of a triangle, see
// the determinant of this matrix calculates the area of a triangle, see
// https://en.wikipedia.org/wiki/Triangle#Using_coordinates
// a 3x3 matrix would also do the job, but FC supports only 4x4 matrixes
Base::Matrix4D CircMatrix(
@@ -1687,4 +1687,3 @@ bool CosmeticVertex::restoreCosmetic(void)
return result;
}