pyautocad获得所选圆弧的弧长总和

python 复制代码
# total_arc_length_calculator.py
from pyautocad import Autocad, APoint
import math
import time

def get_selected_arcs(acad, doc):
    """
    获取用户选择的圆弧对象
    
    Args:
        acad: AutoCAD应用程序对象
        doc: AutoCAD文档对象
    
    Returns:
        list: 选中的圆弧对象列表
    """
    try:
        # 提示用户选择对象
        print("请选择圆弧对象...")
        
        # 使用时间戳创建唯一的选择集名称
        selection_set_name = f"ArcSelection_{int(time.time())}"
        selection_set = doc.SelectionSets.Add(selection_set_name)
        selection_set.SelectOnScreen()
        
        # 筛选出圆弧对象
        arcs = []
        if selection_set.Count > 0:
            for i in range(selection_set.Count):
                try:
                    entity = selection_set.Item(i)
                    if entity.ObjectName == "AcDbArc":
                        arcs.append(entity)
                except Exception as e:
                    print(f"检查对象时出错: {e}")
                    continue
            
            print(f"共选择 {selection_set.Count} 个对象,其中 {len(arcs)} 个为圆弧")
        else:
            print("未选择任何对象")
        
        # 清理选择集
        selection_set.Delete()
        
        return arcs
        
    except Exception as e:
        print(f"选择对象时出错: {e}")
        return []

def calculate_arc_length(arc):
    """
    计算单个圆弧的弧长
    
    Args:
        arc: AutoCAD Arc对象
    
    Returns:
        float: 圆弧的弧长
    """
    try:
        # 获取基本属性
        radius = arc.Radius
        start_angle = arc.StartAngle
        end_angle = arc.EndAngle
        
        # 计算弧长
        if end_angle >= start_angle:
            angle_diff = end_angle - start_angle
        else:
            angle_diff = (2 * math.pi - start_angle) + end_angle
            
        arc_length = radius * angle_diff
        return arc_length
    except Exception as e:
        print(f"计算圆弧弧长时出错: {e}")
        return 0

def calculate_total_arc_length(arcs):
    """
    计算所有圆弧的弧长总和
    
    Args:
        arcs: 圆弧对象列表
    
    Returns:
        float: 所有圆弧的弧长总和
    """
    total_length = 0
    for i, arc in enumerate(arcs, 1):
        length = calculate_arc_length(arc)
        total_length += length
        print(f"第 {i} 个圆弧弧长: {length:.2f}")
    
    return total_length

def main():
    """
    主函数 - 计算选中圆弧的弧长总和
    """
    # 连接到正在运行的 AutoCAD
    try:
        acad = Autocad(create_if_not_exists=True)
        doc = acad.doc
        print(f"成功连接到 AutoCAD 文档: {doc.Name}")
    except Exception as e:
        print("无法连接到 AutoCAD:", e)
        return

    try:
        # 获取用户选择的圆弧
        selected_arcs = get_selected_arcs(acad, doc)
        
        if not selected_arcs:
            print("没有选择有效的圆弧对象")
            return
        
        # 计算所有圆弧的弧长总和
        total_length = calculate_total_arc_length(selected_arcs)
        
        print(f"\n总共选择了 {len(selected_arcs)} 个圆弧")
        print(f"所有圆弧的弧长总和为: {total_length:.2f}")
        
    except Exception as e:
        print(f"处理过程中发生错误: {e}")

if __name__ == "__main__":
    main()
相关推荐
我是伪码农5 分钟前
小程序100-125
开发语言·小程序·php
weixin_4467291613 分钟前
注解和反射
java·开发语言
alphaTao15 分钟前
LeetCode 每日一题 2026/5/18-2026/5/24
python·leetcode
徐安安_ye116 分钟前
FlashAttention学习路线:从调API到写算子,你该走哪条路
python·学习
এ慕ོ冬℘゜19 分钟前
JS 前端基础高频面试题
开发语言·前端·javascript
凯瑟琳.奥古斯特21 分钟前
常见加密算法及应用
java·开发语言·网络·网络协议·职场和发展
Dxy123931021625 分钟前
JS列表获取指定范围值的 N 种方法
开发语言·javascript·ecmascript
froginwe1127 分钟前
Memcached CAS 命令详解
开发语言
ВаΙΙаd34 分钟前
Windows文件夹共享
windows·经验分享
IT策士34 分钟前
Django 从 0 到 1 打造完整电商平台:商品搜索
后端·python·django