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.

relation

pryn12

New member
hello frnds...


thnks for great help..


i want to know that the relation


if d1>=100, then d2=101.25 or something like this...


act i m not gettin this if else relationsss.....


thnks...
 
Err I'm not sure what you want to know, but if it is rule how to write if relation then it is like this:

/***If statement
IF d1>=100
d2=101.25
ENDIF

or

/***Else if statement
IF d1>=100
d2=101.25
ELSE
d2=98.25
ENDIF

or

/*** double else if statement
IF d1>=100
d2=101.25
ELSE
IF d1<=70
d2=55.25
ENDIF
ENDIF
 

Sponsor

Articles From 3DCAD World

Back
Top