POV-Ray : Newsgroups : povray.binaries.animations : Stick figure WIP (128 kbbu) Server Time
3 May 2024 16:05:00 EDT (-0400)
  Stick figure WIP (128 kbbu) (Message 1 to 7 of 7)  
From: Greg M  Johnson
Subject: Stick figure WIP (128 kbbu)
Date: 23 Jan 2001 22:16:51
Message: <3a6e4923@news.povray.org>
I'm continuing to improve my stick figure over my previous blob "mon."
I mastered IK for both the arms and the foot (with rising heel!). Both
FK & IK are possible with switches in code. No-slip feet (when it's
translated at constant speed).  Working five-fingered hands (except
thumbs). Hopefully modular and applicable to multiple constructions.

This is just a kind of gratuitous walk cycle showing off what it can do.

Next steps:
1. Working thumbs.
2. Better walk cycles
3. More anatomical details to head
4. More realistic construction.
5. An "object studio" to make my construction syntax understandable to
others...


Post a reply to this message


Attachments:
Download 'mime13.mpg' (152 KB)

From: Bob H 
Subject: Re: Stick figure WIP (128 kbbu)
Date: 24 Jan 2001 09:39:05
Message: <3a6ee909$1@news.povray.org>
Okay, too strange for me.
Seriously though, with overall up/down motion added it would be better still.

Bob H.


Post a reply to this message

From: Greg M  Johnson
Subject: Re: Stick figure WIP (128 kbbu)
Date: 24 Jan 2001 09:55:07
Message: <3A6EEB5D.F25E2FEC@my-dejanews.com>
"Bob H." wrote:

> Okay, too strange for me.
> Seriously though, with overall up/down motion added it would be better still.
>
> Bob H.

Meant to be a bit spooky in "over-acting"--sort of like a test drive; there's
probably not too many practical applications for spinning your hands like that, I
guess :)-- it just shows off my IK wrists.  This construction has full movement
in the hips, lumbar, shoulders, etc., that my other one(s) lacked: friends'
suggestions on those walking figures were for  more movement and flexibility,
etc.   Plus I studied a few new anatomy books and got more tips on what should be
able to bend during a walk cycle.

Yes, the hip up/down is one of the next things to be added.

Did most of the coding while running an insanely boring experiment at work......


Post a reply to this message

From: Rune
Subject: Re: Stick figure WIP (128 kbbu)
Date: 24 Jan 2001 13:44:49
Message: <3a6f22a1@news.povray.org>
Haha, funny walk cycle! :D

Look forward to see more of this... :)

> Both FK & IK are possible with switches in code.

Can switching be done smoothly during an animation?

And does the movement interpolation itself shift from IK to FK, or only the
controlling?

Rune
--
\ Include files, tutorials, 3D images, raytracing jokes,
/ The POV Desktop Theme, and The POV-Ray Logo Contest can
\ all be found at http://rsj.mobilixnet.dk (updated January 6)
/ Also visit http://www.povrayusers.org


Post a reply to this message

From: Greg M  Johnson
Subject: Re: Stick figure WIP (128 kbbu)
Date: 24 Jan 2001 14:26:31
Message: <3A6F2B09.8AE222FC@my-dejanews.com>
Rune wrote:

> > Both FK & IK are possible with switches in code.
> Can switching be done smoothly during an animation?

right now it is
$fkleg=yes; //no;

But that *would* be a worthwhile feature: turn off IK @ clock=foo;  immediately
record these keyframes, then smoothly transition to a preset FK pose @clock
=bar...


Post a reply to this message

From: Rune
Subject: Re: Stick figure WIP (128 kbbu)
Date: 24 Jan 2001 15:40:13
Message: <3a6f3dad@news.povray.org>
"Greg M. Johnson" wrote:
> Rune wrote:
>
> > > Both FK & IK are possible with switches in code.
> > Can switching be done smoothly during an animation?
>
> right now it is
> $fkleg=yes; // no;
>
> But that *would* be a worthwhile feature: turn off IK @ clock=foo;
> immediately record these keyframes, then smoothly transition to a
> preset FK pose @clock =bar...

Exactly. The "user-interface" can be switched from FK to IK and back.

But the interpolation method itself can't switch smoothly AFAIK. Which
method does the interpolation use in your solution? In other words, do you
use the splines to interpolate rotation vectors (FK interpolation) or do you
use the splines to interpolate point vectors, like wrist-location etc. (IK
interpolation) ?

Rune
--
\ Include files, tutorials, 3D images, raytracing jokes,
/ The POV Desktop Theme, and The POV-Ray Logo Contest can
\ all be found at http://rsj.mobilixnet.dk (updated January 6)
/ Also visit http://www.povrayusers.org


Post a reply to this message

From: Greg M  Johnson
Subject: Re: Stick figure WIP (128 kbbu)
Date: 24 Jan 2001 16:24:29
Message: <3A6F46B0.6121331@my-dejanews.com>
Rune wrote:

>  In other words, do you
> use the splines to interpolate rotation vectors (FK interpolation) or do you
> use the splines to interpolate point vectors, like wrist-location etc. (IK
> interpolation) ?

Both.

Wrist position was:
$rtempwristpt=< 1,55+4*sin(4*pi*modclock),     20+3*cos(4*pi*modclock)>;

Ribcage rotation was:
$ribang=     < 15,   -15*cos(2*pi*modclock+pi), 10*cos(2*pi*modclock+pi)>;


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.