Just append both values to arrays: targetArray =#($point01) timeArray =#(20) and build a new array with these: for i = 1 to targetArray.count do ( …
Isnt it just: at time? or setting the slidertime? slidertime = currentime ?
I thought if, you got the angle between b and c using a simple dot product you could slice it up into chunks: angle = 60 degrees; 10 chunks = 6 degre…
You’ll then need to scale the verts positionally relative to the objects pivot relative to its space. theObjVerts = #() for v = 1 to theObj.verts.co…
an example: [size=1] [color=#0000ff][size=2] [color=#fffffe]try(destroyDialog testAlign)catch() rollout testAlign “testAlign” ( local theObj …
EvilArcana: Thanks Prof420 and eek! I can’t try this yet because I’ve switched from having the pivot as a child to using a pickbutton to select the…
You need to get the transform space of the object relative to a reference system namely the point in your case. tm = $object.transform * inverse $poi…
Essentially im thinking very simple animation loader, if the control exists load the animation. Im thinking of using the bvh method so you have a head…
Im actually thinking going via the route of a BVH structure without the hierachal structure: store all the controllers and parameters at the header. …
Once a geomety object is collapsed to a mesh thats it – you could in theory story its current .baseObject values in a CA internal to itself. Then esse…
To get the transform ‘space’ of any object relative to another you do inverse matrix multiplication. tm = $point3.transform * inverse $point2.transfo…
Here is an example of constrain transforms, it’s something i dont really see people doing here – but its great for facial animation etc. [color=white…
You guys tried build a matrix? Get the order from the bvh eg. ZXY from readLine: Line = filterstring (readLine inFile) ” , ” splitEmptyTokens:false…
Put the values in an array and sort it. test = #(10,20) (sort test)[1]
build an instance of the text shape on each frame – use a time callback, even if you delete it – move it etc, it would rebuild it the next frame. Basi…