Continue to Site

Welcome to MCAD Central

Join our MCAD Central community forums, the largest resource for MCAD (Mechanical Computer-Aided Design) professionals, including files, forums, jobs, articles, calendar, and more.

Relations, Used to modify skeletons for assembly

dvancleve

New member
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.
 

Sponsor

Articles From 3DCAD World

Back
Top