We Ride the Lines
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Kramuals ACTUALLY explained, and why diagonal kramuals are possible

+11
Apple
hypothet
Pawel3
Chuggers
rabid squirrel
efrazable
ScrungleBlumpkus
Conundrumer
Inukaza
[senpai] kevans
Fauxfyre
15 posters

Page 1 of 3 1, 2, 3  Next

Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by Fauxfyre Sat Jan 03, 2015 12:38 am

I was going to write this awhile ago, but I was too lazy at the time and didn't think anybody would really care in any case, however I think some false information provided recently needs to be corrected.

HOW KRAMUALS WORK
When the binding between two contact points attempt to normalize the distance between them, they add or subtract x&y coordinates from the points equally (without affecting the angle of the segment) to get the points the correct distance apart.
Example: Kramuals ACTUALLY explained, and why diagonal kramuals are possible Ex111
These changes constantly cause the angles between other points to be put off from each other, so the changes aren't usually equal between different segments.
Example: Kramuals ACTUALLY explained, and why diagonal kramuals are possible Ex210
However, what happens when you put all the points inline? If all the points are at the same angle, when the distances between two points change, the rest of the bindings angle's are unaffected.
Example: Kramuals ACTUALLY explained, and why diagonal kramuals are possible Ex310
This is the reason why kramuals happen. When all the points get moved into alignment, the angles between points never change. Since a single bindings adjustment doesn't change it's own angle, nothing will ever be forced to move out of alignment until a line causes a disturbance. There is nothing saying this is impossible in the hypothetical situation of a diagonal kramual, in fact it is just the opposite. If all the bindings are at an equal angle, the adjustments will never cause the angles to change.

