|
Foxit PDF SDK
|
继承自 Object .
Public 类型 | |
| enum | PathPointType { e_PathPointTypeNormal = 0, e_PathPointTypeStart = 1, e_PathPointTypeMoveTo = 2, e_PathPointTypeLineTo = 3, e_PathPointTypeQuadraticBezierTo = 4, e_PathPointTypeCubicBezierTo = 5, e_PathPointTypeArcTo = 6, e_PathPointTypeClose = 7 } |
| OFD路径类型枚举。 更多... | |
Public 成员函数 | |
| PathPoint () | |
| 构造函数。 | |
| PathPoint (float x, float y, PathPointType type) | |
| 带参数的构造函数。 更多... | |
| PathPoint & | operator= (const PathPoint &other) |
| 赋值操作符。 更多... | |
| void | Set (float x, float y, PathPointType type) |
| 设置值。 更多... | |
Public 属性 | |
| PathPointType | type |
| 路径类型。请参考从 foxit::ofd::graphics::PathPoint::e_PathPointTypeNormal 开始的值, 应该是这些值中的一个。 | |
| float | x |
| x轴方向上的值。 | |
| float | y |
| y轴方向上的值。 | |
此类代表了Path数据点描述信息。
|
inline |
带参数的构造函数。
| [in] | x | x轴方向上的值。 |
| [in] | y | y轴方向上的值。 |
| [in] | type | 路径类型。请参考从 foxit::ofd::graphics::PathPoint::e_PathPointTypeNormal 开始的值, 应该是这些值中的一个。 |
赋值操作符。
| [in] | other | 另一个Path数据点描述信息对象,其值将被赋给当前对象。 |
|
inline |
设置值。
| [in] | x | x轴方向上的值。 |
| [in] | y | y轴方向上的值。 |
| [in] | type | 路径类型。请参考从 foxit::ofd::graphics::PathPoint::e_PathPointTypeNormal 开始的值, 应该是这些值中的一个。 |