本文整理汇总了C++中GetPathData函数的典型用法代码示例。如果您正苦于以下问题:C++ GetPathData函数的具体用法?C++ GetPathData怎么用?C++ GetPathData使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了GetPathData函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: AllocExclusive
// closes the current sub-path
void wxGraphicsPath::CloseSubpath()
{
AllocExclusive();
GetPathData()->CloseSubpath();
}
示例2: GetPathData
// gets the last point of the current path, (0,0) if not yet set
void wxGraphicsPath::GetCurrentPoint( wxDouble* x, wxDouble* y) const
{
GetPathData()->GetCurrentPoint(x,y);
}
示例3: GetPathData
bool wxGraphicsPath::Contains( wxDouble x, wxDouble y, int fillStyle ) const
{
return GetPathData()->Contains(x,y,fillStyle);
}