I'll provide some snippets of code and try to explain it as simply as I can.
Code:
function satisfyDistance()
    {
        var _loc3 = a.x - b.x;
        var _loc2 = a.y - b.y;
        var _loc7 = Math.sqrt(_loc3 * _loc3 + _loc2 * _loc2);
This is the distance formula being worked out in code, where "loc7" is d, x2 is a.x, x1 is b.x, y2 is a.y, and y1 is b.y
Kramuals ACTUALLY explained, and why diagonal kramuals are possible Dist07b
(In the code, the a&b are the contact points, and the .x/y are the x/y property of that point.
Code:
var _loc6 = (_loc7 - restLength) / _loc7 * 5.000000E-001;
This determines the difference between the current distance calculated and the distance it should be "restLength", then divides it by the current distance between the points to figure out generally how far they need to be moved to get it back into position "loc6".
Code:
var _loc5 = _loc3 * _loc6;
        var _loc4 = _loc2 * _loc6;
Here we use the loc6 calculated above and multiply this by the distances between the x and y individually to figure out specifically how to move the points. loc5 is how much to move it laterally (X), and loc4 is how far to move them vertically (Y)
Code:
a.x = a.x - _loc5;
        a.y = a.y - _loc4;
        b.x = b.x + _loc5;
        b.y = b.y + _loc4;
And finally, we use loc4&5 to change the x&y positions of the points by adding/subtracting them from the previous values, and then storing that in the data for the points.




I'm pretty sure that covers it, if someone has irrefutable proof against my explanation or has further questions (perhaps because I was too confusing), please ask! 8D

Fauxfyre
Member

Featured Video: Blackheart

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by [senpai] kevans Sat Jan 03, 2015 12:40 am

Shotoku wrote: if someone has irrefutable proof against my explanation

https://iridethelines.forumotion.com/t10747-kramuals-explained

You do know that not once in the functions to check for bosh's shape rely on angle? If kramuals were causes of all points sharing the same angle, we could rotate during kramuals without him crashing.

Also as i mentioned in my thread, if _loc2/3 don't result in 0, the function will cause bosh to return back to his normal position. if the points are not either no slope or infinite slope, _loc2/3 has no chance of resulting in 0. You can graph 10 points in a diagonal line and apply the math yourself.
[senpai] kevans
[senpai] kevans
Member

Stay in your coma


https://kevansevans.github.io/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by Fauxfyre Sat Jan 03, 2015 12:56 am

You are partially correct, but it isn't just based on everything being 0 in one way or the other. It is based on the angles or the lines, and the adjustments between them, not the directions the points are moving.

Fauxfyre
Member

Featured Video: Blackheart

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by [senpai] kevans Sat Jan 03, 2015 12:57 am

I never mentioned direction, I explained that they must share the same X or Y coordinates. The resulting math with _loc2/3 equaling 0 is what causes the lock into a kramual.
[senpai] kevans
[senpai] kevans
Member

Stay in your coma


https://kevansevans.github.io/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by Fauxfyre Sat Jan 03, 2015 1:00 am

[senpai] kevans wrote:I never mentioned direction, I explained that they must share the same X or Y coordinates.
I know that isn't the entire truth. The fact that they all share the same X/Y coordinates contributes to them all having the same angles, right? Either 0 degrees, 90, 180, or 270. That is what it comes down to. Now, if they all have a 45 degree angles, the same logic still applies. You were on the right track, but didn't take into consideration the big picture.

Fauxfyre
Member

Featured Video: Blackheart

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by [senpai] kevans Sat Jan 03, 2015 1:03 am

Well i think you need to first show that bosh can stay in the kramual form without needing to share X/Y coordinates. I already know it can't, but if you can show that, I concede defeat.
[senpai] kevans
[senpai] kevans
Member

Stay in your coma


https://kevansevans.github.io/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by rabid squirrel Sat Jan 03, 2015 1:55 am

hmmmm. after reading both of your posts (many, many times lol) I think I understand both of you.

kevans is arguing that the only time a kramual "lock" is possible is when the X or Y values of all of the contact points are the same (meaning on the X or Y axis)

Shotoku is arguing that a kramual is possible whenever the points are exactly on the same line, whatever angle that line may be on, because it is changing the distances between the contact points.

Honestly I'm mostly inclined to go with kevans because nobody has made a diagonal kramual in several years of making X/Y kramuals. But I think shotoku's theory makes more sense to me. I buy his argument that this code is changing the distances between the contact points, and if they are all in a line this creates the kramual "lock" and as far as I can see, kevans has not refuted this. (EDIT: since I typed this you guys have been posting back and forth. Shotoku makes an excellent point that kevans's scenario actually fits shotoku's scenario, and kevans has not proven that his scenario is wrong.) But I don't think shotoku has proven it is possible for points to be exactly aligned on a diagonal line.

Question for kevans:
1) "What this function does is basically check the distance between each contact point and tries to move him back to the default distance, not position, distance." Can you explain this better? Move "him" back? "distance, not position"? Why is it moving him "back"?
2) Can you prove that either a) it is impossible for all points to be exactly aligned on a non-XY surface, b) alignment of all points on a diagonal will not cause a kramual "lock"?

Questions for shotoku.
1) Why is it not too hard to make a X or Y axis kramual but super hard to make a diagonal one?
2) Is it possible that it is not possible to have all points exactly aligned on a diagonal surface? maybe because of the limits of x/y positions using decimal numbers that would make them never mathematically precise in alignment?
3) Can you walk us through the code with actual numbers of a hypothetical points-in-alignment-on-a-diagonal with the x and y coordinates? to demonstrate?
rabid squirrel
rabid squirrel
Member

I'm the artsy person round here

Community Pick: Braggadocio
3rd place in Tournament of Legends 4th place in Tournament of Legends

http://www.benjaminharveydesign.com/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by [senpai] kevans Sat Jan 03, 2015 2:03 am

rabid squirrel wrote:Question for kevans:
1) "What this function does is basically check the distance between each contact point and tries to move him back to the default distance, not position, distance." Can you explain this better? Move "him" back? "distance, not position"? Why is it moving him "back"?
2) Can you prove that either a) it is impossible for all points to be exactly aligned on a non-XY surface, b) shotoku is interpreting the code to calculate distances between contact points wrong somehow?

1) If it was position and not distance, bosh wouldn't fall because of gravity and couldn't rotate.

2a) I never said it wasn't impossible to be aligned to a non xy line, I said it wasn't possible to stay "locked" in that position. 2b) Shotoku is thinking that angle is somewhere involved in this positioning calculation, when it's not.

Edit: Here are the three skeletal functions that bosh has

Spoiler:
[senpai] kevans
[senpai] kevans
Member

Stay in your coma


https://kevansevans.github.io/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by rabid squirrel Sat Jan 03, 2015 2:11 am

rabid squirrel wrote:Move "him" back? Why is it moving him "back"?
You didn't answer these.
[senpai] kevans wrote:I never said it wasn't impossible to be aligned to a non xy line, I said it wasn't possible to stay "locked" in that position.
I edited my post, didn'ty quite catch you in time:
Can you prove that... b) alignment of all points on a diagonal will not cause a kramual "lock"?
like, more concretely than pointing at the zeroes and saying it's the only way?
[senpai] kevans wrote:2b) Shotoku is thinking that angle is somewhere involved in this positioning calculation, when it's not.
not sure you totally understand shotoku's reasoning here. shotoku is only talking about changing distances between points when the angle happens to be the same (which is also true in your scenario as well as his)

EDIT: actually, can either of you walk us through the code with hypothetical values?
rabid squirrel
rabid squirrel
Member

I'm the artsy person round here

Community Pick: Braggadocio
3rd place in Tournament of Legends 4th place in Tournament of Legends

http://www.benjaminharveydesign.com/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by [senpai] kevans Sat Jan 03, 2015 2:30 am

rabid squirrel wrote:
rabid squirrel wrote:Move "him" back? Why is it moving him "back"?
You didn't answer these.

Because if he wasn't "moved back", he wouldn't retain shape.

[senpai] kevans wrote:I never said it wasn't impossible to be aligned to a non xy line, I said it wasn't possible to stay "locked" in that position.
I edited my post, didn'ty quite catch you in time:
Can you prove that... b) alignment of all points on a diagonal will not cause a kramual "lock"?
like, more concretely than pointing at the zeroes and saying it's the only way?

Yes, I can.

math stuff:

[senpai] kevans wrote:2b) Shotoku is thinking that angle is somewhere involved in this positioning calculation, when it's not.
not sure you totally understand shotoku's reasoning here. shotoku is only talking about changing distances between points when the angle happens to be the same (which is also true in your scenario as well as his)

I just showed it's not the changing distance and angles, it's shared coordinates.
[senpai] kevans
[senpai] kevans
Member

Stay in your coma


https://kevansevans.github.io/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by rabid squirrel Sat Jan 03, 2015 2:35 am

As far as I can see kevans just proved it.

EDIT: unless shotoku can do the same thing with the actual numbers
rabid squirrel
rabid squirrel
Member

I'm the artsy person round here

Community Pick: Braggadocio
3rd place in Tournament of Legends 4th place in Tournament of Legends

http://www.benjaminharveydesign.com/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by Fauxfyre Sat Jan 03, 2015 3:53 am

I'm going to answer Rabid's questions in opposite order here:

3) Can you walk us through the code with actual numbers of a hypothetical points-in-alignment-on-a-diagonal with the x and y coordinates? to demonstrate?
I will go one round of this process to show that angle does not change during adjustments:

Spoiler:
2) Is it possible that it is not possible to have all points exactly aligned on a diagonal surface? maybe because of the limits of x/y positions using decimal numbers that would make them never mathematically precise in alignment?
Given the simplest possible situation, we know we can have 1 points at (1,1), (2,2), and (3,3) that are all inline. In a only slightly complicated situation, we can have (4.2, -7.6), (5.2, -6.6), and (6.2, -5.6) that are also in line on a 45 degree slope. Also, given the proven fact that we can get all of them to align on a vertical or horizontal axis, I don't think the fact that we are dealing with extremely precise fractional values is changing anything, especially considering when we are landing Bosh on a LINE SEGMENT to squish his points together.

1) Why is it not too hard to make a X or Y axis kramual but super hard to make a diagonal one?
I honestly cannot fathom why. I spent a good hour trying to get a diagonal kramual to work in multiple situations, and while I could get an X one easily, I can't get Bosh to live longer than a frame in a diagonal one. If I try to think of anything wrong with my hypothesis, then I find several other situations that suggest I am right. I am going to ponder this particular question more.

