Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
Hi everyone!
I am developing an experience, where I have to animate material shape change during manufacturing process. My problem is, that I have to change a model diameters independently in 3 different axes, for example scale it in X by 1.3, Y 1.3 and Z 0.8. For simple animations I am using tween.js libraries in Vuforia Studio, for more complex - Creo Illustrate. Unfortunately in Creo Illustrate there is not such an option to change model diameters, only scale it by some number (like in Vuforia Studio). I've created material animation in Blender, but I found out that Vuforia only supports Creo Illustrate animations and there isn't any option to import Blender animations to Illustrate.
Maybe someone have a solution for this problem? Maybe there is a way to change model dimensions in time period in Creo Parametric and export it to Creo Illustrate?
Solved! Go to Solution.
whilst the default scale is uniform ( a single value), you can provide non-uniform scale for a model.
modelitem.scale = "1 2 3" (space separated)
you could animate the values using javascript or imported data from Blender.
illustrate doesnt support non-uniform animations because they generally dont make sense.
use them carefully, as they can also lead to strange geometric behaviours if you scale things too far.
whilst the default scale is uniform ( a single value), you can provide non-uniform scale for a model.
modelitem.scale = "1 2 3" (space separated)
you could animate the values using javascript or imported data from Blender.
illustrate doesnt support non-uniform animations because they generally dont make sense.
use them carefully, as they can also lead to strange geometric behaviours if you scale things too far.
Thank you very much for your help, I didn't know that this is possible to scale a model that way.