明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1773|回复: 1

关于角度的问题

[复制链接]
发表于 2003-6-8 13:04:00 | 显示全部楼层 |阅读模式
使用PolarPoint方法可以找出与给定点成指定角度和指定距离的点
Sub Example_PolarPoint()
    ' 这个示例演示了求出与基点距离某一长度并形成某一角度的点。
     
    Dim polarPnt As Variant
    Dim basePnt(0 To 2) As Double
    Dim angle As Double
    Dim distance As Double
     
    basePnt(0) = 2#: basePnt(1) = 2#: basePnt(2) = 0#
    angle = 0.1744444   ' 45 degrees

    distance = 5
    polarPnt = ThisDrawing.Utility.PolarPoint(basePnt, angle, distance)
     
    ' 从基点到Polar点创建一条直线。
    Dim lineObj As AcadLine
    Set lineObj = ThisDrawing.ModelSpace.AddLine(basePnt, polarPnt)
    ZoomAll
   
End Sub


上次得到这段代码,但不知道那个角度是什么控制的。
比如说90度时angle是多少
发表于 2003-6-8 17:28:00 | 显示全部楼层

需要弧度值与角度的转换

程序中使用的为弧度,而在命令行中输入的值一般均为角度值,所以在程序中需要将角度转换为弧度。
请参照实用函数栏目中的函数:
http://www.mjtd.com/function/list.asp?id=279&ordertype=bysort&orderkey=38
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-28 16:28 , Processed in 0.174869 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表