タグ付けされた質問 「rectangles」

22
2つの長方形が互いに重なり合っているかどうかを判断しますか?
ユーザーから次の入力(2〜5の間)を作成するC ++プログラムを作成しようとしています。高さ、幅、x位置、y位置。これらの長方形はすべて、x軸とy軸に平行に存在します。つまり、すべてのエッジの勾配は0または無限大になります。 私はこの質問で述べられていることを実装しようとしましたが、あまり運がありません。 私の現在の実装は次のことを行います: // Gets all the vertices for Rectangle 1 and stores them in an array -> arrRect1 // point 1 x: arrRect1[0], point 1 y: arrRect1[1] and so on... // Gets all the vertices for Rectangle 2 and stores them in an array -> arrRect2 // rotated …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.