mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The reason of this problem is in wrong work of classifier algorithm (see the message ~0080992 to the issue #30354). Therefore, the algorithm of IntTools_FClass2d class has been improved. Namely, now orientation of the polygon is computed from area-criterion instead of angle. As result, some simplification of the method IntTools_FClass2d::Init(...) has been made. <!break> 1. New constructor has been added to the class CSLib_Class2d. It allows applying TColgp_SequenceOfPnt2d. 2. DRAW-commands "addpolygonnode" and "polygonprops" have been created. They are covered by the test case "tests/geometry/2dpolygon/A1". 3. New method Poly::PolygonProperties(...) has been created. See help for detailed information. 4. New testgrid "lowalgos classifier" has been created.
21 lines
602 B
Plaintext
21 lines
602 B
Plaintext
polygon2d result 3 0 0 1 0 0 1
|
|
polygonprops result -area anArea1 -perimeter aPerimeter1
|
|
|
|
checkreal Area1 [dval anArea1] 0.5 1.0e-14 0.0
|
|
checkreal Perimeter1 [dval aPerimeter1] [expr 2 + sqrt(2)] 1.0e-7 0.0
|
|
|
|
smallview -2D-
|
|
don result
|
|
2dfit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}_nc.png
|
|
|
|
addpolygonnode result 0 0
|
|
polygonprops result -area anArea2 -perimeter aPerimeter2
|
|
|
|
checkreal Area2 [dval anArea2] 0.5 1.0e-14 0.0
|
|
checkreal Perimeter2 [dval aPerimeter2] [expr 2 + sqrt(2)] 1.0e-7 0.0
|
|
|
|
smallview -2D-
|
|
don result
|
|
2dfit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}_c.png |