Apr 12, 2019 #1 Bonde78 Mechanical Joined Apr 3, 2019 Messages 20 Location DK Hello all Is it possible to insert two features in the mqc_askFeaturesByType code? As for example blend and a face blend, as they both are blend types.
Hello all Is it possible to insert two features in the mqc_askFeaturesByType code? As for example blend and a face blend, as they both are blend types.
Apr 16, 2019 Thread starter #2 Bonde78 Mechanical Joined Apr 3, 2019 Messages 20 Location DK The answer that i found is: Code: $feats << mqc_askFeaturesByType( "BLEND" )+mqc_askFeaturesByType("FACE_BLEND" ); Upvote 0 Downvote
The answer that i found is: Code: $feats << mqc_askFeaturesByType( "BLEND" )+mqc_askFeaturesByType("FACE_BLEND" );
Apr 16, 2019 Thread starter #3 Bonde78 Mechanical Joined Apr 3, 2019 Messages 20 Location DK But do anyone know why, when using mqc_askFeaturesByType("FACE_BLEND"), with the mqc_askBlendRadius() the face blend would give me a value of -1 in the radius, but with the edge blend it gives me the right value of the radius. Upvote 0 Downvote
But do anyone know why, when using mqc_askFeaturesByType("FACE_BLEND"), with the mqc_askBlendRadius() the face blend would give me a value of -1 in the radius, but with the edge blend it gives me the right value of the radius.
Apr 17, 2019 #4 ufsure Mechanical Joined Apr 18, 2003 Messages 124 Location AU As per docs mqc_askBlendRadius() will return the blend radius of Edge Blend tag. So a face blend tag will be invalid. Suresh http://www.technisites.com.au Upvote 0 Downvote
As per docs mqc_askBlendRadius() will return the blend radius of Edge Blend tag. So a face blend tag will be invalid. Suresh http://www.technisites.com.au
Apr 21, 2019 Thread starter #5 Bonde78 Mechanical Joined Apr 3, 2019 Messages 20 Location DK Thank you for your answer! Upvote 0 Downvote