User-control of Polygon Visibility in Animation
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 08/06/2011 at 10:30, xxxxxxxx wrote:
Oh, I edited my post, maybe this is a read worth.
I thought about 2 states of visibility that can be interpolated.Cheers
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 08/06/2011 at 11:12, xxxxxxxx wrote:
Originally posted by xxxxxxxx
So, if the polygon calculates to 0% strength, it will appear when the slider/animation is at frame 0. If the polygon calculates to 75% strength, it will appear when the slider is at 75% (at whatever frame that represents). And so on.
I hope this is some kind of what you searched for:
Use a spline in the GUI combined with 1 percentage slider to determine the distribution of the visibility.// within a loop over all points and their vertexvalues vertexvalue = GetVertexMapValue(i); slidervalue = GetFloat(SLIDER); splinerange = GetFloat(SPLINE_RANGEMAP_SLIDER); // A percentage slider defining the mapping of the spline to the vertexmap splineX = RangeMap(vertexvalue, minIn = slidervalue-splinerange, maxIn =slidervalue+splinerange, minOut = 0., maxOut = 1.) splinevalue = Spline-GetY(splineX); SetPointVisibility(i, vertexvalue * splinevalue)
Here an Image explanation of what I think You mean:
Cheers,
Niklas -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 08/06/2011 at 20:31, xxxxxxxx wrote:
I don't get why a spline is necessary but I've decided that the VertexMap tag would be too difficult for the user to get a clean gradient to cause a cascade as envisioned.
Instead, I'm going to add a tool which lets the user select 'node' polygons and set the percentage value at when to appear. Then I'm going to do the interpolation in code. This makes the user's life happy and mine only a bit more difficult.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 09/06/2011 at 06:42, xxxxxxxx wrote:
Ok, can you please show me an example when you have finishe ? Seem's like I still didn't get it right. ;-D
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 16/06/2011 at 14:24, xxxxxxxx wrote:
Sure. I'm getting close to finishing. Multivariate Inverse Distance Weighting (M-IDW) is the only sticking point now. If you know of any good resources on quick algorithms or code for something like that it would be much appreciated.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 21/06/2011 at 01:18, xxxxxxxx wrote:
[Spaaaam >.>]
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 21/06/2011 at 01:19, xxxxxxxx wrote:
I'm sorry, I don't even know what it is
But I take a look at it, sounds kind of interesting.Cheers,
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 21/06/2011 at 09:19, xxxxxxxx wrote:
Got it figured out. Just needed to change a few things to make it work as expected. Should have a video up later today.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 21/06/2011 at 20:37, xxxxxxxx wrote:
You can see the video and other information here:
http://www.kuroyumes-developmentzone.com/unfurl/unfurl-examples/
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 24/06/2011 at 10:22, xxxxxxxx wrote:
Now this is quite what I thought you want to to.
Didn't check the plugin out, yet.
But in the Video, you have an absolute visibilty. (visible or not)
is it possible to set a percentage for this with C++ ?
If yes, why not use a spline ?
At the Moment, if you had used a spline, it would look
like this:_______ \ \ \_______
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 24/06/2011 at 13:31, xxxxxxxx wrote:
Btw, holy s**t ! Cool Plugin !! O___o
How did you make the Polygons rotate aboute an Edge ?! This is awesome !