Rect3D.Contains メソッド
定義
オーバーロード
Contains(Point3D) |
指定した Point3D が、そのエッジも含め、Rect3D 内にあるかどうかを示す値を取得します。Gets a value that indicates whether a specified Point3D is within the Rect3D, including its edges. |
Contains(Rect3D) |
指定した Point3D が、そのエッジも含め、Rect3D 内にあるかどうかを示す値を取得します。Gets a value that indicates whether a specified Point3D is within the Rect3D, including its edges. |
Contains(Double, Double, Double) |
指定した Point3D が、そのエッジも含め、Rect3D 内にあるかどうかを示す値を取得します。Gets a value that indicates whether a specified Point3D is within the Rect3D, including its edges. |
Contains(Point3D)
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
テストされる点。Point to be tested.
戻り値
指定した点または四角形が、そのエッジも含め、Rect3D 内にある場合は true
、それ以外の場合は false。true
if the specified point or rectangle is within the Rect3D, including its edges; false otherwise.
注釈
Rect3D は、通常、またはの境界を表すために使用され MeshGeometry3D Model3D ます。Rect3D is typically used to represent the bounds of a MeshGeometry3D or Model3D.
適用対象
Contains(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
パラメーター
戻り値
指定した点または四角形が、そのエッジも含め、Rect3D 内にある場合は true
、それ以外の場合は false。true
if the specified point or rectangle is within the Rect3D, including its edges; false otherwise.
注釈
Rect3D は、通常、またはの境界を表すために使用され MeshGeometry3D Model3D ます。Rect3D is typically used to represent the bounds of a MeshGeometry3D or Model3D.
適用対象
Contains(Double, Double, Double)
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
パラメーター
戻り値
指定した点または四角形が、そのエッジも含め、Rect3D 内にある場合は true
。それ以外の場合は false
。true
if the specified point or rectangle is within the Rect3D, including its edges; false
otherwise.
注釈
Rect3D は、通常、またはの境界を表すために使用され MeshGeometry3D Model3D ます。Rect3D is typically used to represent the bounds of a MeshGeometry3D or Model3D.