여기서는 아래와 같이 로 삼각형의 면적을 계산하는 방법을 살펴보겠습니다. Reuleaux 삼각형은 내부에 하나의 정삼각형이 있습니다. 높이가 h라고 가정하면 이 모양은 세 개의 원의 교차로 만들어집니다.
세 개의 원형 섹터가 있습니다. 각 섹터의 면적은 -
정삼각형의 넓이는 세 번 더하기 때문에 빼야 합니다. 따라서 최종 영역은 -
예시
#include <iostream> #include <cmath> using namespace std; float areaReuleaux(float h) { if (h < 0) //if h is negative it is invalid return -1; float area = ((3.1415 - sqrt(3)) * h * h)/2; return area; } int main() { float height = 6; cout << "Area of Reuleaux Triangle: " << areaReuleaux(height); }
출력
Area of Reuleaux Triangle: 25.3701