Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
I'm trying to edit some location of some bolt holes in a model that was done by an engineer who knows alot more about Creo than I do.
Below is part of what defines it.
DRILL_DIAMETER = (FLOOR(((diameter*scale)*100)+.5))/100
ELSE
DRILL_DIAMETER = (FLOOR(((diameter*scale)*10)+.5))/10
ENDIF
first_loc_dist = (FLOOR((( (((d34/2)+(cbore_diameter/2)+.09)*sin(45)) )*1000)+.5))/1000
second_loc_dist = first_loc_dist
My question is how do I find out information about the "FLOOR" above. I tried selecting it and clicking on driven by and driving but it says invalid symbol name and I can't find it in any parameter.
How do I figure out where this FLOOR is defined?
Solved! Go to Solution.
ceil() the smallest integer not less than the real value
floor() the largest integer not greater than the real value
ceil() the smallest integer not less than the real value
floor() the largest integer not greater than the real value
Thanks for your help. I thought it might be a mathmatical function but I searched for floor in creo help but all it showed was unlreated topics.