Get cylindrical coordinates of a node

User: "Altair Forum User"
Altair Employee
Updated by Altair Forum User

How should i get these X1, X2 and X3 values for a selected node in the image.

If i use 

 hm_nodevalue $node_id

It returns me X,Y,Z values as per WCS.

But what i want is to get as shown in this window. 

Or may be if i can get local CSYS reference axis.

<?xml version="1.0" encoding="UTF-8"?>Capture.PNG

Find more posts tagged with

Sort by:
1 - 2 of 21
    User: "tinh"
    Altair Community Member
    Updated by tinh

    Hi

    They are local coords retieved by datanames localx localy localz

    set X1 [hm_getentityvalue nodes $node_id localx 0]

    User: "Altair Forum User"
    Altair Employee
    OP
    Updated by Altair Forum User

    Hi

    They are local coords retieved by datanames localx localy localz

    set X1 [hm_getentityvalue nodes $node_id localx 0]

    Hi Tinh, That works well... thanks for your quick help