Dec 27, 2002 #1 D dvancleve Guest I have been searching the web for info on writing relations that change length or modify an angle during regeneration in an assembly skeleton. I have found very little info. Does anyone know where to look?.
I have been searching the web for info on writing relations that change length or modify an angle during regeneration in an assembly skeleton. I have found very little info. Does anyone know where to look?.
Jan 20, 2003 Thread starter #2 P proed Guest Some basic relations: To increment a length (d1:0) from 0 - 100 in 10 unit steps: - First, rename the dimension to length using Setup > Name > Feature, then add these relations: if length<100 length=length+10 endif if length>=100 length=0 endif Also - look at the article about programming on Pro/E Central.
Some basic relations: To increment a length (d1:0) from 0 - 100 in 10 unit steps: - First, rename the dimension to length using Setup > Name > Feature, then add these relations: if length<100 length=length+10 endif if length>=100 length=0 endif Also - look at the article about programming on Pro/E Central.