Skip to content
  • Search
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

ZMT zurich med tech

  1. Home
  2. Sim4Life
  3. Python API
  4. Applying a transformation to all the entities of a group

Applying a transformation to all the entities of a group

Scheduled Pinned Locked Moved Python API
pythontransformationapi
1 Posts 1 Posters 1.2k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • SylvainS Offline
    SylvainS Offline
    Sylvain
    ZMT
    wrote on last edited by Sylvain
    #1

    [EDIT]: in Sim4Life 4.0 (and above), the steps below are no longer necessary. The ApplyTransform() function can be directly used on an EntityGroup object:

    # Select "Duke" entity group
    duke_group = model.AllEntities()["Duke"]
    # apply transformation to each entity of the group
    x = 10.0
    y = 5.0
    z = 12.0
    duke_group.ApplyTransform( Translation(Vec3(x,y,z)) )
    

    [ORIGINAL POST]
    To apply a given transformation on a whole group of entities with Python, you have to use the ApplyTransform() function on each element of the EntityGroup object. What you can do is write a recursive function that does exactly that. Here is an example of such function:

    def ApplyTransformRecursively(entity_group, transformation):
       if isinstance(entity_group, core.EntityGroup):
          for entity in entity_group.Entities:
             ApplyTransformRecursively(entity, transformation)
       else:
          entity_group.ApplyTransform(transformation)
    

    You can use it like this:

    # Select "Duke" entity group
    duke_group = model.AllEntities()["Duke"]
    # apply transformation to each entity of the group
    x = 10.0
    y = 5.0
    z = 12.0
    ApplyTransformRecursively(duke_group, Translation(Vec3(x,y,z)))
    
    1 Reply Last reply
    0

    Hello! It looks like you're interested in this conversation, but you don't have an account yet.

    Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

    With your input, this post could be even better 💗

    Register Login
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • Search