How to create a point in 3D space using coordinates in SpaceClaim?

Hi All

I am using SpaceClaim in Ansys, I need to create a point in 3D space using coordinates in SpaceClaim, but I don't see a function able to do this, any ideas?

    3 Answers

    This is how I do it:
    1) Create a square (f.i. 100 x 100)
    2) Create a volume PULL 100
    3) Make it transparent, choose, COLOR - OPACITY
    4) Put a point on the baseline of one side
    5) Select the point with MOVE
    6) Put in the X,Y,Z coordinates

    Upvote 0Upvoted 1 Downvote 0Downvoted 1

      from17.0 you can script that with the script python console.

      result = DatumPointCreator.Create(Point.Create(MM(0), MM(0), MM(0)))

      Upvote 2Upvoted 3 Downvote 0Downvoted 1
      • sameer shaik
        sameer shaik 29 Mar, 2019 11:00 AM

        Thank you for your advice, it was very helpful