|
CroSecPropertiesintersectXY Method
|
Returns the intersection point of line from p0 to p1 with xy-plane or null if no intersection exists.
Namespace:
KarambaCommon.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static Nullable<Point3> intersectXY(
Point3 p0,
Point3 p1
)
Public Shared Function intersectXY (
p0 As Point3,
p1 As Point3
) As Nullable(Of Point3)
public:
static Nullable<Point3> intersectXY(
Point3 p0,
Point3 p1
)
static member intersectXY :
p0 : Point3 *
p1 : Point3 -> Nullable<Point3>
Parameters
- p0
- Type: Karamba.GeometryPoint3
First point of the line. - p1
- Type: Karamba.GeometryPoint3
Second point of the line.
Return Value
Type:
NullablePoint3intersection point.
See Also