How can I extract basic geometry information for a body in SpaceClaim?

Member, Employee Posts: 40
Second Anniversary 10 Comments 5 Likes Ansys Employee
✭✭✭✭

I have some bodies designed in SpaceClaim and want to extract some basic geometric information like body center and bounding box.

Best Answer

  • Member, Employee Posts: 40
    Second Anniversary 10 Comments 5 Likes Ansys Employee
    ✭✭✭✭
    Answer ✓

    You can extract the requested information by using SpaceClaim scripting. Here is a sample script:

    1. #Body Center
    2. bodySelection = BodySelection.Create(GetRootPart().Bodies[0])
    3. designBodySelection = body.Bodies[0]
    4. bodyMassProp = designBodySelection.MassProperties
    5. bodyCenter = bodyMassProp.PrincipleAxes.Origin
    6. bodyCenterX = bodyCenter.X
    7. bodyCenterY = bodyCenter.Y
    8. bodyCenterZ = bodyCenter.Z
    9.  
    10. #Body Bounding Box
    11. bodyBox = designBodySelection.Shape.GetBoundingBox(Matrix.Identity)
    12. bodyCenter2 = bodyBox.Center #Should be equal to bodyCenter from above
    13. bodyCorners = bodyBox.Corners
    14. bodyCornerPoint = bodyCorners[0]
    15. bodyCornerPointX = bodyCornerPoint.X

Welcome!

It looks like you're new here. Sign in or register to get started.