×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Vertex

Vertex

(OP)
good afternoon

i just want to know if a can get the coordinates of a vertex (no points) and if the GetCoordinates will also work

Thank you for your answer

RE: Vertex

(OP)
i exctract all the surfaces of a body, and i pick a random surface to get the vertex and, i am trying to get the coordinates of each vertex, the code i am using is the following

hope you can help me with this

Language="VBSCRIPT"

Sub CATMain()

Dim mycoord(2)

Set partDocument1 = CATIA.ActiveDocument
Set selection1 = partDocument1.Selection

selection1.Search "Name=Surface.48,all"

Set selection = partDocument1.Selection1
selection.Search "Topology.Vertex,sel"
Y = selection.Count

For i = 1 To Y
Set reference1 = Selection.Item(i).Value
reference1.GetCoordinates (mycoord)
xc = mycoord(0)
yc = mycoord(1)
zc = mycoord(2)

MsgBox xc
MsgBox yc
MsgBox zc
Next

End Sub

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources