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()
相关推荐
这个人懒得名字都没写3 小时前
Python包管理新纪元:uv
python·conda·pip·uv
有泽改之_3 小时前
leetcode146、OrderedDict与lru_cache
python·leetcode·链表
是毛毛吧3 小时前
边打游戏边学Python的5个开源项目
python·开源·github·开源软件·pygame
暮乘白帝过重山4 小时前
ArkTS ForEach 参数解析:组件与键值生成器
开发语言·数据库
脸红ฅฅ*的思春期4 小时前
免杀对抗—WinDbg查看Windows内存
windows·windbg·windows内核·windows内存查看
LiamTuc4 小时前
Java构造函数
java·开发语言
三途河畔人4 小时前
Pytho基础语法_运算符
开发语言·python·入门
Benmao⁢4 小时前
C语言期末复习笔记
c语言·开发语言·笔记·leetcode·面试·蓝桥杯
adsadswee4 小时前
Qt 样式与 QLinearGradient 渐变详解
开发语言·qt·qt样式表·qlineargradient·qss渐变效果
花月C4 小时前
个性化推荐:基于用户的协同过滤算法
开发语言·后端·算法·近邻算法