Pos (位置)

class Pos(x, y)

基类:object

点坐标

Attributes Summary

x

x 坐标

y

y 坐标

Attributes Documentation

x

x 坐标

返回

x 坐标

返回类型

float

实际案例

>>> import opt
>>> pos = opt.Pos(1, 2)
>>> print(pos.x)
1
y

y 坐标

返回

y 坐标

返回类型

float

实际案例

>>> import opt
>>> pos = opt.Pos(1, 2)
>>> print(pos.y)
2