コード例 #1
0
 public bool IsCoplanarTo(Circle circle)
 {
     return(Plane.smethod_0(circle.Center, circle.NormalVector, this));
 }
コード例 #2
0
 public bool IsCoplanarTo(Ellipse ellipse)
 {
     return(Plane.smethod_0(ellipse.Center, ellipse.NormalVector, this));
 }
コード例 #3
0
ファイル: Edge.cs プロジェクト: 1833183060/autocad-dev
 public bool IsCoplanarTo(Ellipse ellipse)
 {
     return(Plane.smethod_0(ellipse.Center, ellipse.NormalVector, this.StartPoint) && Plane.smethod_0(ellipse.Center, ellipse.NormalVector, this.EndPoint));
 }
コード例 #4
0
 public bool IsCoplanarTo(Triangle triangle)
 {
     return(Plane.smethod_0(triangle.Vertex1, triangle.NormalVector, this));
 }
コード例 #5
0
ファイル: Edge.cs プロジェクト: 1833183060/autocad-dev
 public bool IsCoplanarTo(Circle circle)
 {
     return(Plane.smethod_0(circle.Center, circle.NormalVector, this.StartPoint) && Plane.smethod_0(circle.Center, circle.NormalVector, this.EndPoint));
 }
コード例 #6
0
ファイル: Edge.cs プロジェクト: 1833183060/autocad-dev
 public bool IsCoplanarTo(Triangle triangle)
 {
     return(Plane.smethod_0(triangle.Vertex1, triangle.NormalVector, this.StartPoint) && Plane.smethod_0(triangle.Vertex1, triangle.NormalVector, this.EndPoint));
 }
コード例 #7
0
 public bool IsCoplanarTo(Ellipse ellipse)
 {
     return(Plane.smethod_0(ellipse.Center, ellipse.NormalVector, this.point_0) && ellipse.NormalVector.IsOrthogonalTo(this.vector3d_0));
 }
コード例 #8
0
 public bool IsCoplanarTo(Circle circle)
 {
     return(Plane.smethod_0(circle.Center, circle.NormalVector, this.point_0) && circle.NormalVector.IsOrthogonalTo(this.vector3d_0));
 }
コード例 #9
0
 public bool IsCoplanarTo(Triangle triangle)
 {
     return(Plane.smethod_0(triangle.Vertex1, triangle.NormalVector, this.point_0) && triangle.NormalVector.IsOrthogonalTo(this.vector3d_0));
 }