Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Relations, Used to modify skeletons for assembly

  • Thread starter Thread starter dvancleve
  • Start date Start date
Status
Not open for further replies.
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?.
 
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top