在Sympy中,该函数
包含自身的直线中的最近点。
perpendicular_segment()
用于创建从给定点到给定线的垂直线段。线段的端点为p,而端点为包含自身的直线中的最近点。
用法: Line.perpendicular_segment(p) 参数: p: Point 返回: segment: Segment
范例1:
# import sympy and Point, Line
from sympy import Point, Line
p1, p2, p3 = Point(0, 0), Point(1, 1), Point(0, 2)
l1 = Line(p1, p2)
# using perpendicular_segment() method
perpendicularSegment = l1.perpendicular_segment(p3)
print(perpendicularSegment)
输出:
Segment2D(Point2D(0, 2), Point2D(1, 1))
范例2:
# import sympy and Point3D, Line3D
from sympy import Point3D, Line3D
p1, p2, p3 = Point3D(0, 0, 0), Point3D(1, 1, 1), Point3D(0, 2, 0)
ll1 = Line3D(p1, p2)
# using perpendicular_segment() method
s1 = l1.perpendicular_segment(p3)
perpendicularSegment = l1.perpendicular_segment(p3)
print(perpendicularSegment)
输出:
Segment3D(Point3D(0, 2, 0), Point3D(2/3, 2/3, 2/3))
相关用法
- Python sympy.Mod()用法及代码示例
- Python sympy.S()用法及代码示例
- Python sympy.div()用法及代码示例
- Python sympy.Mul()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.Pow()用法及代码示例
- Python sympy.nP()用法及代码示例
- Python sympy.det()用法及代码示例
- Python sympy.sec()用法及代码示例
- Python sympy RGS用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python sympy.nT()用法及代码示例
- Python sympy.lcm()用法及代码示例
注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python | Sympy Line.perpendicular_segment() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。