AcGePoint3d AlignmentPt = PolarPoint(pt, dDist, dTextSize * 1.0);
lhg 发表于 2025-6-1 21:20
PolarPoint() 函数没有
AcGePoint3d AlignmentPt = PolarPoint(pt, dDist, dTextSize * 1.0);
张帆老师教程里面的
AcGePoint3d CGePointUtil::PolarPoint( const AcGePoint3d &basePoint, double angle, double length )
{
double x = basePoint.x + length * cos(angle);
double y = basePoint.y + length * sin(angle);
return AcGePoint3d(x, y, basePoint.z);
} 多谢了多谢了
页:
1
[2]