ここでは、正方形に内接する最大のルーロー三角形の面積を見てみましょう。正方形の辺は「a」です。ルーローの三角形の高さは h です。
ルーロー三角形の高さは a と同じです。したがって、a=hです。したがって、ルーロー三角形の面積は -
#include <iostream> #include <cmath> using namespace std; float areaReuleaux(float a) { //side of square is a if (a < 0) //if a is negative it is invalid return -1; float area = ((3.1415 - sqrt(3)) * (a) * (a))/2; return area; } int main() { float side = 8; cout << "Area of Reuleaux Triangle: " << areaReuleaux(side); }
Area of Reuleaux Triangle: 45.1024となります。
以上が正方形内の最大のレイリー三角形は何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。