lhg 发表于 6 天前

PolarPoint() 函数没有
AcGePoint3d AlignmentPt = PolarPoint(pt, dDist, dTextSize * 1.0);

gzxl 发表于 6 天前

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);
}

lhg 发表于 5 天前

多谢了多谢了
页: 1 [2]
查看完整版本: ARX 曲线文字