eek
@eek
New Member
Joined: Feb 14, 2024
Topics: 25 / Replies: 462
Reply
RE: Link constraint target listbox

Just append both values to arrays: targetArray =#($point01) timeArray =#(20) and build a new array with these: for i = 1 to targetArray.count do ( …

17 years ago
Forum
Reply
RE: Link constraint target listbox

Isnt it just: at time? or setting the slidertime? slidertime = currentime ?

17 years ago
Forum
Reply
RE: Creating a new vector between two vectors

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…

17 years ago
Forum
Reply
RE: Scale/Rotate a child around the parents pivot point???

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…

17 years ago
Forum
Reply
RE: Scale/Rotate a child around the parents pivot point???

an example: [size=1] [color=#0000ff][size=2] [color=#fffffe]try(destroyDialog testAlign)catch() rollout testAlign “testAlign” ( local theObj …

17 years ago
Forum
Reply
RE: Scale/Rotate a child around the parents pivot point???

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…

17 years ago
Forum
Reply
RE: Scale/Rotate a child around the parents pivot point???

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…

17 years ago
Forum
Reply
RE: saving and loading alot of information to a external file, the proper way??

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…

17 years ago
Forum
Reply
RE: saving and loading alot of information to a external file, the proper way??

Im actually thinking going via the route of a BVH structure without the hierachal structure: store all the controllers and parameters at the header. …

17 years ago
Forum
Reply
RE: Scripted Helper Plugin – DisplayMesh

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…

17 years ago
Forum
Reply
RE: How to calculate transformations in an object space?

To get the transform ‘space’ of any object relative to another you do inverse matrix multiplication. tm = $point3.transform * inverse $point2.transfo…

17 years ago
Forum
Reply
RE: help with Fake spring !!

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…

17 years ago
Forum
Reply
RE: Converting rotation values for BVH

You guys tried build a matrix? Get the order from the bvh eg. ZXY from readLine: Line = filterstring (readLine inFile) ” , ” splitEmptyTokens:false…

17 years ago
Forum
Reply
RE: GetMinVal?

Put the values in an array and sort it. test = #(10,20) (sort test)[1]

17 years ago
Forum
Reply
RE: gw.text, possible to change size?

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…

17 years ago
Forum
Page 16 / 33