distance - CATIA Band Analysis Created with VBA Im unable to find those in Simulation with Commands -


ive have written code create distances using distances , band analysis code , sucesfull in creating distances code between multiple products. in simulation , commands tool when activate sensors i'm unable find sensors measure during simulation. can 1 find me way activate sensors. , have made code measure @ each kinematic value , trasfer excel sheet. need activate sesnors. work completed.im puting code down have used create distances.image of window need activate sensors , these not showing

set product1=myproduct.products.item(mm.name)  set product2 =myproduct.products.item(listbox2.column(0,j))  dim ogroups groups  dim group1 group  dim group2 group  dim cdistances distances  set c distances=myproduct.gettechnologicalobjects("distances")  dim mydistance distance  set mydistance =cdistances.add  mydistance.computationtype=catdistancecomputationtypebetweentwo  mydistance.measuretype=catdistancemeasuretypeminimum  set group1= mydistance.fristgroup  group1.addexplicit product1  setgroup1=mydistance.secondgroup  group2.addexplicit  product2  measuredistance= mydistance.value 


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -