🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Intersections between elements

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

Hi all,

How to find intersecting elements between components, using Tcl commands..?

Find more posts tagged with

Sort by:
1 - 2 of 21
    User: "Imoto"
    Altair Employee
    Updated by Imoto

    You can use hm_collision* commands.

     

    Ex:
    *createmark elems 1 displayed;
    hm_collisioninit;
    hm_collisionentitycreate elems 1 0 1 0 0 0 0 0 0;
    hm_collisioncheck 1 0 0 0 0 0 0 90.0 0 1 0.0 1;
    hm_getmark elems 1;
    hm_collisionend;

     

    Thanks,
    Imoto

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

    Thank u very much sir,its working.