本文整理汇总了C++中ON_Curve::Rotate方法的典型用法代码示例。如果您正苦于以下问题:C++ ON_Curve::Rotate方法的具体用法?C++ ON_Curve::Rotate怎么用?C++ ON_Curve::Rotate使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ON_Curve
的用法示例。
在下文中一共展示了ON_Curve::Rotate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: UnrotateHatch
static void UnrotateHatch(ON_Hatch* hatch)
{
double a = arbaxisRotation(hatch->Plane());
ON_Plane& plane = *(ON_Plane*)(&hatch->Plane());
if(fabs(a) > ON_ZERO_TOLERANCE)
{
plane.Rotate(-a, plane.zaxis);
for(int i = 0; i < hatch->LoopCount(); i++)
{
ON_Curve* pC = (ON_Curve*)hatch->Loop(i)->Curve();
pC->Rotate(a, ON_zaxis, ON_origin);
}
hatch->SetPatternRotation(hatch->PatternRotation()+a);
}
ON_3dPoint P;
plane.ClosestPointTo(ON_origin, &P.x, &P.y);
if(fabs(P.x) > ON_ZERO_TOLERANCE ||fabs(P.y) > ON_ZERO_TOLERANCE ||fabs(P.z) > ON_ZERO_TOLERANCE)
{
ON_2dVector V(-P.x, -P.y);
for(int i = 0; i < hatch->LoopCount(); i++)
{
ON_Curve* pC = (ON_Curve*)hatch->Loop(i)->Curve();
pC->Translate(V);
}
P = plane.PointAt(P.x, P.y);
plane.origin = P;
}
}