coplanarPoints?()

概要

を返します。 points points のすべての同じセット内の最初の 3 つの同一線上にない points の許容差内にある場合は True をクリックします。 1、2、または 3 点の list 自動 True を返します。 points 一致または同一線上の許容範囲設定値の範囲内() True を返します。

構文

coplanarPoints? ( points As List, _
                  tolerance As Number ) As Boolean 
引数 [タイプ] 説明
points List テストする points を設定します。
tolerance Number points [平面から外れることが許容される距離を指定します。

例 1

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 

例 2

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