共享单车大洗牌,一柱擎天的ofo要“泄”了?
百度 未来一周西南地区雨雾交杂,气象专家提醒群众朋友出行需注意交通安全,关注最新天气预报,如遇大雾天气减速慢行。形状
create_annular_shape
function Shape.create_annular_shape(in_radius: number, out_radius: number)
-> Shape
创建环形区域
@param in_radius
— 内半径
@param out_radius
— 外半径
create_circular_shape
function Shape.create_circular_shape(radius: number)
-> Shape
创建圆形区域
@param radius
— 半径
create_rectangle_shape
function Shape.create_rectangle_shape(width: number, length: number, angle: number)
-> Shape
创建矩形区域
@param width
— 宽度
@param length
— 长度
@param angle
— 角度
create_sector_shape
function Shape.create_sector_shape(radius: number, angle: number, direction: number)
-> Shape
扇形
@param radius
— 半径
@param angle
— 角度
@param direction
— 方向
get_by_handle
function Shape.get_by_handle(py_shape: py.Shape)
-> Shape
handle
py.Shape
形状
type
string