zoukankan      html  css  js  c++  java
  • 当前已保存的用户坐标系坐标点到世界坐标系的转换

    代码
    //当前已保存的用户坐标系坐标点到世界坐标系的转换
    Sub Example_TranslateCoordinates()
        
    Set ucsObj = ThisDrawing.ActiveUCS '得到当前坐标系
        
        
    ' Have the user enter a point
        Dim pointWCS As Variant
        pointWCS 
    = ThisDrawing.Utility.GetPoint(, "Enter a point to translate:")
        
        
    ' Translate the point into UCS coordinates
        Dim pointUCS As Variant
        pointUCS 
    = ThisDrawing.Utility.TranslateCoordinates(pointWCS, acWorld, acUCS, False)
        
        
    ' Display the coordinates of the point
        MsgBox "The point has the following coordinates:" & vbCrLf & _
                
    "WCS: " & pointWCS(0& "" & pointWCS(1& "" & pointWCS(2& vbCrLf & _
                
    "UCS: " & pointUCS(0& "" & pointUCS(1& "" & pointUCS(2), , "TranslateCoordinates Example"

    End Sub
  • 相关阅读:
    linux du命令
    Linux vmstat命令实战详解
    linux sar命令详解
    xargs 命令教程
    Linux中find命令用法大全
    python suprocess
    Python的f-strings格式化
    python glob的使用
    python getopt()的使用
    Java测试的题目感想
  • 原文地址:https://www.cnblogs.com/houlinbo/p/1741622.html
Copyright © 2011-2022 走看看