CAM: fix too long comments that are problematic for precommit

This commit is contained in:
Adrian Insaurralde Avalos
2024-08-26 15:09:36 -04:00
parent cd6c1d9aa2
commit 261ef09348
3 changed files with 221 additions and 111 deletions

View File

@@ -228,12 +228,12 @@ namespace geoff_geometry {
return (p.ok)?Point(p.x + r * cos(angle), p.y + r * sin(angle)) : INVALID_POINT;
}
// ***************************************************************************************************************************************
// clines
// ***************************************************************************************************************************************
//const CLine horiz(Point(0, 0), 1, 0); // define global horizontal line
// ***************************************************************************************************************************************
// clines
// ***************************************************************************************************************************************
// const CLine horiz(Point(0, 0), 1, 0); // define global horizontal line
double CLine::c() {
double CLine::c() {
// returns c for ax + by + c = 0 format (peps format where needed)
return (v.getx() * p.y - v.gety() * p.x);
}