If you look very closely at both of our theories, you will notice that we are essentially going for the same thing, it's just Kevans is trying to use his to prove that diagonals are not possible, while I am trying to prove that they are possible with the same evidence. I think it is only fair if I am going to try to furnish additional proof that they can be done, that you try to furnish proof to me that they can't, more than the words that both of us are throwing around.

Fauxfyre
Member

Featured Video: Blackheart

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by rabid squirrel Sat Jan 03, 2015 4:07 am

I was falling asleep and then realized

kevan wrote:At the end of the function, point A goes from (5, 10) to (15, 30), and point B goes from (7, 14) to (-3, -4). You can keep doing this indefinitely and it'll keep adjusting itself until both points are 5 (_loc6) pixels apart
that in this you can see that the the angle didn't actually change, so shotoku's postulate actually holds here. (and thus his conclusion that diagonal kramuals are possible in theory)

and then I saw that shotoku posted that exact thing.

So I was wrong, shotoku actually seems to be right here. again, as far as I can see. xD (and only in theory at this point)

Shotoku, have you tried monitoring the values step by step in some kind of debug process while trying to make a diagonal kramual? My thought is we can see the actual variables then, and see if anyone them should make a diagonal kramual - and if not, why it's impossible to get them into diagonal kramual position.

One way we could resolve this is actually simulate this situation and literally force all of the contact points into shotoku's scenario in actual code and then see how bosh behaves. Shotoku, any thoughts about doing that?

I feel like there must be a reason that diagonal kramuals are seemingly impossible (otherwise I'm sure they would have been discovered years ago) but I think shotoku is right here in his theory (aka I don't think kevans has effectively proved him wrong even though I thought he did for a couple hours lol)


EDIT: Damn it, wait.
kevan wrote:point A goes from (5, 10) to (15, 30), and point B goes from (7, 14) to (-3, -4)
did that change the angle? now I think it did. ugh I need sleep. I will look at this later.

also
:15 AM shotoku ban: maybe, just maybe, it has to do with the actual collision with the line
2:17 AM shotoku ban: I can get Bosh and the sled to go into kramual positions separately
2:18 AM shotoku ban: but not while staying together with the sled
2:18 AM rabidsquirrel mod: Ohhh hmmmm
2:19 AM shotoku ban: In a regular kramual, if you delete the line that Bosh's on, he stays in position
2:19 AM shotoku ban: but if you delete them while in diagonal separated, they pop out of alignment
rabid squirrel
rabid squirrel
Member

I'm the artsy person round here

Community Pick: Braggadocio
3rd place in Tournament of Legends 4th place in Tournament of Legends

http://www.benjaminharveydesign.com/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by [senpai] kevans Sat Jan 03, 2015 4:13 pm

You're forgetting shotoku, bosh isn't made up of two contact points. He's made up of ten. But for this example, I only need three.

Shotoku wrote:You were on the right track, but didn't take into consideration the big picture.

I don't need to show any math here for this one, it just needs an explanation. Bosh doesn't just have 2 points, he has ten, and he doesn't just have one "stick", he has 22 "edges" ranging from stick, bindstick, and repellstick. And each "satisfydistance" function is checked one by one on bosh six time each frame, and in between each distance check, a collision check occurs. Now, say hello to the culprit:

Code:
edges[21] = new RepellStick(riderAnchors[5], riderAnchors[8]);
edges[22] = new RepellStick(riderAnchors[5], riderAnchors[9]);

The only two repellstick binds. Now, what's so special about them? They behave differently:

Code:
function satisfyDistance()
    {
        var _loc3 = a.x - b.x;
        var _loc2 = a.y - b.y;
        var _loc4 = Math.sqrt(_loc3 * _loc3 + _loc2 * _loc2);
        if (_loc4 < restLength)
        {
            var _loc7 = (_loc4 - restLength) / _loc4 * 5.000000E-001;
            var _loc6 = _loc3 * _loc7;
            var _loc5 = _loc2 * _loc7;
            a.x = a.x - _loc6;
            a.y = a.y - _loc5;
            b.x = b.x + _loc6;
            b.y = b.y + _loc5;
        } // end if
    } // End of the function

