Rect3D.Contains メソッド

定義

指定した Point3D が、そのエッジも含め、Rect3D 内にあるかどうかを示す値を取得します。

オーバーロード

Contains(Point3D)

指定した Point3D が、そのエッジも含め、Rect3D 内にあるかどうかを示す値を取得します。

Contains(Rect3D)

指定した Point3D が、そのエッジも含め、Rect3D 内にあるかどうかを示す値を取得します。

Contains(Double, Double, Double)

指定した Point3D が、そのエッジも含め、Rect3D 内にあるかどうかを示す値を取得します。

Contains(Point3D)

指定した Point3D が、そのエッジも含め、Rect3D 内にあるかどうかを示す値を取得します。

public:
 bool Contains(System::Windows::Media::Media3D::Point3D point);
public bool Contains (System.Windows.Media.Media3D.Point3D point);
member this.Contains : System.Windows.Media.Media3D.Point3D -> bool
Public Function Contains (point As Point3D) As Boolean

パラメーター

point
Point3D

テストされる点。

戻り値

Boolean

指定した点または四角形が、そのエッジも含め、Rect3D 内にある場合は true、それ以外の場合は false。

注釈

Rect3D は、通常 MeshGeometry3D 、a または Model3D.

適用対象

Contains(Rect3D)

指定した Point3D が、そのエッジも含め、Rect3D 内にあるかどうかを示す値を取得します。

public:
 bool Contains(System::Windows::Media::Media3D::Rect3D rect);
public bool Contains (System.Windows.Media.Media3D.Rect3D rect);
member this.Contains : System.Windows.Media.Media3D.Rect3D -> bool
Public Function Contains (rect As Rect3D) As Boolean

パラメーター

rect
Rect3D

テストされる Rect3D

戻り値

Boolean

指定した点または四角形が、そのエッジも含め、Rect3D 内にある場合は true、それ以外の場合は false。

注釈

Rect3Dは通常、a または Model3DMeshGeometry3D境界を表すために使用されます。

適用対象

Contains(Double, Double, Double)

指定した Point3D が、そのエッジも含め、Rect3D 内にあるかどうかを示す値を取得します。

public:
 bool Contains(double x, double y, double z);
public bool Contains (double x, double y, double z);
member this.Contains : double * double * double -> bool
Public Function Contains (x As Double, y As Double, z As Double) As Boolean

パラメーター

x
Double

テストされる Point3D の X 軸座標。

y
Double

テストされる Point3D の Y 軸座標。

z
Double

テストされる Point3D の Z 軸座標。

戻り値

Boolean

指定した点または四角形が、そのエッジも含め、Rect3D 内にある場合は true。それ以外の場合は false

注釈

Rect3Dは通常、a または Model3DMeshGeometry3D境界を表すために使用されます。

適用対象