点中のすべての点が同じセット内の最初の 3 つの非同一線上の点の許容値内にある場合は True を返します。1、2、または 3 つの点のリストは自動的に True を返します。一致または同一線上の(許容値内の)点のセットも True を返します。
coplanarPoints? ( points As List, _
tolerance As Number ) As Boolean
| 引数 | [タイプ] | 説明 |
|---|---|---|
| points | [一覧] | テストする点のセットを設定します。 |
| tolerance | [数] | 点が平面から外れることが許容される距離です。 |
coplanarPoints?({point(0,0,0),point(1,2,0),point(4,5,0),point(5,6,0.25),point(7,8,-0.25)},0.5)
--> True
coplanarPoints?({point(0,0,0),point(1,2,0),point(4,5,0),point(5,6,0.25),point(7,8,-0.25)},0.1)
--> False