In shotoku's example, the points will move, and they will change in relationship to every other point. The problem occurs with the fact that _loc4 has to be a certain distance in order to cause point movement. This is why that lock is important. At the end of each "edge check", a collision check occurs. This means that while edges 21 and 22 are too far apart to change points location, they will follow a different set of rules after colliding with a line. For a visual aid:

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Graph2

(It's a bit of an exaggerated example) The instance that happens, that nice 45 degree plane will go away. This is why that XY lock is important, because when it collides with a line, whichever coordinate is locked will cause the same output of movement, meaning the fact that those repellstick binds won't be activated are irrelevant, it has other binds keeping them inside that lock at all times. More specifically, the shoulder (riderAnchor[5]) and both feet (riderAnchor[8]/riderAnchor[9]) contact points has multiple connections keeping it in place. For added visual, here's the full snippet of edges:

Code:
edges[0] = new Stick(riderAnchors[0], riderAnchors[1]);
    edges[1] = new Stick(riderAnchors[1], riderAnchors[2]);
    edges[2] = new Stick(riderAnchors[2], riderAnchors[3]);
    edges[3] = new Stick(riderAnchors[3], riderAnchors[0]);
    edges[4] = new Stick(riderAnchors[0], riderAnchors[2]);
    edges[5] = new Stick(riderAnchors[3], riderAnchors[1]);
    edges[6] = new BindStick(riderAnchors[0], riderAnchors[4], ENDURANCE);
    edges[8] = new BindStick(riderAnchors[1], riderAnchors[4], ENDURANCE);
    edges[9] = new BindStick(riderAnchors[2], riderAnchors[4], ENDURANCE);
    edges[10] = new Stick(riderAnchors[5], riderAnchors[4]);
    edges[11] = new Stick(riderAnchors[5], riderAnchors[6]);
    edges[12] = new Stick(riderAnchors[5], riderAnchors[7]);
    edges[13] = new Stick(riderAnchors[4], riderAnchors[8]);
    edges[14] = new Stick(riderAnchors[4], riderAnchors[9]);
    edges[15] = new Stick(riderAnchors[5], riderAnchors[7]);
    edges[16] = new BindStick(riderAnchors[5], riderAnchors[0], ENDURANCE);
    edges[17] = new BindStick(riderAnchors[3], riderAnchors[6], ENDURANCE);
    edges[18] = new BindStick(riderAnchors[3], riderAnchors[7], ENDURANCE);
    edges[19] = new BindStick(riderAnchors[8], riderAnchors[2], ENDURANCE);
    edges[20] = new BindStick(riderAnchors[9], riderAnchors[2], ENDURANCE);
    edges[21] = new RepellStick(riderAnchors[5], riderAnchors[8]);
    edges[22] = new RepellStick(riderAnchors[5], riderAnchors[9]);
[senpai] kevans
[senpai] kevans
Member

Stay in your coma


https://kevansevans.github.io/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by Inukaza Sun Jan 04, 2015 3:36 am

Kramuals ACTUALLY explained, and why diagonal kramuals are possible B7b

At some point it comes down to this: It hasn't been done, ever. When I think about how crazy quirk has gotten these days, I do think that if one of our members hasn't be able to figure it out yet, it won't happen. Keep hacking, friends.

Inukaza
Member


Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by Conundrumer Sun Jan 04, 2015 3:47 am

Kevans, I believe you can literally hardcode bosh's starting position to be in kramual position by forcefully setting the positions of the contact points after initialization. First, attempt to hardcode a horizontal kramual. And then try rotating all the points by 45°.
Conundrumer
Conundrumer
Line Rider Legend

actually working on OII


Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by ScrungleBlumpkus Sun Jan 04, 2015 2:10 pm

^I literally had this idea last night. So glad somebody else did.
ScrungleBlumpkus
ScrungleBlumpkus
Member

Interior Crocodile Alligator


Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by efrazable Sun Jan 04, 2015 2:12 pm

Inukaza wrote:Kramuals ACTUALLY explained, and why diagonal kramuals are possible B7b
efrazable
efrazable
Member

Durr I'm efraz herp derp


https://www.youtube.com/user/efrazable?feature=mhee

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by rabid squirrel Sun Jan 04, 2015 2:47 pm

I think I'm with kevans here, unless someone can do this:
Conundrumer wrote:Kevans, I believe you can literally hardcode bosh's starting position to be in kramual position by forcefully setting the positions of the contact points after initialization. First, attempt to hardcode a horizontal kramual. And then try rotating all the points by 45°.
and simulate a 45degree kramual and show that it actually works. Or that it doesn't, which would sort of seal the deal.
rabid squirrel
rabid squirrel
Member

I'm the artsy person round here

Community Pick: Braggadocio
3rd place in Tournament of Legends 4th place in Tournament of Legends

http://www.benjaminharveydesign.com/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by ScrungleBlumpkus Tue Feb 17, 2015 9:11 pm

rabid squirrel wrote:I think I'm with kevans here, unless someone can do this:
Conundrumer wrote:Kevans, I believe you can literally hardcode bosh's starting position to be in kramual position by forcefully setting the positions of the contact points after initialization. First, attempt to hardcode a horizontal kramual. And then try rotating all the points by 45°.
and simulate a 45degree kramual and show that it actually works. Or that it doesn't, which would sort of seal the deal.


Gonna bump this with this:


https://iridethelines.forumotion.com/t8840-omg-finally#162480
ScrungleBlumpkus
ScrungleBlumpkus
Member

Interior Crocodile Alligator


Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by rabid squirrel Tue Feb 17, 2015 11:40 pm

he doesn't stay in position for longer than a frame though, kevans insists it's just a wtf well
rabid squirrel
rabid squirrel
Member

I'm the artsy person round here

Community Pick: Braggadocio
3rd place in Tournament of Legends 4th place in Tournament of Legends

http://www.benjaminharveydesign.com/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by Chuggers Wed Feb 18, 2015 12:05 am

yeah, just a coincidental wtf well, ive gotten a few like that myself
Chuggers
Chuggers
Member

villainous quirker

Community Pick: SYTYKC
Community Pick: Form

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by ScrungleBlumpkus Wed Feb 18, 2015 3:48 pm

Would it not count as a kramual though
Now there needs to be a time based definintion.
I'm all for kevan's arguemnt, honestly. His reasonig is sound. However, we can still be wrong and until I see something hardcoded...
ScrungleBlumpkus
ScrungleBlumpkus
Member

Interior Crocodile Alligator


Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by [senpai] kevans Wed Feb 18, 2015 3:58 pm

Dapianokid wrote:
Now there needs to be a time based definintion.

Well if you've noticed, we already do. We've already dubbed kramuals that last for one frame as "Single Frame". So by this reasoning, a "kramual" would be where he's able to hold this position indefinitely.

As for what Kramwoods has here, if he's willing to share the sol, I'd be willing to do the deep digging to see how "aligned" the contact points are.
[senpai] kevans
[senpai] kevans
Member

Stay in your coma


https://kevansevans.github.io/

Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by ScrungleBlumpkus Wed Feb 18, 2015 4:31 pm

[senpai] kevans wrote:
Dapianokid wrote:
Now there needs to be a time based definintion.

Well if you've noticed, we already do. We've already dubbed kramuals that last for one frame as "Single Frame". So by this reasoning, a "kramual" would be where he's able to hold this position indefinitely.

As for what Kramwoods has here, if he's willing to share the sol, I'd be willing to do the deep digging to see how "aligned" the contact points are.


Truuust me, he has the technology to do so! I'm really hard pressed to explain this, but here are 2 cents from me which don't make sense so screw me

lol:
ScrungleBlumpkus
ScrungleBlumpkus
Member

Interior Crocodile Alligator


Back to top Go down

Kramuals ACTUALLY explained, and why diagonal kramuals are possible Empty Re: Kramuals ACTUALLY explained, and why diagonal kramuals are possible

Post by Sponsored content


Sponsored content


Back to top Go down

Page 1 of 3 1, 2, 3  Next

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum