def
__eq__
(d)
def
__mul__
(, m)
def
__mul__
(, m)
def
__ne__
(d)
def
__reduce__
()
def
__repr__
()
def
angle
()
def
angle
(l)
def
angleTo
(l)
def
center
()
def
dx
()
def
dy
()
def
intersect
(l)
def
intersects
(l, intersectionPoint)
def
isNull
()
def
length
()
def
normalVector
()
def
p1
()
def
p2
()
def
pointAt
(t)
def
setAngle
(angle)
def
setLength
(len)
def
setLine
(x1, y1, x2, y2)
def
setP1
(p1)
def
setP2
(p2)
def
setPoints
(p1, p2)
def
toLine
()
def
toTuple
()
def
translate
(dx, dy)
def
translate
(p)
def
translated
(dx, dy)
def
translated
(p)
def
unitVector
()
def
x1
()
def
x2
()
def
y1
()
def
y2
()
A
QLineFdescribes a finite length line (or line segment) on a two-dimensional surface.QLineFdefines the start and end points of the line using floating point accuracy for coordinates. Use thetoLine()function to retrieve an integer based copy of this line.
![]()
![]()
The positions of the line’s start and end points can be retrieved using the
p1(),x1(),y1(),p2(),x2(),和y2()functions. Thedx()anddy()functions return the horizontal and vertical components of the line, respectively.The line’s length can be retrieved using the
length()function, and altered using thesetLength()function. Similarly,angle()andsetAngle()are respectively used for retrieving and altering the angle of the line. Use theisNull()function to determine whether theQLineFrepresents a valid line or a null line.
intersects()function determines the IntersectionType for this line and a given line, while theangleTo()function returns the angle between the lines. In addition, theunitVector()function returns a line that has the same starting point as this line, but with a length of only 1, while thenormalVector()function returns a line that is perpendicular to this line with the same starting point and length.Finally, the line can be translated a given offset using the
translate()function, and can be traversed using thepointAt()函数。
QLineF
¶
Constructs a null line.
构造
QLineF
object from the given integer-based
line
.
另请参阅
Constructs a line object that represents the line between
p1
and
p2
.
Constructs a line object that represents the line between (
x1
,
y1
) 和 (
x2
,
y2
).
PySide2.QtCore.QLineF.
IntersectType
¶
使用 QLineF::IntersectionType 代替。
|
常量 |
描述 |
|---|---|
|
QLineF.NoIntersection |
Lines do not intersect. |
|
QLineF.UnboundedIntersection |
Lines intersect, but not within the range defined by their lengths. |
|
QLineF.BoundedIntersection |
Lnes intersect within the range defined by their lengths. |
PySide2.QtCore.QLineF.
__reduce__
(
)
¶
PyObject
PySide2.QtCore.QLineF.
__repr__
(
)
¶
PyObject
PySide2.QtCore.QLineF.
angle
(
)
¶
qreal
Returns the angle of the line in degrees.
The return value will be in the range of values from 0.0 up to but not including 360.0. The angles are measured counter-clockwise from a point on the x-axis to the right of the origin (x > 0).
另请参阅
PySide2.QtCore.QLineF.
angle
(
l
)
¶
l
–
QLineF
qreal
注意
此函数被弃用。
Returns the angle (in degrees) between this line and the given
line
, taking the direction of the lines into account. If the lines do not intersect within their range, it is the intersection point of the extended lines that serves as origin (see
UnboundedIntersection
).
|
|
|
When the lines are parallel, this function returns 0 if they have the same direction; otherwise it returns 180.
另请参阅
PySide2.QtCore.QLineF.
angleTo
(
l
)
¶
l
–
QLineF
qreal
Returns the angle (in degrees) from this line to the given
line
, taking the direction of the lines into account. If the lines do not intersect within their range, it is the intersection point of the extended lines that serves as origin (see
UnboundedIntersection
).
The returned value represents the number of degrees you need to add to this line to make it have the same angle as the given
line
, going counter-clockwise.
另请参阅
PySide2.QtCore.QLineF.
center
(
)
¶
Returns the center point of this line. This is equivalent to 0.5 *
p1()
+ 0.5 *
p2()
.
PySide2.QtCore.QLineF.
dx
(
)
¶
qreal
Returns the horizontal component of the line’s vector.
PySide2.QtCore.QLineF.
dy
(
)
¶
qreal
Returns the vertical component of the line’s vector.
PySide2.QtCore.QLineF.
fromPolar
(
length
,
angle
)
¶
length
–
qreal
angle
–
qreal
返回
QLineF
采用给定
length
and
angle
.
The first point of the line will be on the origin.
Positive values for the angles mean counter-clockwise while negative values mean the clockwise direction. Zero degrees is at the 3 o’clock position.
PySide2.QtCore.QLineF.
intersect
(
l
)
¶
l
–
QLineF
(intersectType, intersectionPoint)
注意
此函数被弃用。
使用
intersects()
instead
Returns a value indicating whether or not
this
line intersects with the given
line
.
The actual intersection point is extracted to
intersectionPoint
(if the pointer is valid). If the lines are parallel, the intersection point is undefined.
PySide2.QtCore.QLineF.
intersects
(
l
,
intersectionPoint
)
¶
Returns a value indicating whether or not
this
line intersects with the given
line
.
The actual intersection point is extracted to
intersectionPoint
(if the pointer is valid). If the lines are parallel, the intersection point is undefined.
PySide2.QtCore.QLineF.
isNull
(
)
¶
bool
返回
true
if the line is not set up with valid start and end point; otherwise returns
false
.
PySide2.QtCore.QLineF.
length
(
)
¶
qreal
Returns the length of the line.
另请参阅
PySide2.QtCore.QLineF.
normalVector
(
)
¶
Returns a line that is perpendicular to this line with the same starting point and length.
另请参阅
PySide2.QtCore.QLineF.
__ne__
(
d
)
¶
d
–
QLineF
bool
返回
true
若给定
line
is not the same as
this
line.
A line is different from another line if their start or end points differ, or the internal order of the points is different.
PySide2.QtCore.QLineF.
__eq__
(
d
)
¶
d
–
QLineF
bool
返回
true
若给定
line
is the same as this line.
A line is identical to another line if the start and end points are identical, and the internal order of the points is the same.
PySide2.QtCore.QLineF.
pointAt
(
t
)
¶
t
–
qreal
Returns the point at the parameterized position specified by
t
. The function returns the line’s start point if t = 0, and its end point if t = 1.
PySide2.QtCore.QLineF.
setAngle
(
angle
)
¶
angle
–
qreal
Sets the angle of the line to the given
angle
(in degrees). This will change the position of the second point of the line such that the line has the given angle.
Positive values for the angles mean counter-clockwise while negative values mean the clockwise direction. Zero degrees is at the 3 o’clock position.
另请参阅
PySide2.QtCore.QLineF.
setLength
(
len
)
¶
len
–
qreal
Sets the length of the line to the given
length
.
QLineF
will move the end point -
p2()
- of the line to give the line its new length.
If the line is a null line, the length will remain zero regardless of the length specified.
PySide2.QtCore.QLineF.
setLine
(
x1
,
y1
,
x2
,
y2
)
¶
x1
–
qreal
y1
–
qreal
x2
–
qreal
y2
–
qreal
Sets this line to the start in
x1
,
y1
and end in
x2
,
y2
.
PySide2.QtCore.QLineF.
setPoints
(
p1
,
p2
)
¶
Sets the start point of this line to
p1
and the end point of this line to
p2
.
PySide2.QtCore.QLineF.
toLine
(
)
¶
Returns an integer based copy of this line.
Note that the returned line’s start and end points are rounded to the nearest integer.
另请参阅
QLineF()
PySide2.QtCore.QLineF.
toTuple
(
)
¶
PyObject
PySide2.QtCore.QLineF.
translate
(
dx
,
dy
)
¶
dx
–
qreal
dy
–
qreal
这是重载函数。
Translates this line the distance specified by
dx
and
dy
.
PySide2.QtCore.QLineF.
translated
(
p
)
¶
Returns this line translated by the given
offset
.
PySide2.QtCore.QLineF.
translated
(
dx
,
dy
)
¶
dx
–
qreal
dy
–
qreal
这是重载函数。
Returns this line translated the distance specified by
dx
and
dy
.
PySide2.QtCore.QLineF.
unitVector
(
)
¶
Returns the unit vector for this line, i.e a line starting at the same point as this line with a length of 1.0.
另请参阅
PySide2.QtCore.QLineF.
x1
(
)
¶
qreal
Returns the x-coordinate of the line’s start point.
另请参阅
PySide2.QtCore.QLineF.
x2
(
)
¶
qreal
Returns the x-coordinate of the line’s end point.
另请参阅
PySide2.QtCore.QLineF.
y1
(
)
¶
qreal
Returns the y-coordinate of the line’s start point.
另请参阅