方法

GskPathBuilderrel_conic_to

自:4.14

声明 [源码]

void
gsk_path_builder_rel_conic_to (
  GskPathBuilder* self,
  float x1,
  float y1,
  float x2,
  float y2,
  float weight
)

描述 [源码]

从当前点添加一个圆锥曲线到(x2, y2),带有给定的weight,(x1, y1)为控制点。

所有坐标都相对于当前点给出。

这是gsk_path_builder_conic_to()的相对版本。

自:4.14

参数

x1

类型: float

控制点的X偏移量。

y1

类型: float

控制点的Y偏移量。

x2

类型: float

曲线末端的X偏移量。

y2

类型: float

曲线末端的Y偏移量。

weight

类型: float

曲线权重,必须大于零。