As of SU2025, there is a method to check if 2 adjacent faces are coplanar: `Face#coplanar_with?`. I found that in many occasions, **this method is not reliable and anyway not more reliable** than the previous workarounds: - test if the scalar product of normals is `> 0.9999999991` (know as thomthom magic value) - check if the face planes are identical Here is a short video illustrating a real case. The faces are not particularly tiny (2.5 cm x 3.5cm). `Face#coplanar_with?` return `true` whereas: - the scalar product of normals is only `0.9999987255726032` - the face planes are different - the faces are actually NOT coplanar in the model. Deleting the common edge does erase the faces I attach the video and the model https://github.com/user-attachments/assets/41df5d56-63e4-4630-9b93-3b2e8d1d974a [Face_coplanar_with.zip](https://github.com/user-attachments/files/26166205/Face_coplanar_with.zip)
As of SU2025, there is a method to check if 2 adjacent faces are coplanar:
Face#coplanar_with?.I found that in many occasions, this method is not reliable and anyway not more reliable than the previous workarounds:
> 0.9999999991(know as thomthom magic value)Here is a short video illustrating a real case. The faces are not particularly tiny (2.5 cm x 3.5cm).
Face#coplanar_with?returntruewhereas:0.9999987255726032I attach the video and the model
Bug.Face.coplanar.with.mp4
Face_coplanar_with.zip